diff --git a/.coveragerc b/.coveragerc index ce1a9e7a..f0f921fe 100644 --- a/.coveragerc +++ b/.coveragerc @@ -7,10 +7,7 @@ omit = *designer_plugin.py # at the moment, we do not test misc ui elements such as # widgets and dialogs (how could this be possible to test?) - *pyqode/python/ui/* - # widgets are not tested at the moment, this will likely change in the - # future but for now the focus is on the API. - *pyqode/python/widgets/* + *pyqode/python/_forms/* [report] # Regexes for lines to exclude from consideration diff --git a/.gitignore b/.gitignore index 46af665f..6f7b4d29 100644 --- a/.gitignore +++ b/.gitignore @@ -31,7 +31,17 @@ nosetests.xml .pydevproject /.idea/ __pycache__ -.cache -.tox *.log -htmlcov \ No newline at end of file +htmlcov + +# stdeb files +*.tar.gz +deb_dist + + +# gedit temp files +*~ + +# hackedit project files +.hackedit +/.eggs/ diff --git a/.travis.yml b/.travis.yml index fbf4b5ef..cc2ebc90 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,61 +1,26 @@ language: python + python: - - "2.7" - - "3.2" + - "3.5" + env: - # we only test interpreters who have native python packages - # since those tests are running on ubuntu 12.04, pyqt5 cannot be tested - - TOXENV=py27-pyqt4 - - TOXENV=py32-pyqt4 - - TOXENV=cov - - TOXENV=pep8 -matrix: - exclude: - - python: "2.7" - env: TOXENV=cov - - python: "2.7" - env: TOXENV=pep8 - - python: "2.7" - env: TOXENV=py32-pyqt4 - - python: "3.2" - env: TOXENV=py27-pyqt4 - allow_failures: - - env: TOXENV=cov - - env: TOXENV=pep8 -virtualenv: - system_site_packages: true + - QT_API=pyqt5 + before_install: - - "export DISPLAY=:99.0" - - "sh -e /etc/init.d/xvfb start" + - export DISPLAY=:99.0 + - sh -e /etc/init.d/xvfb start + install: - - sudo apt-get install -qq python-qt4 --fix-missing - - sudo apt-get install -qq python3-pyqt4 --fix-missing - - if [ $TOXENV == "cov" ]; then - pip install --quiet pytest; - pip install --quiet pytest-cov; - else - pip install --quiet tox; - fi + # install libegl1-mesa package for the missing libEGL shared object that prevents qt from starting + - sudo apt-get update + - sudo apt-get --yes --force-yes install libegl1-mesa + # make sure pip is up to date so that it can install wheels + - pip install pip --upgrade + - pip install -e . + - pip install -r requirements-dev.txt + script: - # note we run coverage without tox, otherwise no data can be collected. - - if [ $TOXENV == "cov" ]; then - git clone https://github.com/pyQode/pyqode.qt.git; - cd pyqode.qt; - git checkout develop; - pip install --quiet -e .; - cd ..; - git clone https://github.com/pyQode/pyqode.core.git; - cd pyqode.core; - git checkout develop; - pip install --quiet -e .; - cd ..; - pip install --quiet -e .; - py.test --cov pyqode --cov-report=term; - else - tox; - fi -after_script: - - if [ $TOXENV == "cov" ]; then - pip install --quiet --use-mirrors coveralls; - coveralls; - fi + - py.test --cov pyqode + +after_success: + - coveralls diff --git a/AUTHORS.rst b/AUTHORS.rst index 54bbd657..625be5d0 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -3,5 +3,7 @@ Main Authors Colin Duquesnooy (@ColinDuquesnoy) -Code Contributors -================= +Contributors +============ + +Fynn Mazurkiewicz diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 23b06d22..7cdda2b2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,8 +1,162 @@ -2.3.0 +Changelog +========= + +2.11.1 +------ + +Try again to switch to pycodestyle. + +2.11.0 +------ + +Switch from pep8 to pycodestyle. + +2.10.2 +------ + +pyQode now works with jedi versions > 0.10; older versions are no longer supported. + +2.10.1 +------ + +Remove smart backspace and indenter mode from PyConsole so that the behaviour is closer to +what you'd have when running python in a terminal. + +2.10.0 +------ + +New features: + +- add an interactive python console widget + +2.9.0 +----- + +New features: + +- use margin position in linter to define pep8.MAX_LINE_LENGTH + +2.8.0 +----- + +Fixed bugs: + +- fix IndexError in calltips if cursor at the beginning of the last (empty) line + +2.7.0 +----- + +Fixed bugs: + - PyInteractiveConsole: fix regex if path contains a '-' (e.g. "/usr/.../dist-packages/module.py") + - PyInteractiveConsole: make sure to set QT_LOGGING_TO_CONSOLE otherwise + the traceback does not show up with PyQt >= 5.5 + - PyCommentMode: fix preserve selection if multiple lines were selected + - SH: Fix import builtins not working with python 2.7 on OSX + - fix many potential memory leaks by breaking the circular dependencies + correctly before removing a mode/panel +2.6.3 +----- +New features: + - add a freeze script that works with pyside to the pynotepad example + +Fixed bugs: + - ignore PEP8 warnings: 'W291', 'W292', 'W293', 'W391'. + Those warnings are meaningless since pyqode will now clean trailing white spaces and ensure a single unique + blank line at the end of the file when it saves content to disk. + +2.6.2 +----- + +Improve linux icon theme integration (will use code-xxx icons for code +completion icons and outline widget) + +Fix a few issues in the pynotepad example and add a freeze_setup that works +with python3 and PyQt5 (but not yet with python2 and PySide). + +2.6.1 +----- +New features/improvements: + - improve syntax highlighter: ['and', 'or', 'not', 'in', 'is'] and ['from', 'import', 'as'] + the results are closer to what you can get with the pygments lexer + +Fixed bugs: + - fix another corner case with auto indent + +2.6.0 +----- + +New features: + - Switch from Frosted to PyFlakes + - Wheel support + +Fixed bugs: + - Fix unimplemented code completion icon types (Jedi 0.9) + - Improve calltips behaviour + - Fix custom editor example + - PyInteractiveConsole: fix traceback regex to work with dotted package + names (e.g. pyqode.core directory name when installed in development + mode) + - Fix a couple of corner cases in autoindent mode + - Fix quick doc panel colors on Ubuntu + +2.5.0 ----- New features: + - Unified API for document outline (see pyQode/pyQode#24) + +Fixed bugs: + - fix a bug with interpreter selection in the pynotepad example (see pyQode/pyQode#25) + +2.4.2 +----- + +Fixed bugs: + +- fix an issue with newest version of pep8.py +2.4.1 +----- + +New features: + +- implement pyQode/pyQode#21 +- add CaseConverterMode to PyCodeEdit + +Fixed bugs: + +- fix buffering issue with PyInteractiveConsole, now ``PYTHONBUFFERED`` is always set to 1. +- fix auto-indent bug: if a parentheses is closed but the cursor if after a "," and just before ")" + indentation was not right. The solution is to check for ',' and ignore whitespaces before the + previous character. + + +2.4.0 +----- + +New features: + +- add outline tree view +- improvements to the syntax highlighter: make use of the new formats types +- add more examples + +Fixed bugs: + +- fix default encoding on windows +- fix lost of selection after unindent +- fix file path regex for exception traceback highlighting in the python + interactive console +- fix some bugs with pyside +- fix some bugs with python 2 +- fix some bugs with auto indent mode +- fix some bugs with auto completes of triple quotes (both single and double + quotes) + + +2.3.0 +----- + +New features: - add support for python2. You may now use python2 for writing a pyqode app (backend AND frontend)! - make use of the new modes introduced in pyqode.core (occurrences @@ -56,9 +210,8 @@ New features: file with just one click. Bug fixed: - - many bugs have been fixed in the auto indent mode - - many small bugs have been fixed in QIdle + - many small bugs have been fixed in pynotepad - fix cursor position after comment/uncomment (Ctrl+/) 2.0.0 @@ -80,7 +233,6 @@ Fixed bugs: ----- New features: - - the comments mode is now PEP8 compliant - the documentation panel now uses docutils to get an html representation of docstrings @@ -88,7 +240,6 @@ New features: - lots of improvements to the auto indent mode Fixed bugs: - - Add support for jedi 0.8 (which has not been released yet, compatibility with jedi 0.7 has been kept) - many bug fixes to the auto indent mode @@ -98,18 +249,15 @@ Fixed bugs: ----- Fixed bugs: - - more fixes to auto completion - fixes for auto indentation mode - fix type error in document layout parser. - Fix calltips when there is a closing parenthesis - 1.2.0 ----- Fixed bugs: - - Fix various bugs with auto complete - Fix bugs with code completion in comments and strings - Fix for designer plugin @@ -119,16 +267,18 @@ Fixed bugs: New features: - add the following new modes: - - :class:`pyqode.python.PyAutoCompleteMode` - - :class:`pyqode.python.CommentsMode` - - :class:`pyqode.python.DocumentAnalyserMode` - - :class:`pyqode.python.GoToAssignmentsMode` + + - PyAutoCompleteMode + - CommentsMode + - DocumentAnalyserMode + - GoToAssignmentsMode - add the following new panels: - - :class:`pyqode.python.QuickDocPanel` - - :class:`pyqode.python.SymbolBrowserPanel` + + - QuickDocPanel + - SymbolBrowserPanel - CodeCompletion: provides method to interact with the subprocess interpreter - CodeCompletion: preload hooks - - Add :class:`pyqode.python.Boostrapper` class to help start the code completion with a list of modules to + - Add `Boostrapper` class to help start the code completion with a list of modules to preload + example with a splash screen. Fixed bugs: @@ -139,4 +289,4 @@ Fixed bugs: 1.0.0 ----- -Initial development. \ No newline at end of file +Initial development. diff --git a/CONTRIBUTING.rst b/CONTRIBUTING.rst index 1ae3f4d4..920b214e 100644 --- a/CONTRIBUTING.rst +++ b/CONTRIBUTING.rst @@ -1,41 +1,21 @@ Report bugs or ask a question ----------------------------- -You can report bugs or ask question on our `bug tracker`_. - -**Please, if your issue has been fixed in develop branch only, do not close it**. - -We leave our issues open while they have not been merged into the master -branch (i.e. while the fix has not officially been released). - -*Note: we are now using `waffle.io`_ to manage all pyqode issues (from all -sub-repositories).* - +You can report bugs or ask question on our `centralised issue tracker`_. Submitting pull requests: ------------------------- -Pull Requests are great (on the dev branch)! - -Readme/Documentation changes are ok in the master branch. - - 1) Fork the Repo on github. - 2) If you are adding functionality or fixing a bug, please add a test! - 3) Add your name to AUTHORS.rst - 4) Push to your fork and submit a pull request to **the develop branch**. - -The master branch is the stable branch and reflects the latest pypi version, -following the `git workflow`_ - -Please use **PEP8** to style your code (PEP8 compliance is tested Travis CI). +Pull Requests are great! -*You can check pep8 compliance before pushing by running the test suite with -the --pep8 option*:: +1) Fork the Repo on github. +2) Create a feature/bug fix branch based on the dev branch +3) If you are adding functionality or fixing a bug, please add a test! +4) Add your name to AUTHORS.rst +5) Push to your fork and submit a pull request to **the master branch**. - ($ pip install tox pytest-pep8) - $ tox -e pep8 +Please use **PEP8** to style your code (PEP8 compliance is tested Travis CI):: + python setup.py test -a "--pep8 -m pep8" -.. _bug tracker: https://github.com/pyQode/pyqode.python/issues?state=open -.. _waffle.io: https://waffle.io/pyqode/pyqode.core -.. _git workflow: http://nvie.com/posts/a-successful-git-branching-model/ \ No newline at end of file +.. _centralised issue tracker: https://github.com/pyQode/pyQode/issues diff --git a/LICENSE b/LICENSE index a56e4547..c1bbfd8c 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ The MIT License (MIT) -Copyright (c) <2013-2014> +Copyright (c) <2013-2016> Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.rst b/README.rst index 33037d75..16689715 100644 --- a/README.rst +++ b/README.rst @@ -1,87 +1,118 @@ -.. image:: https://raw.githubusercontent.com/pyQode/pyqode.core/develop/doc/source/_static/pyqode-banner.png +**Bugfix maintenance only** +.. image:: https://raw.githubusercontent.com/pyQode/pyQode/master/media/pyqode-banner.png -About ------ -.. image:: http://img.shields.io/pypi/v/pyqode.python.png - :target: https://pypi.python.org/pypi/pyqode.python/ - :alt: Latest PyPI version +| + +.. image:: https://img.shields.io/pypi/v/pyqode.python.svg + :target: https://pypi.python.org/pypi/pyqode.python/ + :alt: Latest PyPI version -.. image:: http://img.shields.io/pypi/dm/pyqode.python.png - :target: https://pypi.python.org/pypi/pyqode.python/ - :alt: Number of PyPI downloads +.. image:: https://img.shields.io/pypi/dm/pyqode.python.svg + :target: https://pypi.python.org/pypi/pyqode.python/ + :alt: Number of PyPI downloads + +.. image:: https://img.shields.io/pypi/l/pyqode.python.svg .. image:: https://travis-ci.org/pyQode/pyqode.python.svg?branch=master - :target: https://travis-ci.org/pyQode/pyqode.python - :alt: Travis-CI build status + :target: https://travis-ci.org/pyQode/pyqode.python + :alt: Travis-CI build status + + +.. image:: https://coveralls.io/repos/pyQode/pyqode.python/badge.svg?branch=master + :target: https://coveralls.io/r/pyQode/pyqode.python?branch=master + :alt: Coverage Status + + +About +----- + +*pyqode.python* adds **python** support to `pyQode`_ (code completion, +calltips, ...). -.. image:: https://coveralls.io/repos/pyQode/pyqode.python/badge.png?branch=master - :target: https://coveralls.io/r/pyQode/pyqode.python?branch=master - :alt: Coverage Status +- `Issue tracker`_ +- `Wiki`_ +- `API reference`_ +- `Contributing`_ +- `Changelog`_ +- `Screenshots`_ -*pyqode.python* adds **python** support to `pyqode.core`_ (code completion, calltips, ...). Features: --------- - * calltips mode (using `Jedi`_) - * code completion provider (using `Jedi`_) - * code folding mode - * auto indent mode - * on the fly code checkers (frosted (fork of PyFlakes), PEP8) - * a customisable python specific syntax highlighter - * a pre-configured QPythonCodeEdit (with the corresponding Qt Designer plugin) +* calltips mode (using `Jedi`_) +* code completion provider (using `Jedi`_) +* code folding mode +* auto indent mode +* on the fly code checkers (frosted (fork of PyFlakes), PEP8) +* a customisable python specific syntax highlighter +* a pre-configured QPythonCodeEdit (with the corresponding Qt Designer plugin) License ------- -pyQode is licensed under the MIT license. +pyQode is licensed under the **MIT license**. Requirements ------------ pyqode.python depends on the following libraries: - - python 2.7 or python 3 (>= 3.2) - - pyqode.core - - jedi - - pep8 - - frosted - - docutils +- python 2.7 or python 3 (>= 3.2) +- pyqode.core +- jedi +- pep8 +- frosted +- docutils Installation ------------ :: - $ pip3 install pyqode.python + $ pip install pyqode.python --upgrade -Resources ---------- +Testing +------- -- `Downloads`_ -- `Source repository`_ -- `Wiki`_ -- `Documentation`_ +pyqode.core has a test suite and measure its coverage. +To run the tests, just run ``python setup.py test`` + +To measure coverage, run:: + + python setup.py test -a "--cov pyqode" + +To check for PEP8 warnings, install pytest-pep8 and run:: + + python setup.py test -a "--pep8 -m pep8" + + +To run a single test, use ``-a "-- test_file_path.py::test_function"``, e.g.:: + + python setup.py test -a "-- test/test_api/test_code_edit.py::test_set_plain_text" -Snapshots ---------- -Here is a snapshot of the QIdle example application (snapshots -taken on a Gnome 3 desktop): +Testing Matrix +++++++++++++++ -.. image:: doc/source/_static/qidle.png - :alt: Preview of QIdle, the pyQode clone of idle (example app) +We test the following combinations on Travis-CI: ++--------------------------+---------+---------+ +| | PyQt4 | PyQt5 | ++==========================+=========+=========+ +| GNU/Linux - Python 2.7 | yes | no | ++--------------------------+---------+---------+ +| GNU/Linux - Python 3.4 | yes | yes | ++--------------------------+---------+---------+ -.. _Downloads: https://github.com/pyQode/pyqode.python/releases -.. _Source repository: https://github.com/pyQode/pyqode.python/ -.. _Wiki: https://github.com/pyQode/pyqode.core/wiki -.. _official pyqode extension package: https://github.com/pyQode/pyqode.core/wiki/Extensions#official-packages -.. _pyqode.core: https://github.com/pyQode/pyqode.core +.. _Screenshots: https://github.com/pyQode/pyQode/wiki/Screenshots-and-videos#pyqodepython-screenshots +.. _Issue tracker: https://github.com/pyQode/pyQode/issues +.. _Wiki: https://github.com/pyQode/pyQode/wiki +.. _API reference: https://pythonhosted.org/pyqode.python/ +.. _pyQode: https://github.com/pyQode/pyQode .. _Jedi: https://github.com/davidhalter/jedi -.. _`Documentation`: http://pyqodepython.readthedocs.org/en/latest/ -.. _master: https://github.com/pyQode/pyqode.python/tree/master -.. _develop: https://github.com/pyQode/pyqode.python/tree/develop +.. _Changelog: https://github.com/pyQode/pyqode.python/blob/master/CHANGELOG.rst +.. _Contributing: https://github.com/pyQode/pyqode.python/blob/master/CONTRIBUTING.rst diff --git a/conftest.py b/conftest.py index 59f0edcb..61c180a0 100644 --- a/conftest.py +++ b/conftest.py @@ -5,12 +5,12 @@ - setup the logging module - create ONE SINGLE INSTANCE of QApplication: this implies that you must use **QApplication.instance** in your - test scripts. + test scripts (or the app fixture). """ import logging -import os import sys import pytest +from pyqode.qt.QtWidgets import QApplication try: @@ -20,22 +20,6 @@ pass -# ------------------- -# Setup runtest -# ------------------- -def pytest_runtest_setup(item): - """ - Display test method name in active window title bar - """ - global _widget - module, line, method = item.location - module = module.replace('.py', '.') - title = module + method - widgets = QApplication.instance().topLevelWidgets() - for w in widgets: - w.setWindowTitle(title) - logging.info("------------------- %s -------------------", title) - # ------------------- # Setup logging # ------------------- @@ -47,7 +31,6 @@ def pytest_runtest_setup(item): # Setup QApplication # ------------------- # 2. create qt application -from pyqode.qt.QtWidgets import QApplication _app = QApplication(sys.argv) _widget = None @@ -61,21 +44,21 @@ def app(request): return app -@pytest.fixture(scope="session") +@pytest.fixture() def editor(request): global _app, _widget - from pyqode.core import modes + from pyqode.core import modes, cache from pyqode.python.widgets.code_edit import PyCodeEdit - from pyqode.python.backend import server + from pyqode.python.panels import SymbolBrowserPanel from pyqode.qt.QtTest import QTest - logging.info('################ setup session editor ################') + cache.Cache().clear() _widget = PyCodeEdit() - _widget.backend.start(server.__file__) + _widget.panels.append(SymbolBrowserPanel(), + SymbolBrowserPanel.Position.TOP) _widget.resize(800, 600) - _widget.show() - _app.setActiveWindow(_widget) + while not _widget.backend.connected: QTest.qWait(100) @@ -84,13 +67,8 @@ def editor(request): def fin(): global _widget - logging.info('################ teardown session editor ###############' - '#') - _widget.backend.stop() - while _widget.backend.connected: - QTest.qWait(100) + _widget.close() del _widget request.addfinalizer(fin) - return _widget diff --git a/doc/source/_static/pyqode-banner.png b/doc/source/_static/pyqode-banner.png deleted file mode 100644 index 25f75eb8..00000000 Binary files a/doc/source/_static/pyqode-banner.png and /dev/null differ diff --git a/doc/source/_static/qidle.png b/doc/source/_static/qidle.png deleted file mode 100644 index b4c3d469..00000000 Binary files a/doc/source/_static/qidle.png and /dev/null differ diff --git a/doc/source/api/backend.rst b/doc/source/api/backend.rst deleted file mode 100644 index 9f7cbf5c..00000000 --- a/doc/source/api/backend.rst +++ /dev/null @@ -1,7 +0,0 @@ -pyqode.python.backend -===================== - -.. automodule:: pyqode.python.backend - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/source/api/code_edit.rst b/doc/source/api/code_edit.rst deleted file mode 100644 index 651e5b4b..00000000 --- a/doc/source/api/code_edit.rst +++ /dev/null @@ -1,7 +0,0 @@ -pyqode.python.code_edit -======================= - -.. automodule:: pyqode.python.widgets.code_edit - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/source/api/index.rst b/doc/source/api/index.rst deleted file mode 100644 index f1e125ec..00000000 --- a/doc/source/api/index.rst +++ /dev/null @@ -1,18 +0,0 @@ -API Reference -============= - -The API reference documentation is auto extracted from the source code and only -cover the public API. - -For an easier browsing, the different subpackages are documented on a separate -page. - - -.. toctree:: - :maxdepth: 1 - - code_edit - backend - modes - panels - managers diff --git a/doc/source/api/managers.rst b/doc/source/api/managers.rst deleted file mode 100644 index a0ffec5b..00000000 --- a/doc/source/api/managers.rst +++ /dev/null @@ -1,7 +0,0 @@ -pyqode.python.managers -====================== - -.. automodule:: pyqode.python.managers - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/source/api/modes.rst b/doc/source/api/modes.rst deleted file mode 100644 index 56ff74e3..00000000 --- a/doc/source/api/modes.rst +++ /dev/null @@ -1,7 +0,0 @@ -pyqode.python.modes -=================== - -.. automodule:: pyqode.python.modes - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/source/api/panels.rst b/doc/source/api/panels.rst deleted file mode 100644 index 2ce30ae8..00000000 --- a/doc/source/api/panels.rst +++ /dev/null @@ -1,7 +0,0 @@ -pyqode.python.panels -==================== - -.. automodule:: pyqode.python.panels - :members: - :undoc-members: - :show-inheritance: diff --git a/doc/source/bugs.rst b/doc/source/bugs.rst deleted file mode 100644 index 3ef45889..00000000 --- a/doc/source/bugs.rst +++ /dev/null @@ -1,14 +0,0 @@ -Reporting bugs -============== - -You can report bugs or ask question on our `bug tracker`_. - -**Please, if your issue has been fixed in develop branch only, do not close it.**. -We leave our issues open while they have not been merged into the master -branch (i.e. while the fix has not officially been released). - -.. note:: We are now using `waffle.io`_ to manage all pyqode issues (from all - sub-repositories). - -.. _bug tracker: https://github.com/pyQode/pyqode.core/issues?state=open -.. _waffle.io: https://waffle.io/pyqode/pyqode.core diff --git a/doc/source/changelog.rst b/doc/source/changelog.rst deleted file mode 100644 index df42a2c3..00000000 --- a/doc/source/changelog.rst +++ /dev/null @@ -1,8 +0,0 @@ -Change Log -========== - -.. note:: - - These lists are not exhaustive. - -.. include:: /../../CHANGELOG.rst \ No newline at end of file diff --git a/doc/source/conf.py b/doc/source/conf.py index 5a2a2755..75820098 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -20,33 +20,8 @@ sys.path.append( os.path.abspath(os.path.join(os.path.dirname(__file__), "_ext"))) sys.path.insert(0, os.path.abspath('../..')) - -os.environ['SPHINX'] = "1" - import sys - - -class Mock(object): - def __init__(self, *args, **kwargs): - pass - - def __call__(self, *args, **kwargs): - return Mock() - - @classmethod - def __getattr__(cls, name): - if name in ('__file__', '__path__'): - return '/dev/null' - elif name[0] == name[0].upper(): - mockType = type(name, (), {}) - mockType.__module__ = __name__ - return mockType - else: - return Mock() - -MOCK_MODULES = ["PyQt4", 'PyQt5'] -for mod_name in MOCK_MODULES: - sys.modules[mod_name] = Mock() +from pyqode.python import __version__ # -- General configuration ----------------------------------------------------- @@ -71,16 +46,16 @@ def __getattr__(cls, name): # General information about the project. project = u'pyqode.python' -copyright = u'2013-2014, Colin Duquesnoy' +copyright = u'2013-2016, Colin Duquesnoy' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = '2.2' +version = __version__ # The full version, including alpha/beta/rc tags. -release = '2.2.0' +release = __version__ # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -121,13 +96,7 @@ def __getattr__(cls, name): # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -on_rtd = os.environ.get('READTHEDOCS', None) == 'True' -html_theme = 'default' -if not on_rtd: # only import and set the theme if we're building docs locally - import sphinx_rtd_theme - html_theme = 'sphinx_rtd_theme' - html_theme_path = [sphinx_rtd_theme.get_html_theme_path()] - +html_theme = 'pyramid' # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. @@ -284,7 +253,7 @@ def __getattr__(cls, name): intersphinx_mapping = { 'python': ('http://python.readthedocs.org/en/v2.7.2/', None), - 'pyqodecore': ('http://pyqodecore.readthedocs.org/en/latest/', None), + 'pyqodecore': ('https://pythonhosted.org/pyqode.core/', None), 'jedi': ('http://jedi.readthedocs.org/en/latest/', None)} @@ -292,4 +261,4 @@ def __getattr__(cls, name): inheritance_graph_attrs = dict(rankdir="LR", size='""', fontsize=14, ratio='compress') -autodoc_member_order = 'groupwise' \ No newline at end of file +autodoc_member_order = 'groupwise' diff --git a/doc/source/contribute.rst b/doc/source/contribute.rst deleted file mode 100644 index 538876bb..00000000 --- a/doc/source/contribute.rst +++ /dev/null @@ -1,36 +0,0 @@ -Contributing -============ - -pyqode.python is an open-source project, and it needs your help to go on growing -and improving. - -You can contribute in many different ways: - - - reports new bugs/features on the `issue tracker`_ - - create new modes/panels and submit them on the `wiki`_, you can also - present your project `here`_ - - fork the project and send pull requests to merge your work - -If you have any question, just open an issue on the issue tracker. - -.. _`issue tracker`: https://github.com/pyQode/pyqode.python/issues?state=open -.. _`wiki`: https://github.com/pyQode/pyqode.core/wiki/Extensions -.. _`here`: https://github.com/pyQode/pyqode.core/wiki/Projects - -Recommendation for submitting a post request: ---------------------------------------------- -Pull Requests are great (on the dev branch)! Readme/Documentation changes are -ok in the master branch. - - - Fork the Repo on github. - - Add your name to AUTHORS.txt - - Push to your fork and submit a pull request to the dev branch. - -The master branch is used for the stable releases, following the -`git workflow`_. - -Please use **PEP8** to style your code except for the naming conventions. We -use the Qt naming conventions to remains coherent and homogeneous with the rest -of the Qt API. - -.. _`git workflow`: http://nvie.com/posts/a-successful-git-branching-model/ diff --git a/doc/source/credits.rst b/doc/source/credits.rst deleted file mode 100644 index adbedb3b..00000000 --- a/doc/source/credits.rst +++ /dev/null @@ -1,14 +0,0 @@ -Credits -======= - -pyqode.python uses a couple of external libraries that were really helpful: - - * `jedi`_: code completion, calltips - * `pep8`_: style checker - * `frosted`_: syntax checker - -Thanks to their developers for their great work! - -.. _`jedi`: https://pypi.python.org/pypi/jedi -.. _`pep8`: https://pypi.python.org/pypi/pep8 -.. _`frosted`: https://github.com/timothycrosley/frosted diff --git a/doc/source/download.rst b/doc/source/download.rst deleted file mode 100644 index acbb6f59..00000000 --- a/doc/source/download.rst +++ /dev/null @@ -1,57 +0,0 @@ -Download & Install -================== - -Here you'll find all the necessary explanations for installing pyqode.python. - - -Requirements ------------- -pyqode.python depends on the following packages (that will be automatically -installed when using *pip install* or *setup.py install*): - - - pyqode.core - - jedi - - pep8 - - frosted (an alternative to pyflakes) - -Supported platforms -------------------- - -pyqode.python runs on the same platforms as pyqode.core: - - - Windows - - GNU/Linux - - Mac OSX (>= 10.9) - - -Using pip (the recommended way) -------------------------------- - -pyqode.python can be installed from *pypi* using *pip*: - -.. code-block:: bash - - $ pip install pyqode.python - -From source ------------ - -You can download the `source archive`_ from the `github repository`_ - -Then you can install the package by opening a terminal an typing the following commands: - -.. code-block:: bash - - $ cd path/to/source/ - $ python setup.py install - -Alternatively you can clone the repository using git: - -.. code-block:: bash - - $ git clone git@github.com:pyQode/pyqode.python.git - $ cd pyqode.python - $ python setup.py install - -.. _source archive: https://github.com/pyQode/pyqode.python/archive/master.zip -.. _github repository: https://github.com/pyQode/pyqode.python diff --git a/doc/source/examples.rst b/doc/source/examples.rst new file mode 100644 index 00000000..b07521f5 --- /dev/null +++ b/doc/source/examples.rst @@ -0,0 +1,122 @@ +Examples +======== +If you downloaded a source archive or cloned pyQode from github, you will find a +series of examples in the ``examples`` directory, at the root of the archive. + +All examples requires ``pyqode.qt``, ``pyqode.core`` and +``pyqode.python`` to be installed. + +.. note:: All examples are bindings independent so that every user can run them + without being required to install an unwanted qt binding. + +.. highlight:: python + :linenothreshold: 5 + +Pre-configured +-------------- + +Basic example that show you how to use the pre-configured python code editor +widget. + +.. literalinclude:: /../../examples/preconfigured.py + :linenos: + +Custom +------ + +Basic example that show you how to build a custom python code editor widget + +.. literalinclude:: /../../examples/custom.py + :linenos: + +Modes +----- + +Auto complete ++++++++++++++ + +.. literalinclude:: /../../examples/modes/autocomplete.py + :linenos: + +Auto indent ++++++++++++ + +.. literalinclude:: /../../examples/modes/autoindent.py + :linenos: + +Call tips ++++++++++ + +.. literalinclude:: /../../examples/modes/calltips.py + :linenos: + +Comment/Uncomment ++++++++++++++++++ + +.. literalinclude:: /../../examples/modes/comments.py + :linenos: + +Go to assignment +++++++++++++++++ + +.. literalinclude:: /../../examples/modes/goto.py + :linenos: + +PEP8 linter ++++++++++++ + +.. literalinclude:: /../../examples/modes/pep8.py + :linenos: + +PyFlakes linter ++++++++++++++++ + +.. literalinclude:: /../../examples/modes/pyflakes.py + :linenos: + +Syntax highlighter +++++++++++++++++++ + +.. literalinclude:: /../../examples/modes/syntax_highlighter.py + :linenos: + + +Panels +------ + +Documentation ++++++++++++++ + +.. literalinclude:: /../../examples/panels/quick_doc.py + :linenos: + +Symbol browser +++++++++++++++ + +.. literalinclude:: /../../examples/panels/symbol_browser.py + :linenos: + +Widgets +------- + +Interactive console ++++++++++++++++++++ + +.. literalinclude:: /../../examples/widgets/interactive_console.py + :linenos: + +.. literalinclude:: /../../examples/widgets/interactive_process.py + :linenos: + +Outline ++++++++ + +.. literalinclude:: /../../examples/widgets/outline.py + :linenos: + +PyNotepad +--------- + +This example is a complete but minimal python code editor application. +It is too large to be included here but you should really have a look at it as +this example combines nearly all the concepts exposed by pyqode.python. diff --git a/doc/source/index.rst b/doc/source/index.rst index 4388c325..d7b70e88 100644 --- a/doc/source/index.rst +++ b/doc/source/index.rst @@ -1,92 +1,58 @@ -.. image:: _static/pyqode-banner.png - :alt: pyQode +.. pyqode documentation master file, created by + sphinx-quickstart on Sun Oct 12 18:28:02 2014. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. -Welcome to pyqode.python documentation! -======================================= +Welcome to pyqode.python's API reference documentation! +======================================================= -pyqode.python is an official extension to pyqode that adds a set of additional -modes and panels dedicated to python source code editing. +**pyqode.python** adds **python** support to `pyQode`_ (code completion, +calltips, ...). -This documentation is a simple API reference for the new modes and panels. You -should have read the `pyqode.core documentation`_ that covers the core concepts -of pyQode. +- `Issue tracker`_ +- `Wiki`_ +- `API reference`_ +- `Contributing`_ +- `Changelog`_ +- `Screenshots`_ +This documentation contains the **API reference documentation** and the +**official examples**. -.. _`pyqode.core documentation`: http://pyqodecore.readthedocs.org/en/latest/ +.. note:: We recommend you to start with the `Readme`_ and the `Wiki`_ + before reading this document -Parts of the documentation: -=========================== +API reference: +============== .. toctree:: - :maxdepth: 1 - :hidden: + :maxdepth: 3 - whats_new - download - api/index - changelog - bugs - contribute - license - credits + pyqode.python +Examples: +========= -.. hlist:: - :columns: 2 - - * .. glossary:: - - :doc:`whats_new` - What's new since the last release, and what is planned for the next one. - - * .. glossary:: - - :doc:`download` - Instructions on where and how to install pyQode. - - * .. glossary:: - - :doc:`api/index` - The api reference documentation - - -Meta information: -================= - -.. hlist:: - :columns: 2 - - * .. glossary:: - - :doc:`bugs` - How to report bugs - - * .. glossary:: - - :doc:`contribute` - How to contribute - - * .. glossary:: - - :doc:`license` - pyQode license - - * .. glossary:: - - :doc:`credits` - Credits to contributors and external libraries +.. toctree:: + :maxdepth: 2 + examples -Indices and tables: -=================== +Indices and tables +================== * :ref:`genindex` - +* :ref:`modindex` * :ref:`search` -.. _pyqode.core: https://github.com/pyQode/pyqode.core -.. _pyqode.python: https://github.com/pyQode/pyqode.python -.. _pyqode.widgets: https://github.com/pyQode/pyqode.widgets -.. _pyqode.designer: https://github.com/pyQode/pyqode.designer +.. _Readme: https://github.com/pyQode/pyqode.python/blob/master/README.rst +.. _Screenshots: https://github.com/pyQode/pyQode/wiki/Screenshots-and-videos#pyqodepython-screenshots +.. _Issue tracker: https://github.com/pyQode/pyQode/issues +.. _Wiki: https://github.com/pyQode/pyQode/wiki +.. _API reference: https://pythonhosted.org/pyqode.python/ +.. _pyQode: https://github.com/pyQode/pyQode +.. _Jedi: https://github.com/davidhalter/jedi +.. _Changelog: https://github.com/pyQode/pyqode.python/blob/master/CHANGELOG.rst +.. _Contributing: https://github.com/pyQode/pyqode.python/blob/master/CONTRIBUTING.rst diff --git a/doc/source/license.rst b/doc/source/license.rst deleted file mode 100644 index d9240f25..00000000 --- a/doc/source/license.rst +++ /dev/null @@ -1,28 +0,0 @@ -License -======= - -pyqode.python is licensed under the MIT license. - - -The MIT License (MIT) ---------------------- - -Copyright (c) <2013-2014> - -Permission is hereby granted, free of charge, to any person obtaining a copy -of this software and associated documentation files (the "Software"), to deal -in the Software without restriction, including without limitation the rights -to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -copies of the Software, and to permit persons to whom the Software is -furnished to do so, subject to the following conditions: - -The above copyright notice and this permission notice shall be included in -all copies or substantial portions of the Software. - -THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -THE SOFTWARE. diff --git a/doc/source/pyqode.python.backend.rst b/doc/source/pyqode.python.backend.rst new file mode 100644 index 00000000..25b5b5df --- /dev/null +++ b/doc/source/pyqode.python.backend.rst @@ -0,0 +1,63 @@ +pyqode.python.backend package +============================= + +Module contents +--------------- + +.. automodule:: pyqode.python.backend + + +Classes +------- + +JediCompletionProvider +++++++++++++++++++++++ + +.. autoclass:: pyqode.python.backend.JediCompletionProvider + :members: + :undoc-members: + :show-inheritance: + +Functions +--------- + +calltips +++++++++ +.. autofunction:: pyqode.python.backend.calltips + +defined_names ++++++++++++++ +.. autofunction:: pyqode.python.backend.defined_names + +goto_assignments +++++++++++++++++ +.. autofunction:: pyqode.python.backend.goto_assignments + +icon_from_typename +++++++++++++++++++ +.. autofunction:: pyqode.python.backend.icon_from_typename + +quick_doc ++++++++++ +.. autofunction:: pyqode.python.backend.quick_doc + +run_frosted ++++++++++++ +.. autofunction:: pyqode.python.backend.run_frosted + +run_pep8 +++++++++ +.. autofunction:: pyqode.python.backend.run_pep8 + + +Server script +------------- + +.. automodule:: pyqode.python.backend.server + :members: + :undoc-members: + :show-inheritance: + + +.. literalinclude:: /../../pyqode/python/backend/server.py + :linenos: diff --git a/doc/source/pyqode.python.managers.rst b/doc/source/pyqode.python.managers.rst new file mode 100644 index 00000000..1a53654a --- /dev/null +++ b/doc/source/pyqode.python.managers.rst @@ -0,0 +1,18 @@ +pyqode.python.managers package +============================== + +Module contents +--------------- + +.. automodule:: pyqode.python.managers + +Classes +------- + +PyFileManager ++++++++++++++ + +.. autoclass:: pyqode.python.managers.PyFileManager + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/source/pyqode.python.modes.rst b/doc/source/pyqode.python.modes.rst new file mode 100644 index 00000000..d33b1970 --- /dev/null +++ b/doc/source/pyqode.python.modes.rst @@ -0,0 +1,108 @@ +pyqode.python.modes package +=========================== + +Module contents +--------------- + +.. automodule:: pyqode.python.modes + + +Classes +------- + +Assignment +++++++++++ + +.. autoclass:: pyqode.python.modes.Assignment + :members: + :undoc-members: + :show-inheritance: + + +CalltipsMode +++++++++++++ + +.. autoclass:: pyqode.python.modes.CalltipsMode + :members: + :undoc-members: + :show-inheritance: + + +CommentsMode +++++++++++++ + +.. autoclass:: pyqode.python.modes.CommentsMode + :members: + :undoc-members: + :show-inheritance: + +DocumentAnalyserMode +++++++++++++++++++++ + +.. autoclass:: pyqode.python.modes.DocumentAnalyserMode + :members: + :undoc-members: + :show-inheritance: + + +FrostedCheckerMode +++++++++++++++++++ + +.. autoclass:: pyqode.python.modes.FrostedCheckerMode + :members: + :undoc-members: + :show-inheritance: + + +GoToAssignmentsMode ++++++++++++++++++++ + +.. autoclass:: pyqode.python.modes.GoToAssignmentsMode + :members: + :undoc-members: + :show-inheritance: + + +PEP8CheckerMode ++++++++++++++++ + +.. autoclass:: pyqode.python.modes.PEP8CheckerMode + :members: + :undoc-members: + :show-inheritance: + + +PyAutoCompleteMode +++++++++++++++++++ + +.. autoclass:: pyqode.python.modes.PyAutoCompleteMode + :members: + :undoc-members: + :show-inheritance: + + +PyAutoIndentMode +++++++++++++++++ + +.. autoclass:: pyqode.python.modes.PyAutoIndentMode + :members: + :undoc-members: + :show-inheritance: + + +PyIndenterMode +++++++++++++++ + +.. autoclass:: pyqode.python.modes.PyIndenterMode + :members: + :undoc-members: + :show-inheritance: + + +PythonSH +++++++++ + +.. autoclass:: pyqode.python.modes.PythonSH + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/source/pyqode.python.panels.rst b/doc/source/pyqode.python.panels.rst new file mode 100644 index 00000000..1e2f4c43 --- /dev/null +++ b/doc/source/pyqode.python.panels.rst @@ -0,0 +1,28 @@ +pyqode.python.panels package +============================ + +Module contents +--------------- + +.. automodule:: pyqode.python.panels + + +Classes +------- + +QuickDocPanel ++++++++++++++ + +.. autoclass:: pyqode.python.panels.QuickDocPanel + :members: + :undoc-members: + :show-inheritance: + + +SymbolBrowserPanel +++++++++++++++++++ + +.. autoclass:: pyqode.python.panels.SymbolBrowserPanel + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/source/pyqode.python.rst b/doc/source/pyqode.python.rst new file mode 100644 index 00000000..2b975bd7 --- /dev/null +++ b/doc/source/pyqode.python.rst @@ -0,0 +1,33 @@ +pyqode.python package +===================== + +Subpackages +----------- + +.. toctree:: + + pyqode.python.backend + pyqode.python.managers + pyqode.python.modes + pyqode.python.panels + pyqode.python.widgets + +Submodules +---------- + +pyqode.python.folding module +---------------------------- + +.. automodule:: pyqode.python.folding + :members: + :undoc-members: + :show-inheritance: + + +Module contents +--------------- + +.. automodule:: pyqode.python + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/source/pyqode.python.widgets.rst b/doc/source/pyqode.python.widgets.rst new file mode 100644 index 00000000..38f0c02e --- /dev/null +++ b/doc/source/pyqode.python.widgets.rst @@ -0,0 +1,32 @@ +pyqode.python.widgets package +============================= + +Module contents +--------------- + +.. automodule:: pyqode.python.widgets + + +PyCodeEditBase +++++++++++++++ + +.. autoclass:: pyqode.python.widgets.PyCodeEditBase + :members: + :undoc-members: + :show-inheritance: + +PyCodeEdit +++++++++++ + +.. autoclass:: pyqode.python.widgets.PyCodeEdit + :members: + :undoc-members: + :show-inheritance: + +PyInteractiveConsole +++++++++++++++++++++ + +.. autoclass:: pyqode.python.widgets.PyInteractiveConsole + :members: + :undoc-members: + :show-inheritance: diff --git a/doc/source/whats_new.rst b/doc/source/whats_new.rst deleted file mode 100644 index 3e8dca0d..00000000 --- a/doc/source/whats_new.rst +++ /dev/null @@ -1,24 +0,0 @@ -What's New? -=========== -This page presents the latest news concerning the pyqode project. -You will find what the latest release added and what is planned for the next -versions. - -For more specific details about what is planned and what has been -accomplished, please visit the `issues page on github`_ and the -:doc:`changelog `, respectively. - - -2.2.0 ------ - -This release added numerous new features to pyqode.core (python2 support, -occurrences highlighting, global checker, extended selection). - -Next Version ------------- - -Next version will focus on adding new features! - - -.. _`issues page on github`: https://github.com/pyQode/pyqode.python \ No newline at end of file diff --git a/examples/custom.py b/examples/custom.py new file mode 100644 index 00000000..a6442983 --- /dev/null +++ b/examples/custom.py @@ -0,0 +1,86 @@ +""" +A basic example that show you how to create a basic python code editor widget, +from scratch. + +Editor features: + - syntax highlighting + - code completion (using jedi) + - code folding + - auto indentation + - auto complete + - comments mode (ctrl+/) + - calltips mode + - linters (pyflakes and pep8) modes + display panel + - line number panel + - builtin search and replace panel +""" +import logging +logging.basicConfig() +# optionally, set the qt api to use (in ['pyqt4', 'pyqt5', 'pyside']) +# import os; os.environ['QT_API'] = 'pyside' +import sys +from pyqode.qt import QtWidgets +from pyqode.python.backend import server +from pyqode.core import api, modes, panels +from pyqode.python import modes as pymodes, panels as pypanels, widgets +from pyqode.python.folding import PythonFoldDetector +from pyqode.python.backend.workers import defined_names + + +class MyPythonCodeEdit(widgets.PyCodeEditBase): + def __init__(self): + super(MyPythonCodeEdit, self).__init__() + + # starts the default pyqode.python server (which enable the jedi code + # completion worker). + self.backend.start(server.__file__) + + # some other modes/panels require the analyser mode, the best is to + # install it first + self.modes.append(modes.OutlineMode(defined_names)) + + #--- core panels + self.panels.append(panels.FoldingPanel()) + self.panels.append(panels.LineNumberPanel()) + self.panels.append(panels.CheckerPanel()) + self.panels.append(panels.SearchAndReplacePanel(), + panels.SearchAndReplacePanel.Position.BOTTOM) + self.panels.append(panels.EncodingPanel(), api.Panel.Position.TOP) + # add a context menu separator between editor's + # builtin action and the python specific actions + self.add_separator() + + #--- python specific panels + self.panels.append(pypanels.QuickDocPanel(), api.Panel.Position.BOTTOM) + + #--- core modes + self.modes.append(modes.CaretLineHighlighterMode()) + self.modes.append(modes.CodeCompletionMode()) + self.modes.append(modes.ExtendedSelectionMode()) + self.modes.append(modes.FileWatcherMode()) + self.modes.append(modes.OccurrencesHighlighterMode()) + self.modes.append(modes.RightMarginMode()) + self.modes.append(modes.SmartBackSpaceMode()) + self.modes.append(modes.SymbolMatcherMode()) + self.modes.append(modes.ZoomMode()) + + #--- python specific modes + self.modes.append(pymodes.CommentsMode()) + self.modes.append(pymodes.CalltipsMode()) + self.modes.append(pymodes.PyFlakesChecker()) + self.modes.append(pymodes.PEP8CheckerMode()) + self.modes.append(pymodes.PyAutoCompleteMode()) + self.modes.append(pymodes.PyAutoIndentMode()) + self.modes.append(pymodes.PyIndenterMode()) + self.modes.append(pymodes.PythonSH(self.document())) + self.syntax_highlighter.fold_detector = PythonFoldDetector() + + +app = QtWidgets.QApplication(sys.argv) +window = QtWidgets.QMainWindow() +editor = MyPythonCodeEdit() +editor.file.open(__file__) +window.setCentralWidget(editor) +window.show() +app.exec_() +editor.close() diff --git a/examples/modes/autocomplete.py b/examples/modes/autocomplete.py new file mode 100644 index 00000000..bb069f75 --- /dev/null +++ b/examples/modes/autocomplete.py @@ -0,0 +1,28 @@ +""" +Minimal example showing the use of the PyAutoCompleteMode. +""" +import logging +logging.basicConfig(level=logging.DEBUG) +import sys + +from pyqode.qt import QtWidgets +from pyqode.core.api import CodeEdit +from pyqode.python.backend import server +from pyqode.python.modes import PyAutoCompleteMode + + +if __name__ == '__main__': + app = QtWidgets.QApplication(sys.argv) + editor = CodeEdit() + editor.backend.start(server.__file__) + editor.resize(800, 600) + print(editor.modes.append(PyAutoCompleteMode())) + editor.appendPlainText( + '# Please press "("\n' + 'class Foo:\n' + ' def bar') + editor.show() + app.exec_() + editor.close() + del editor + del app diff --git a/examples/modes/autoindent.py b/examples/modes/autoindent.py new file mode 100644 index 00000000..dfb8b8bc --- /dev/null +++ b/examples/modes/autoindent.py @@ -0,0 +1,31 @@ +""" +Minimal example showing the use of the AutoIndentMode. +""" +import logging +logging.basicConfig(level=logging.DEBUG) +import sys + +from pyqode.qt import QtWidgets +from pyqode.core.api import CodeEdit +from pyqode.python.backend import server +from pyqode.core.modes import SymbolMatcherMode +from pyqode.python.modes import PyAutoIndentMode, PythonSH + + +if __name__ == '__main__': + app = QtWidgets.QApplication(sys.argv) + editor = CodeEdit() + editor.backend.start(server.__file__) + editor.resize(800, 600) + # PyAutoIndent needs the matcher mode and a syntax highlighter to work + # properly + editor.modes.append(PythonSH(editor.document())) + editor.modes.append(SymbolMatcherMode()) + print(editor.modes.append(PyAutoIndentMode())) + editor.show() + editor.appendPlainText( + 'class Foo:') + app.exec_() + editor.close() + del editor + del app diff --git a/examples/modes/calltips.py b/examples/modes/calltips.py new file mode 100644 index 00000000..d59ea0ed --- /dev/null +++ b/examples/modes/calltips.py @@ -0,0 +1,26 @@ +""" +Minimal example showing the use of the CalltipsMode. +""" +import logging +logging.basicConfig(level=logging.DEBUG) +import sys + +from pyqode.qt import QtWidgets +from pyqode.core.api import CodeEdit +from pyqode.python.backend import server +from pyqode.python.modes import CalltipsMode + + +if __name__ == '__main__': + app = QtWidgets.QApplication(sys.argv) + editor = CodeEdit() + editor.backend.start(server.__file__) + editor.resize(800, 600) + print(editor.modes.append(CalltipsMode())) + editor.show() + editor.appendPlainText( + 'import os\nos.path.join') + app.exec_() + editor.close() + del editor + del app diff --git a/examples/modes/comments.py b/examples/modes/comments.py new file mode 100644 index 00000000..1f0b7ec5 --- /dev/null +++ b/examples/modes/comments.py @@ -0,0 +1,30 @@ +""" +Minimal example showing the use of the CommentsMode. +""" +import logging +logging.basicConfig(level=logging.DEBUG) +import sys + +from pyqode.qt import QtWidgets +from pyqode.core.api import CodeEdit +from pyqode.python.backend import server +from pyqode.python.modes import CommentsMode, PythonSH + + +if __name__ == '__main__': + app = QtWidgets.QApplication(sys.argv) + editor = CodeEdit() + editor.backend.start(server.__file__) + editor.resize(800, 600) + print(editor.modes.append(CommentsMode())) + editor.modes.append(PythonSH(editor.document())) # looks better + editor.show() + editor.appendPlainText( +'''# press Ctrl+/ to comment/uncomment selected text or the current line +class Foo: + def bar(self): + pass''') + app.exec_() + editor.close() + del editor + del app diff --git a/examples/modes/goto.py b/examples/modes/goto.py new file mode 100644 index 00000000..9f349cec --- /dev/null +++ b/examples/modes/goto.py @@ -0,0 +1,33 @@ +""" +Minimal example showing the use of the GoToAssignmentsMode. +""" +import logging +logging.basicConfig(level=logging.DEBUG) +import sys + +from pyqode.qt import QtWidgets +from pyqode.core.api import CodeEdit +from pyqode.python.backend import server +from pyqode.python.modes import GoToAssignmentsMode, PythonSH + + +if __name__ == '__main__': + app = QtWidgets.QApplication(sys.argv) + editor = CodeEdit() + editor.backend.start(server.__file__) + editor.resize(800, 600) + print(editor.modes.append(GoToAssignmentsMode())) + editor.modes.append(PythonSH(editor.document())) # looks better + editor.show() + editor.appendPlainText( +'''press_me = 10 + + +def spam(): + # press Ctrl+Left click on ``press_me`` to go to its definition + print(press_me) +''') + app.exec_() + editor.close() + del editor + del app diff --git a/examples/modes/pep8.py b/examples/modes/pep8.py new file mode 100644 index 00000000..a8315255 --- /dev/null +++ b/examples/modes/pep8.py @@ -0,0 +1,29 @@ +""" +Minimal example showing the use of the PEP8CheckerMode. +""" +import logging +logging.basicConfig(level=logging.DEBUG) +import sys + +from pyqode.qt import QtWidgets +from pyqode.core.api import CodeEdit +from pyqode.core.panels import CheckerPanel +from pyqode.python.backend import server +from pyqode.python.modes import PEP8CheckerMode, PythonSH + + +if __name__ == '__main__': + app = QtWidgets.QApplication(sys.argv) + editor = CodeEdit() + editor.backend.start(server.__file__) + editor.resize(800, 600) + print(editor.modes.append(PEP8CheckerMode())) + editor.modes.append(PythonSH(editor.document())) # looks better + editor.panels.append(CheckerPanel()) + editor.show() + editor.setPlainText('class Foo:\n\n\ndef __init__(self):\n\npass', + 'text/x-python', 'utf-8') + app.exec_() + editor.close() + del editor + del app diff --git a/examples/modes/pyflakes.py b/examples/modes/pyflakes.py new file mode 100644 index 00000000..12facdf2 --- /dev/null +++ b/examples/modes/pyflakes.py @@ -0,0 +1,32 @@ +""" +Minimal example showing the use of the FrostedCheckerMode. + +We use Frosted (a fork of pyFlakes) that provides an easier API for running +pyFlakes on strings (instead of files). +""" +import logging +from pyqode.core.panels import CheckerPanel + +logging.basicConfig(level=logging.DEBUG) +import sys + +from pyqode.qt import QtWidgets +from pyqode.core.api import CodeEdit +from pyqode.python.backend import server +from pyqode.python.modes import PyFlakesChecker, PythonSH + + +if __name__ == '__main__': + app = QtWidgets.QApplication(sys.argv) + editor = CodeEdit() + editor.backend.start(server.__file__) + editor.resize(800, 600) + print(editor.modes.append(PyFlakesChecker())) + editor.modes.append(PythonSH(editor.document())) # looks better + editor.panels.append(CheckerPanel()) + editor.show() + editor.setPlainText('print("foo\n', 'text/x-python', 'utf-8') + app.exec_() + editor.close() + del editor + del app diff --git a/examples/modes/syntax_highlighter.py b/examples/modes/syntax_highlighter.py new file mode 100644 index 00000000..861f72a1 --- /dev/null +++ b/examples/modes/syntax_highlighter.py @@ -0,0 +1,28 @@ +""" +Minimal example showing the use of the PythonSH mode. +""" +import logging +logging.basicConfig(level=logging.DEBUG) +import sys + +from pyqode.qt import QtWidgets +from pyqode.core.api import CodeEdit, ColorScheme +from pyqode.python.backend import server +from pyqode.python.modes import PythonSH + + +if __name__ == '__main__': + app = QtWidgets.QApplication(sys.argv) + editor = CodeEdit() + editor.backend.start(server.__file__) + editor.resize(800, 600) + # add a native python syntax highlighter + sh = editor.modes.append(PythonSH(editor.document())) + # change its color scheme (from pygments) + sh.color_scheme = ColorScheme('monokai') + editor.show() + editor.file.open(__file__) + app.exec_() + editor.close() + del editor + del app diff --git a/examples/panels/quick_doc.py b/examples/panels/quick_doc.py new file mode 100644 index 00000000..25bad397 --- /dev/null +++ b/examples/panels/quick_doc.py @@ -0,0 +1,43 @@ +""" +Minimal example showing the use of the QuickDockPanel. +""" +import logging +logging.basicConfig(level=logging.DEBUG) +import sys + +from pyqode.qt import QtWidgets +from pyqode.core.api import code_edit +from pyqode.core.api import CodeEdit +from pyqode.python.backend import server +from pyqode.python.panels import QuickDocPanel + + +if __name__ == '__main__': + app = QtWidgets.QApplication(sys.argv) + editor = CodeEdit() + editor.backend.start(server.__file__) + editor.resize(800, 600) + # we must add the document analyser prior to adding the symbol browser + # panel + editor.panels.append(QuickDocPanel(), QuickDocPanel.Position.BOTTOM) + editor.show() + editor.setPlainText('''# Press Alt+Q on a symbol to get its documentation +import os + + +class Foo: + """ + A foo class + """ + + def spam(self, eggs): + """ spams some eggs """ + return str(eggs).lower() + +foo = Foo() +os.path.join(foo.spam()) +''', '', '') + app.exec_() + editor.close() + del editor + del app diff --git a/examples/panels/symbol_browser.py b/examples/panels/symbol_browser.py new file mode 100644 index 00000000..f12d4245 --- /dev/null +++ b/examples/panels/symbol_browser.py @@ -0,0 +1,32 @@ +""" +Minimal example showing the use of the SymbolBrowserPanel. + +This panel works in combination with the DocumentAnalyserMode. +""" +import logging +logging.basicConfig(level=logging.DEBUG) +import sys + +from pyqode.qt import QtWidgets +from pyqode.core.api import code_edit +from pyqode.core.api import CodeEdit +from pyqode.python.backend import server +from pyqode.python.modes import DocumentAnalyserMode +from pyqode.python.panels import SymbolBrowserPanel + + +if __name__ == '__main__': + app = QtWidgets.QApplication(sys.argv) + editor = CodeEdit() + editor.backend.start(server.__file__) + editor.resize(800, 600) + # we must add the document analyser prior to adding the symbol browser + # panel + editor.modes.append(DocumentAnalyserMode(editor.document())) + editor.panels.append(SymbolBrowserPanel(), SymbolBrowserPanel.Position.TOP) + editor.show() + editor.file.open(code_edit.__file__) + app.exec_() + editor.close() + del editor + del app diff --git a/examples/preconfigured.py b/examples/preconfigured.py new file mode 100644 index 00000000..752d389b --- /dev/null +++ b/examples/preconfigured.py @@ -0,0 +1,22 @@ +""" +This simple example shows you how to use the pre-configured python editor. +""" +import logging +logging.basicConfig() +# optionally, set the qt api to use (in ['pyqt4', 'pyqt5', 'pyside']) +# import os; os.environ['QT_API'] = 'pyside' +import sys +from pyqode.qt import QtWidgets +from pyqode.python.backend import server +from pyqode.python.widgets import PyCodeEdit +from pyqode.python.widgets import code_edit + + +app = QtWidgets.QApplication(sys.argv) +window = QtWidgets.QMainWindow() +editor = PyCodeEdit(server_script=server.__file__) +# show the PyCodeEdit module in the editor +editor.file.open(code_edit.__file__.replace('.pyc', '.py')) +window.setCentralWidget(editor) +window.show() +app.exec_() diff --git a/examples/pynotepad/forms/Gnome-Media-Playback-Start.png b/examples/pynotepad/forms/Gnome-Media-Playback-Start.png new file mode 100644 index 00000000..a8ad48b6 Binary files /dev/null and b/examples/pynotepad/forms/Gnome-Media-Playback-Start.png differ diff --git a/examples/pynotepad/forms/Gnome-System-Run.png b/examples/pynotepad/forms/Gnome-System-Run.png new file mode 100644 index 00000000..a16ffb1a Binary files /dev/null and b/examples/pynotepad/forms/Gnome-System-Run.png differ diff --git a/examples/pynotepad/forms/about.png b/examples/pynotepad/forms/about.png new file mode 100644 index 00000000..b699616a Binary files /dev/null and b/examples/pynotepad/forms/about.png differ diff --git a/examples/pynotepad/forms/close.png b/examples/pynotepad/forms/close.png new file mode 100644 index 00000000..045b0a44 Binary files /dev/null and b/examples/pynotepad/forms/close.png differ diff --git a/examples/pynotepad/forms/document-new.png b/examples/pynotepad/forms/document-new.png new file mode 100644 index 00000000..913f2022 Binary files /dev/null and b/examples/pynotepad/forms/document-new.png differ diff --git a/examples/pynotepad/forms/document-open.png b/examples/pynotepad/forms/document-open.png new file mode 100644 index 00000000..4680e2be Binary files /dev/null and b/examples/pynotepad/forms/document-open.png differ diff --git a/examples/pynotepad/forms/document-save-as.png b/examples/pynotepad/forms/document-save-as.png new file mode 100644 index 00000000..a7120c13 Binary files /dev/null and b/examples/pynotepad/forms/document-save-as.png differ diff --git a/examples/pynotepad/forms/document-save.png b/examples/pynotepad/forms/document-save.png new file mode 100644 index 00000000..6be4df1e Binary files /dev/null and b/examples/pynotepad/forms/document-save.png differ diff --git a/examples/qidle/forms/main_window.ui b/examples/pynotepad/forms/main_window.ui similarity index 81% rename from examples/qidle/forms/main_window.ui rename to examples/pynotepad/forms/main_window.ui index 8e336bc1..4c311a21 100644 --- a/examples/qidle/forms/main_window.ui +++ b/examples/pynotepad/forms/main_window.ui @@ -11,7 +11,7 @@ - Qidle + pynotepad @@ -19,8 +19,23 @@ + + 0 + + + 0 + + + 0 + + + 0 + + + 0 + - + @@ -30,13 +45,18 @@ 0 0 847 - 20 + 27 File + + + Python interpreter + + @@ -45,9 +65,7 @@ - - - + @@ -116,6 +134,21 @@ + + + Structure + + + 1 + + + + + + + + + @@ -176,30 +209,6 @@ true - - - Close tab - - - true - - - - - Close other tabs - - - true - - - - - Close all tabs - - - true - - @@ -257,6 +266,16 @@ true + + + Python 2 + + + + + Python 3 + + @@ -265,9 +284,15 @@
pyqode.python.widgets
- TabWidget + SplittableCodeEditTabWidget QTabWidget -
pyqode.core.widgets.tabs
+
pyqode.core.widgets
+ 1 +
+ + OutlineTreeWidget + QWidget +
pyqode.core.widgets.outline
1
diff --git a/examples/pynotepad/forms/pyqode.png b/examples/pynotepad/forms/pyqode.png new file mode 100644 index 00000000..2008f921 Binary files /dev/null and b/examples/pynotepad/forms/pyqode.png differ diff --git a/examples/qidle/forms/resources.qrc b/examples/pynotepad/forms/resources.qrc similarity index 100% rename from examples/qidle/forms/resources.qrc rename to examples/pynotepad/forms/resources.qrc diff --git a/examples/pynotepad/freeze_setup.py b/examples/pynotepad/freeze_setup.py new file mode 100644 index 00000000..09aee11e --- /dev/null +++ b/examples/pynotepad/freeze_setup.py @@ -0,0 +1,78 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +This setup script build a frozen distribution of the application (with the +python interpreter and 3rd party libraries embedded) for Windows. + +Run the following command to freeze the app (the frozen executable can be +found in the bin folder:: + + python freeze_setup.py build + +""" +import os +import sys +from cx_Freeze import setup, Executable +import shutil +from pyqode.core.api.syntax_highlighter import get_all_styles +from pyqode.python.backend import server +from pynotepad import __version__ + + +# automatically build when run without arguments +if len(sys.argv) == 1: + sys.argv.append("build") + +# collect pygments styles +pygments_styles = [] +for s in get_all_styles(): + module = 'pygments.styles.%s' % s.replace('-', '_') + try: + __import__(module) + except ImportError: + pass + else: + pygments_styles.append(module) +print('pygment styles', pygments_styles) + + +# Build options +options = { + "excludes": ["PyQt5.uic.port_v3", "PySide", "tcltk", "jedi"], + "namespace_packages": ["pyqode"], + "include_msvcr": True, + "build_exe": "bin", + "includes": ["pkg_resources"] + pygments_styles +} + + +# Run the cxFreeze setup +setup(name="Notepad", + version=__version__, + options={"build_exe": options}, + executables=[ + Executable("pynotepad.py", targetName="PyNotepad.exe", + icon='share/qidle.ico', + base="Win32GUI"), + Executable(server.__file__, + targetName="server.exe")]) + + +# NOTE: if you are using PyQt5, you will have to copy libEGL.dll manually +try: + import PyQt5 +except ImportError: + pass # pyqt4 or pyqside +else: + shutil.copy(os.path.join(os.path.dirname(PyQt5.__file__), 'libEGL.dll'), 'bin') + + +# cx_freeze has some issues embedding the jedi package, let's do it ourself +import jedi +try: + shutil.copytree(os.path.dirname(jedi.__file__), 'bin/jedi') +except OSError: + pass + +# also copy server.py in order to be able to run on external interpreters +shutil.copy(server.__file__, 'bin') diff --git a/examples/pynotepad/freeze_setup_pyside.py b/examples/pynotepad/freeze_setup_pyside.py new file mode 100644 index 00000000..61bfcb3f --- /dev/null +++ b/examples/pynotepad/freeze_setup_pyside.py @@ -0,0 +1,79 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +""" +This setup script build a frozen distribution of the application (with the +python interpreter and 3rd party libraries embedded) for Windows. + +Run the following command to freeze the app (the frozen executable can be +found in the bin folder:: + + python freeze_setup.py build + +""" +import os +import sys +from cx_Freeze import setup, Executable +import shutil +from pyqode.core.api.syntax_highlighter import get_all_styles +from pyqode.python.backend import server +from pynotepad import __version__ + + +# automatically build when run without arguments +if len(sys.argv) == 1: + sys.argv.append("build") + +# collect pygments styles +pygments_styles = [] +for s in get_all_styles(): + module = 'pygments.styles.%s' % s.replace('-', '_') + try: + __import__(module) + except ImportError: + pass + else: + pygments_styles.append(module) +print('pygment styles', pygments_styles) + + +# Build options +options = { + "excludes": ["PyQt5.uic.port_v3", "tcltk", "jedi"], + "namespace_packages": ["pyqode"], + "include_msvcr": True, + "build_exe": "bin", + "includes": ["pkg_resources", "PySide.QtCore", 'PySide.QtGui', + 'PySide.QtNetwork', 'pydoc'] + pygments_styles +} + + +# Run the cxFreeze setup +setup(name="Notepad", + version=__version__, + options={"build_exe": options}, + executables=[ + Executable("pynotepad.py", targetName="PyNotepad.exe", + icon='share/qidle.ico', + base="Win32GUI"), + Executable(server.__file__.replace('.pyc', '.py'), + targetName="server.exe")]) + + +# NOTE: if you are using PyQt5, you will have to copy libEGL.dll manually +try: + import PyQt5 +except ImportError: + pass # pyqt4 or pyqside +else: + shutil.copy(os.path.join(os.path.dirname(PyQt5.__file__), 'libEGL.dll'), 'bin') + + +# cx_freeze has some issues embedding the jedi package, let's do it ourself +import jedi +try: + shutil.copytree(os.path.dirname(jedi.__file__), 'bin/jedi') +except OSError: + pass + +# also copy server.py in order to be able to run on external interpreters +shutil.copy(server.__file__, 'bin') diff --git a/examples/qidle/qidle.py b/examples/pynotepad/pynotepad.py similarity index 78% rename from examples/qidle/qidle.py rename to examples/pynotepad/pynotepad.py index b36dca6d..23c624c9 100644 --- a/examples/qidle/qidle.py +++ b/examples/pynotepad/pynotepad.py @@ -4,9 +4,9 @@ import sys filename = None if sys.platform == 'win32': - filename = 'qidle.log' + filename = 'pynotepad.log' logging.basicConfig(level=logging.INFO, filename=filename) -from qidle import main +from pynotepad import main if __name__ == '__main__': diff --git a/examples/qidle/qidle/__init__.py b/examples/pynotepad/pynotepad/__init__.py similarity index 82% rename from examples/qidle/qidle/__init__.py rename to examples/pynotepad/pynotepad/__init__.py index 876ad6c9..78748ea9 100644 --- a/examples/qidle/qidle/__init__.py +++ b/examples/pynotepad/pynotepad/__init__.py @@ -18,6 +18,9 @@ def main(): + if hasattr(sys, 'frozen'): + sys.stdout = open('pynotepad_stdout.txt', 'w') + sys.stderr = open('pynotepad_stderr.txt', 'w') app = QApplication(sys.argv) if not Settings().interpreter: Settings().interpreter = sys.executable diff --git a/examples/qidle/qidle/forms/__init__.py b/examples/pynotepad/pynotepad/forms/__init__.py similarity index 100% rename from examples/qidle/qidle/forms/__init__.py rename to examples/pynotepad/pynotepad/forms/__init__.py diff --git a/examples/qidle/qidle/forms/main_window_ui.py b/examples/pynotepad/pynotepad/forms/main_window_ui.py similarity index 79% rename from examples/qidle/qidle/forms/main_window_ui.py rename to examples/pynotepad/pynotepad/forms/main_window_ui.py index 5e1f2c2a..46502516 100644 --- a/examples/qidle/qidle/forms/main_window_ui.py +++ b/examples/pynotepad/pynotepad/forms/main_window_ui.py @@ -1,13 +1,13 @@ # -*- coding: utf-8 -*- -# Form implementation generated from reading ui file '/home/colin/Development/pyQode/python/examples/qidle/forms/main_window.ui' +# Form implementation generated from reading ui file '/home/colin/Documents/pyqode/python/examples/pynotepad/forms/main_window.ui' # -# Created: Mon Aug 11 13:13:55 2014 -# by: PyQt5 UI code generator 5.3.1 +# Created: Thu Feb 26 08:16:23 2015 +# by: PyQt5 UI code generator 5.4 # # WARNING! All changes made in this file will be lost! -from pyqode.core.qt import QtCore, QtGui, QtWidgets +from pyqode.qt import QtCore, QtGui, QtWidgets class Ui_MainWindow(object): def setupUi(self, MainWindow): @@ -19,16 +19,20 @@ def setupUi(self, MainWindow): self.centralwidget = QtWidgets.QWidget(MainWindow) self.centralwidget.setObjectName("centralwidget") self.gridLayout = QtWidgets.QGridLayout(self.centralwidget) + self.gridLayout.setContentsMargins(0, 0, 0, 0) + self.gridLayout.setHorizontalSpacing(0) self.gridLayout.setObjectName("gridLayout") - self.tabWidget = TabWidget(self.centralwidget) + self.tabWidget = SplittableCodeEditTabWidget(self.centralwidget) self.tabWidget.setObjectName("tabWidget") self.gridLayout.addWidget(self.tabWidget, 1, 0, 1, 1) MainWindow.setCentralWidget(self.centralwidget) self.menubar = QtWidgets.QMenuBar(MainWindow) - self.menubar.setGeometry(QtCore.QRect(0, 0, 847, 20)) + self.menubar.setGeometry(QtCore.QRect(0, 0, 847, 27)) self.menubar.setObjectName("menubar") self.menuFile = QtWidgets.QMenu(self.menubar) self.menuFile.setObjectName("menuFile") + self.menuPython_interpreter = QtWidgets.QMenu(self.menuFile) + self.menuPython_interpreter.setObjectName("menuPython_interpreter") self.menuEdit = QtWidgets.QMenu(self.menubar) self.menuEdit.setObjectName("menuEdit") self.menuModes = QtWidgets.QMenu(self.menubar) @@ -55,6 +59,17 @@ def setupUi(self, MainWindow): self.gridLayout_2.addWidget(self.interactiveConsole, 0, 0, 1, 1) self.dockWidget.setWidget(self.dockWidgetContents) MainWindow.addDockWidget(QtCore.Qt.DockWidgetArea(8), self.dockWidget) + self.dockWidgetOutline = QtWidgets.QDockWidget(MainWindow) + self.dockWidgetOutline.setObjectName("dockWidgetOutline") + self.dockWidgetContents_2 = QtWidgets.QWidget() + self.dockWidgetContents_2.setObjectName("dockWidgetContents_2") + self.gridLayout_3 = QtWidgets.QGridLayout(self.dockWidgetContents_2) + self.gridLayout_3.setObjectName("gridLayout_3") + self.widgetOutline = OutlineTreeWidget(self.dockWidgetContents_2) + self.widgetOutline.setObjectName("widgetOutline") + self.gridLayout_3.addWidget(self.widgetOutline, 0, 0, 1, 1) + self.dockWidgetOutline.setWidget(self.dockWidgetContents_2) + MainWindow.addDockWidget(QtCore.Qt.DockWidgetArea(1), self.dockWidgetOutline) self.actionNew = QtWidgets.QAction(MainWindow) icon1 = QtGui.QIcon() icon1.addPixmap(QtGui.QPixmap(":/icons/document-new.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) @@ -79,15 +94,6 @@ def setupUi(self, MainWindow): self.actionSave_as.setIcon(icon4) self.actionSave_as.setIconVisibleInMenu(True) self.actionSave_as.setObjectName("actionSave_as") - self.actionClose_tab = QtWidgets.QAction(MainWindow) - self.actionClose_tab.setIconVisibleInMenu(True) - self.actionClose_tab.setObjectName("actionClose_tab") - self.actionClose_other_tabs = QtWidgets.QAction(MainWindow) - self.actionClose_other_tabs.setIconVisibleInMenu(True) - self.actionClose_other_tabs.setObjectName("actionClose_other_tabs") - self.actionClose_all_tabs = QtWidgets.QAction(MainWindow) - self.actionClose_all_tabs.setIconVisibleInMenu(True) - self.actionClose_all_tabs.setObjectName("actionClose_all_tabs") self.actionQuit = QtWidgets.QAction(MainWindow) icon5 = QtGui.QIcon() icon5.addPixmap(QtGui.QPixmap(":/icons/close.png"), QtGui.QIcon.Normal, QtGui.QIcon.Off) @@ -112,6 +118,10 @@ def setupUi(self, MainWindow): self.actionConfigure_run.setIcon(icon8) self.actionConfigure_run.setIconVisibleInMenu(True) self.actionConfigure_run.setObjectName("actionConfigure_run") + self.actionPython_2 = QtWidgets.QAction(MainWindow) + self.actionPython_2.setObjectName("actionPython_2") + self.actionPython_3 = QtWidgets.QAction(MainWindow) + self.actionPython_3.setObjectName("actionPython_3") self.menuFile.addAction(self.actionNew) self.menuFile.addAction(self.actionOpen) self.menuFile.addAction(self.actionSave) @@ -120,9 +130,7 @@ def setupUi(self, MainWindow): self.menuFile.addAction(self.actionConfigure_run) self.menuFile.addAction(self.actionRun) self.menuFile.addSeparator() - self.menuFile.addAction(self.actionClose_tab) - self.menuFile.addAction(self.actionClose_other_tabs) - self.menuFile.addAction(self.actionClose_all_tabs) + self.menuFile.addAction(self.menuPython_interpreter.menuAction()) self.menuFile.addSeparator() self.menuFile.addAction(self.actionQuit) self.menu.addAction(self.actionAbout) @@ -145,8 +153,9 @@ def setupUi(self, MainWindow): def retranslateUi(self, MainWindow): _translate = QtCore.QCoreApplication.translate - MainWindow.setWindowTitle(_translate("MainWindow", "Qidle")) + MainWindow.setWindowTitle(_translate("MainWindow", "pynotepad")) self.menuFile.setTitle(_translate("MainWindow", "File")) + self.menuPython_interpreter.setTitle(_translate("MainWindow", "Python interpreter")) self.menuEdit.setTitle(_translate("MainWindow", "Edit")) self.menuModes.setTitle(_translate("MainWindow", "Modes")) self.menuPanels.setTitle(_translate("MainWindow", "Panels")) @@ -154,6 +163,7 @@ def retranslateUi(self, MainWindow): self.toolBar.setWindowTitle(_translate("MainWindow", "toolBar")) self.toolBar.setToolTip(_translate("MainWindow", "Configure run action for current editor")) self.dockWidget.setWindowTitle(_translate("MainWindow", "Run output")) + self.dockWidgetOutline.setWindowTitle(_translate("MainWindow", "Structure")) self.actionNew.setText(_translate("MainWindow", "New")) self.actionNew.setShortcut(_translate("MainWindow", "Ctrl+N")) self.actionOpen.setText(_translate("MainWindow", "Open")) @@ -162,9 +172,6 @@ def retranslateUi(self, MainWindow): self.actionSave.setShortcut(_translate("MainWindow", "Ctrl+S")) self.actionSave_as.setText(_translate("MainWindow", "Save as")) self.actionSave_as.setShortcut(_translate("MainWindow", "Ctrl+Shift+S")) - self.actionClose_tab.setText(_translate("MainWindow", "Close tab")) - self.actionClose_other_tabs.setText(_translate("MainWindow", "Close other tabs")) - self.actionClose_all_tabs.setText(_translate("MainWindow", "Close all tabs")) self.actionQuit.setText(_translate("MainWindow", "Quit")) self.actionQuit.setShortcut(_translate("MainWindow", "Ctrl+Q")) self.actionAbout.setText(_translate("MainWindow", "About")) @@ -172,7 +179,10 @@ def retranslateUi(self, MainWindow): self.actionRun.setText(_translate("MainWindow", "Run")) self.actionRun.setToolTip(_translate("MainWindow", "Run current script")) self.actionConfigure_run.setText(_translate("MainWindow", "Configure run")) + self.actionPython_2.setText(_translate("MainWindow", "Python 2")) + self.actionPython_3.setText(_translate("MainWindow", "Python 3")) from pyqode.python.widgets import PyInteractiveConsole -from pyqode.core.widgets.tabs import TabWidget +from pyqode.core.widgets.outline import OutlineTreeWidget +from pyqode.core.widgets import SplittableCodeEditTabWidget from . import resources_rc \ No newline at end of file diff --git a/examples/pynotepad/pynotepad/forms/resources_rc.py b/examples/pynotepad/pynotepad/forms/resources_rc.py new file mode 100644 index 00000000..dc8e484c --- /dev/null +++ b/examples/pynotepad/pynotepad/forms/resources_rc.py @@ -0,0 +1,3348 @@ +# -*- 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\x04\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\x03\x00\x00\x00\x44\xa4\x8a\xc6\ +\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\x7f\ +\x50\x4c\x54\x45\xff\xff\xff\x00\x00\x00\x18\x18\x18\x34\x34\x34\ +\x64\x64\x64\x58\x58\x58\x6d\x6d\x6d\x41\x41\x41\x7e\x7e\x7e\x9e\ +\x9e\x9e\xb1\xb1\xb1\xc6\xc6\xc6\xd5\xd5\xd5\xf0\xf0\xf0\x16\x16\ +\x16\x33\x33\x33\x31\x31\x31\x66\x66\x66\x5a\x5a\x5a\x89\x89\x89\ +\x9d\x9d\x9d\xb4\xb4\xb4\xd7\xd7\xd8\x19\x19\x18\x16\x17\x15\x00\ +\x00\x00\x2d\x2e\x2c\x81\x83\x7f\x3e\x40\x3d\x08\x08\x07\x29\x2a\ +\x28\x7e\x7f\x7c\x2d\x2e\x2c\x19\x19\x18\x32\x33\x32\x64\x66\x62\ +\x39\x3a\x38\x55\x55\x55\x3e\x3f\x3e\xa5\xa6\xa3\x57\x58\x55\x53\ +\x53\x53\x6d\x6d\x6d\x4c\x4d\x4b\x8a\x8b\x88\x61\x61\x5f\x59\x59\ +\x58\x57\x58\x57\x7e\x80\x7d\x75\x76\x75\x9f\x9e\x9f\x63\x64\x63\ +\xab\xac\xa9\x78\x7a\x77\x9b\x9b\x9a\xcb\xcb\xcc\x6f\x70\x6e\x95\ +\x96\x93\x88\x8a\x88\xca\xcb\xca\xf8\xf8\xf8\x7c\x7d\x7c\x82\x83\ +\x80\xad\xae\xac\xf6\xf6\xf6\x89\x89\x88\x85\x86\x84\xb2\xb3\xb1\ +\xf7\xf7\xf7\x95\x96\x95\x99\x9a\x98\x9f\xa0\x9e\xec\xec\xeb\xff\ +\xff\xff\xa2\xa2\xa1\x91\x93\x90\xd6\xd6\xd6\xff\xff\xff\xaf\xb0\ +\xae\x8f\x90\x8d\xbe\xbf\xbd\xfb\xfb\xfb\xb8\xb9\xb7\x95\x96\x94\ +\xa7\xa8\xa6\xf1\xf1\xf0\xff\xff\xff\xa3\xa4\xa2\x96\x98\x95\xde\ +\xde\xdd\xff\xff\xff\xb7\xb9\xb7\x8e\x8f\x8d\xc7\xc8\xc6\xfe\xfe\ +\xfe\xb8\xb9\xb8\x91\x92\x8f\xaf\xb0\xae\xf6\xf7\xf6\xb1\xb1\xaf\ +\xa0\xa1\xa0\xe5\xe6\xe5\xff\xff\xff\xd7\xd7\xd7\xce\xcf\xcd\xff\ +\xff\xff\xd5\xd6\xd5\xde\xdf\xdd\xcd\xcd\xcc\xd8\xd8\xd6\xe8\xe8\ +\xe7\xc2\xc3\xc1\xcd\xce\xcd\xc7\xc8\xc5\xc0\xc2\xbe\xde\xdf\xdc\ +\xe8\xe9\xe7\xcc\xcd\xcc\xcc\xcd\xca\xc3\xc4\xc1\xc5\xc6\xc3\xd0\ +\xd1\xce\xeb\xeb\xea\xd9\xda\xd9\xc6\xc7\xc4\xcb\xcc\xc9\xce\xce\ +\xcb\xcf\xcf\xcc\xdb\xdc\xda\xec\xed\xeb\xc3\xc4\xc2\xcc\xcd\xcb\ +\xd5\xd5\xd3\xca\xcb\xc8\xd1\xd2\xcf\xd4\xd5\xd2\xe2\xe3\xe1\xe9\ +\xe9\xe8\xcc\xcc\xcb\xd9\xd9\xd7\xce\xcf\xcc\xd1\xd1\xce\xd7\xd7\ +\xd5\xda\xda\xd8\xd8\xd9\xd7\xd2\xd2\xd0\xd5\xd6\xd3\xdc\xdd\xdb\ +\xcb\xcc\xcb\xdd\xdd\xdb\xd3\xd4\xd1\xd5\xd5\xd2\xd6\xd7\xd5\xda\ +\xdb\xd8\xde\xde\xdc\xdb\xdb\xd9\xd6\xd7\xd4\xd4\xd4\xd2\xdc\xdd\ +\xda\xee\xee\xed\xd0\xd0\xd0\xcb\xcb\xca\xe0\xe0\xde\xd7\xd8\xd5\ +\xd9\xd9\xd6\xdd\xde\xdb\xe1\xe2\xe0\xe1\xe1\xdf\xdc\xdc\xda\xd8\ +\xd8\xd5\xdf\xdf\xdc\xee\xee\xec\xd0\xd0\xcf\xca\xcb\xc9\xe2\xe3\ +\xe0\xdb\xdb\xd8\xe0\xe1\xde\xe3\xe3\xe1\xe4\xe5\xe2\xe4\xe4\xe2\ +\xe5\xe5\xe2\xf1\xf2\xf0\xdb\xdb\xda\xc9\xc9\xc8\xde\xde\xdb\xe2\ +\xe2\xe0\xe6\xe6\xe4\xe8\xe8\xe6\xf5\xf5\xf4\xed\xed\xed\xaa\xab\ +\xa9\xc8\xc9\xc8\xe5\xe5\xe3\xe4\xe4\xe1\xe6\xe6\xe3\xf2\xf2\xf0\ +\xf8\xf9\xf7\xc7\xc8\xc7\xe1\xe2\xdf\xea\xea\xe7\xf9\xf9\xf8\xd7\ +\xd7\xd6\xc7\xc7\xc6\xe2\xe2\xdf\xdd\xde\xdc\xf2\xf2\xf1\xe7\xe8\ +\xe6\xc6\xc6\xc5\xee\xef\xed\xb7\xb8\xb6\xd3\xd4\xd2\x74\x75\x72\ +\xff\xff\xff\xae\x8f\xcf\x2a\x00\x00\x00\x6a\x74\x52\x4e\x53\x00\ +\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\ +\x00\x00\x00\x00\x00\x00\x3e\x43\x01\x78\xfe\x93\x22\x6b\xe0\x6f\ +\x12\x6f\xc7\x53\x08\x73\xfb\xaa\x3a\x03\x77\xed\x8c\x27\x7a\xda\ +\x6f\x18\x7e\xfe\xc1\x56\x0c\x81\xf6\xa7\x3e\x04\x84\xf0\x93\x26\ +\x87\xf3\x96\x27\x8b\xf9\xaf\x45\x06\x8f\xcc\x63\x11\x92\xe4\x83\ +\x23\x95\xf4\xa4\x3a\x03\xfe\xc2\x57\x0c\x95\xdc\x77\x1b\x94\xee\ +\x97\x31\x9f\xb7\x4c\x07\x62\x70\x16\x97\x72\x60\x8b\x00\x00\x00\ +\x01\x62\x4b\x47\x44\x00\x88\x05\x1d\x48\x00\x00\x00\x09\x70\x48\ +\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\x01\x00\x9a\x9c\x18\x00\ +\x00\x01\x33\x49\x44\x41\x54\x38\xcb\x63\x60\x18\x56\x40\x5c\x42\ +\x92\x91\x91\x89\x99\x85\x95\x8d\x9d\x83\x93\x8b\x9b\x87\x17\x5d\ +\x81\x94\xb4\x8c\x2c\x23\x1f\x3f\x6e\x05\x72\x59\xd9\xf2\x0a\x8a\ +\x02\x82\x38\x15\x28\xe5\xe4\xe6\xe5\x2b\xab\xa8\x0a\xe1\x52\xa0\ +\x56\x50\x58\x54\x5c\xa2\xae\xa1\xa9\x85\x43\x81\x76\x69\x59\x79\ +\x45\x65\x55\xb5\x8e\xae\x9e\xb0\x08\x36\x05\xfa\x39\x95\x35\xb5\ +\x75\xf5\x0d\x8d\x4d\x06\x86\x46\xa2\x58\x14\x18\x37\xb7\xb4\xd6\ +\xb5\xb5\xb7\x57\x76\x74\x9a\x98\x9a\x99\x8b\x61\x28\xb0\xe8\xea\ +\xee\xe9\x6d\xef\xeb\x9f\x30\x71\x52\xe3\x64\x4b\x2b\x6b\x1b\x74\ +\x05\xb6\x53\xa6\x4e\x9b\x3e\x63\xe6\xd4\x59\xb3\xe7\xcc\x9d\x37\ +\x7f\x81\x9d\xbd\x03\x9a\x02\xc7\x85\x8b\x16\x2f\xe9\x5f\xba\x68\ +\xd9\xf2\x15\x2b\x57\xad\x5e\xe3\xe4\xec\x82\xa6\xc0\x75\xed\xba\ +\xf5\x53\x8b\x37\x6c\xdc\xb4\x79\xcb\xd6\x6d\x6e\xee\x1e\x9e\xe8\ +\x56\x78\x6d\xdf\xbc\x63\xd1\xce\xcd\xbb\x76\xef\xd9\xbb\xcf\xdb\ +\xc7\x17\x33\xb2\xfc\xf6\x1f\x58\xb5\xee\xe0\xa1\xc3\x47\xf2\xfd\ +\x03\x02\xb1\xc5\x66\xd0\xd1\xcd\xb3\x8e\x1d\x3f\x71\x32\x38\x24\ +\x34\x0c\x6b\x74\x07\x9d\x3a\x7d\xe6\xec\xb9\xf0\x88\xc8\x28\x1c\ +\xe9\x21\xfa\xfc\xea\x0b\x17\x63\x62\xe3\x18\x70\x81\xf8\x85\x97\ +\x12\x12\x93\x18\x70\x83\xe4\xcb\x29\xa9\x69\x78\xe4\x19\xd2\x33\ +\x32\x19\x86\x2f\x00\x00\x5e\x32\x65\xeb\x43\x41\x2e\x28\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x04\x5d\ +\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\x04\x00\x00\x00\xfd\x0b\x31\x0c\ +\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\x03\xea\x49\x44\ +\x41\x54\x58\xc3\xb5\x97\xbf\x8f\x1d\x35\x10\xc7\x3f\x63\xfb\x6d\ +\x0e\xc4\xa5\xe0\x40\x02\x24\x8a\x13\x48\x48\x04\x91\x5c\x81\xa8\ +\x93\x50\x45\xb4\x34\x14\x88\x9e\x7f\x82\x92\x9a\x9a\x12\x21\x68\ +\x82\x10\x15\x12\xd2\xa1\x14\xa1\x03\x51\x84\x48\x07\x22\x08\x08\ +\x48\x1c\xbf\x0a\x24\xee\x72\x6f\x3d\x14\x9e\xf5\xda\xde\xbd\x07\ +\xf7\xee\xb2\x4f\x6f\x3d\xbb\xb6\x67\xe6\x3b\xf3\x1d\xdb\x2b\xca\ +\xfd\xbd\xdc\x7d\xd6\x7f\xff\x0d\x84\xd4\xbc\xf0\xf1\xf2\x65\xc1\ +\xb1\xf5\xfb\x1f\x07\x20\xd6\xf9\xfa\xc3\xcf\x3d\xa0\xf4\x08\x81\ +\x8e\x05\x11\x10\x3c\x00\x91\xc8\x21\x47\x1c\x01\x9e\x2f\xde\xbd\ +\xfe\xb6\xff\x50\x00\x39\xcf\xa6\xee\xf9\xab\xbb\x3f\x25\x1d\x92\ +\x72\xb0\xa3\x09\xce\x23\xec\x9b\x7a\x01\x5e\xe3\x12\x00\x1d\x8e\ +\xc0\x82\x05\x01\x10\x14\xb8\xcd\x2d\x22\x91\x9e\xcb\xc0\x8d\xfe\ +\x13\x25\xa4\x59\x02\x70\xe7\xde\x95\xcf\xbf\x2f\x10\x94\x97\x22\ +\x76\x4f\xc6\x3d\x91\x73\x2c\x08\x74\x78\x3a\x40\x89\xec\xf1\x91\ +\xb9\xf2\x12\x3d\xea\xd5\x4c\xa7\x3f\xdb\xdd\x2e\xdb\x85\x01\xcd\ +\x7e\x0f\xac\x4a\x52\x44\x70\x04\xbc\x61\xf0\x08\x01\x25\xe2\xf2\ +\x2c\xcf\x12\xcd\xaa\x33\x2b\x9f\x68\x92\xac\xe8\x00\x0f\xb5\xff\ +\x20\x0b\x4b\x3c\x1e\xc1\xe1\x70\x78\x82\x4d\x54\xd4\x4c\x95\xb3\ +\x4a\xea\x87\x52\xcd\xd8\x31\xf8\xe2\x70\x74\x2c\xe8\xe8\xe8\x08\ +\x36\xdc\x65\xc4\x29\x84\x8e\x58\x79\x2f\x45\x7f\x41\xd3\x11\xc1\ +\x88\x28\xe2\x2d\x50\x82\xe0\xc0\xc2\x25\x88\x8d\x00\x87\x6f\xbc\ +\x2f\x23\xe0\x4a\x75\x9a\xa5\xe1\xad\xc7\xe1\x39\x97\xfd\x10\xa2\ +\x85\x49\x8a\x19\x42\x2c\xe6\x9a\x24\x8d\x81\x32\x4c\xa3\x09\xc1\ +\x13\x10\x1c\x1d\x82\xe6\xe8\xbb\x42\x55\xa0\x9f\x20\x18\x35\x84\ +\xd1\xdb\x21\x72\x5a\xc4\x50\x8c\x31\x1d\x0b\xbc\x25\x58\x2c\x68\ +\x9a\xdd\xf1\xc4\x2a\x93\x52\x38\x19\x4a\xf5\xb5\x34\xd2\x57\xe8\ +\x89\x05\x8b\x14\xb8\x84\x12\xe9\x59\xe2\x08\x33\xf4\x90\x39\x04\ +\x3d\xbe\x2a\xb4\xef\x78\xd1\x52\xea\x80\x1e\xa5\xa7\x63\x81\x72\ +\xc4\x33\x3c\x4d\xcf\x01\x70\x80\xf0\x73\x43\xf2\x82\x51\x49\xb8\ +\xa0\xa9\xfb\x51\x1e\x42\x2d\xa6\x91\xc8\x63\x3c\x68\x0c\xd2\x4c\ +\x4f\x25\xe6\xa4\x46\x04\xf8\x93\x5f\x32\xd6\x9c\xbd\xe5\xcd\x45\ +\x85\x20\xf9\xbc\xcf\x6f\x16\xfb\xf4\xdf\x6f\xa6\x8d\x3d\x52\x3d\ +\x55\xcb\x44\xc6\xb1\x82\xa6\xad\x54\x57\x8b\xae\x98\xa1\xd5\xe8\ +\x09\x4d\xff\xcf\xb4\x39\xe3\xff\x59\x68\xab\x07\xb7\x38\xe6\x8c\ +\x97\x52\x39\xb6\xca\x01\xc0\x0e\x5b\x33\xb1\x2e\x29\x5b\x5e\x52\ +\xdc\x01\x6e\xb3\x7f\x1c\x4d\xd3\xf5\x16\x57\x58\xe4\xa7\x68\x5e\ +\xc5\xec\x5f\xcc\x5e\xce\xf7\x1d\xf2\x1e\x9f\x56\x26\x8b\x1c\x00\ +\x5c\x24\xe4\xe1\xbd\xed\x58\xa9\x1d\xa5\x9e\x25\x4b\xfa\xa2\x1d\ +\x25\xcf\x4e\xb3\x58\x54\x85\x86\xed\xb7\x34\xde\xb5\x08\x56\xf5\ +\x49\xd6\x55\x19\xa8\xa9\x75\x32\x95\x53\xa9\x5c\x6c\x9a\x42\x4b\ +\x91\x3f\xe4\xb3\x82\x17\x53\xa6\xa4\x3a\xa7\xe9\xbb\xc0\xf9\x2c\ +\x4b\x4e\xc3\x64\x47\x8b\x28\x0b\xae\xae\xe1\x77\x6a\x99\x47\x50\ +\x2e\xd6\xeb\x44\xbe\x64\x58\xbd\x37\x36\xfb\x41\xb4\x61\xeb\x44\ +\xbe\x4d\xf4\x0c\x02\xce\x00\x41\x34\x3d\xb3\x08\x98\x20\x38\x89\ +\xdf\x43\x0e\xcc\xdd\x69\x92\x39\x13\x04\xad\xbe\x86\xa6\x43\xc1\ +\xdf\x98\x90\x70\x15\x41\xd3\x9b\x67\xd9\xcc\x01\xa2\x35\x30\xd0\ +\x34\x19\x08\x5c\x3e\x71\xa2\x63\x21\x1f\x9b\x64\x59\x3b\xf2\xd3\ +\x1c\x4c\x42\xa4\x05\x82\x75\x16\x89\xa1\xcd\x8c\x94\x99\x1c\x70\ +\x06\x08\xe2\x71\x85\x76\xfc\x32\x77\x52\x23\xf5\xb1\xa5\xf9\x3e\ +\x88\x6b\xfa\x5d\xe6\xa0\x3e\x5d\x34\x85\xc6\xa9\x11\xd4\xeb\x42\ +\x81\xe0\x29\x36\xb8\x93\x07\x1f\xcc\x2a\x58\xbd\x53\x04\x73\x6f\ +\x83\x27\x39\xe4\xc7\x3a\xc9\x8f\xf3\x0e\xf0\xbe\x0d\x3e\xe2\xeb\ +\x22\xa2\x65\x89\xd5\xa5\x35\xb6\x8a\xb2\x4d\x87\x12\x79\x95\x6b\ +\xc0\x1b\x35\x82\x60\xf7\x34\xd4\xf1\xfc\x09\x23\x5f\xb6\x69\xdb\ +\xf5\xb5\x81\x1f\x78\x93\x0d\xbe\xe4\xda\x29\x57\x22\x05\xae\xb3\ +\xc7\x01\x77\xdb\x1c\xec\xe6\xb3\xf1\xe9\x76\x03\xf8\x95\xdd\xe9\ +\x5a\xc4\x57\x5c\x54\xe0\x2e\x7d\x55\x0f\x30\xa6\xb7\x8e\x78\xfb\ +\x66\x90\xfe\x32\xfe\x84\x5b\x49\xb1\x28\xe2\x09\x5b\xdb\x1b\xaf\ +\xe8\x26\x4e\x1d\x4e\xd2\x57\x86\x53\x27\x1e\xe7\xbc\x0f\xea\xc4\ +\x21\x38\x6b\x95\x28\x91\xe8\x48\xad\x44\xb1\x96\xe8\x34\x3d\xfb\ +\xbf\xff\xf9\xe0\x9b\x6f\xb9\xc7\x52\xc6\x4f\x4f\xfb\x7c\x49\xdf\ +\x49\x0e\xdf\xfc\x1c\x01\x87\xb3\x5d\x29\xda\x89\x2b\x9d\xc3\xfa\ +\xe6\x84\x16\x89\x6a\x8a\xff\x05\x00\x96\x90\x2f\x23\x14\x6d\x71\ +\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0c\x90\ +\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\ +\x0c\x19\x49\x44\x41\x54\x68\xde\xe5\x9a\x6b\x6c\x55\xd7\x95\xc7\ +\x7f\x6b\xef\x73\x0c\x18\x9b\x84\x38\x09\xc9\x28\x75\x79\x19\x1b\ +\xf3\x34\x24\xbe\xd7\x74\x08\x90\x04\x1a\x51\x4d\xa5\xcc\x4c\x68\ +\x34\x55\x49\x8b\x48\x68\x49\x44\x0a\x01\x9c\x50\x18\x84\x52\x25\ +\x18\xdb\x98\x47\x2a\x95\x6f\x4d\xfb\xa5\x8a\x46\xaa\x34\x15\x95\ +\x46\x30\x31\x10\xc0\xbe\xee\x40\x79\x04\x42\x4c\xc2\xc3\xcd\x43\ +\x30\x40\x20\x80\x7d\xaf\xcf\x39\x7b\xcf\x87\x73\x1f\xc7\xc6\xd7\ +\x98\x84\x99\xd1\x68\xb6\xb4\x7d\xf6\xb5\xcf\xd9\xe7\xff\x5f\xeb\ +\xbf\xd7\xda\x7b\x5d\x8b\xb5\x96\xff\xcb\x4d\xfd\x6f\x03\xf8\x7f\ +\x4f\xc0\xb9\x1b\x93\x88\x88\x4c\x99\x1e\xfb\x8e\x55\x4c\x17\x6b\ +\x2a\x51\xaa\x52\xa0\x02\xc4\x15\x91\x2e\x51\x74\x8a\x95\x4e\x51\ +\x72\x42\x90\x7d\x88\xdd\xfb\xe7\x03\x07\x4e\xda\xbb\xa0\x5f\xf9\ +\x26\x73\x4c\x89\xc5\x46\x61\x78\x5e\x44\x9e\x17\x18\x89\x08\x22\ +\x82\x84\xac\x10\x01\x41\x7a\x8d\x49\xdf\x23\x97\x44\xec\x6f\x8c\ +\x52\x5b\x5b\x9b\x9b\x3f\xfd\x1f\x25\x30\x25\x16\x1b\x25\x56\x6d\ +\x13\xe1\x7b\x92\x46\x25\x22\x0c\x2d\x1c\xc2\xc8\x91\xa3\xb8\x6f\ +\xf8\xbd\x0c\x2b\x2e\xa6\xa8\xa8\x08\x04\x6e\xde\xbc\xc9\x8d\x1b\ +\x37\xf8\xf2\xea\x35\xce\x77\x74\x90\xec\xea\x0a\x49\x85\xde\xf3\ +\xad\xc8\xef\x5d\xa3\xeb\x9a\x9b\xff\xed\x83\xff\x56\x02\x0b\x16\ +\x2c\xd0\xa7\x3b\x3a\x96\x0b\x6a\x83\x08\x85\x82\x50\x3c\x6c\x18\ +\x8f\x4e\xab\x62\xec\x98\x31\x3c\x34\x62\x04\x22\x92\x9e\x19\x24\ +\xf7\x1a\x24\xf7\x81\x0b\x17\x2f\x72\xe6\xec\x39\x8e\x1e\x3d\xca\ +\xf5\x9b\x37\x90\xf0\xef\x9e\x15\x59\x3f\x67\xc6\x8c\xba\xf5\xeb\ +\xd7\x9b\xbb\x4e\xe0\xd1\x99\x33\x4b\xad\x6f\xfe\x20\xc2\x34\x11\ +\xa1\x64\xf8\x7d\xc4\x62\x8f\x51\x59\x31\x1e\xad\x75\x16\xad\x44\ +\x7f\x4a\xef\x71\x8e\x99\x00\x81\x31\xb4\xb7\xb7\x73\xe8\xf0\x61\ +\xbe\xbc\x7a\x2d\x94\x99\xc8\x1e\x1f\x7e\xd4\xfc\xa7\x3f\x0d\x48\ +\x56\x03\x22\x10\x8f\xcf\x2a\x0b\x74\xb0\x5b\x44\x4a\x95\x28\xaa\ +\xaa\xa6\x32\x23\x16\x43\x3b\x3a\x63\xdf\xdb\x02\xce\xde\xd7\x83\ +\x68\xb8\x1e\x82\x20\xe0\x3f\x0e\x1d\xe2\xf8\x07\x27\xb0\x58\x44\ +\xe4\xb2\x36\x66\xce\xce\x9d\x3b\x8f\x7f\x63\x02\x33\x66\xcc\x9a\ +\x14\x68\xb3\x4b\x44\x8d\x18\x5a\x58\xc8\x53\x4f\x3e\xc1\xc3\x0f\ +\x3d\x4c\x04\x6b\x2f\x60\xfd\x00\x16\xe9\x77\x7c\xf1\xe2\x45\xf6\ +\xed\x7f\x9f\xae\xae\x24\x22\x72\x41\x39\xc1\xcc\x3f\xfe\xcb\x1f\ +\x4f\x7f\x6d\x02\xf1\x39\x73\x1e\x11\x63\x8f\x08\x94\x0c\x2d\x2a\ +\xe2\xe9\x79\x73\x19\x56\x5c\x0c\x08\xc6\x04\x5c\xb9\x7c\x99\x92\ +\x92\xfb\x23\x9e\xe8\x29\x91\x2c\xc8\xc8\x02\xe8\x3d\xee\xea\xec\ +\x64\xf0\xe0\xc1\x28\xad\x11\xe0\xfa\x8d\x1b\xec\xd9\xb7\x97\xae\ +\xce\x2e\x10\xe9\x40\xeb\x99\xff\xfa\xee\xbb\x1d\xf9\x30\xe6\x4d\ +\x64\x22\x1b\x94\xb2\xfc\x4e\x2b\x55\x32\x6c\xd8\x30\xe6\x3d\xf9\ +\x04\x43\x06\x0f\xc1\xf3\x7d\x52\xa9\x24\xad\x07\x0f\x32\xe2\x81\ +\x07\x38\x78\x60\x3f\xc9\x64\x0a\xdf\xf7\xf1\x7c\x1f\xdf\xf7\x72\ +\x63\x2f\x3d\xf6\xbc\x9e\x63\xdf\xc7\xf7\x7d\x0e\x1f\x3a\xc4\x7f\ +\x5e\xb8\xc0\xbe\xbd\x7b\x49\x25\x93\x78\xbe\xc7\x90\xc1\x83\x99\ +\x35\xf3\x71\x8a\x8a\x8b\xd0\x4a\x95\x3a\xf0\x87\x05\x0b\x16\xe8\ +\x3b\x26\xf0\x9d\x39\x7b\x6b\x1d\xad\x67\x3b\xae\xc3\x8c\x78\x9c\ +\x82\x82\x02\x3c\xcf\xa3\x3b\x95\xe2\xcf\x89\x04\x4b\x5e\x7c\x91\ +\x45\x8b\x16\xf1\xd3\x25\x4b\x48\xb4\x1c\x24\x99\x4c\x66\x81\x47\ +\x41\xfa\xd1\x71\xe4\x77\x47\x8f\x1c\x61\xd2\x84\x09\xac\x5d\xbb\ +\x96\x17\x16\x2f\xe6\xc0\xfe\xfd\xa4\x92\x29\x7c\xdf\xa3\xa0\xc0\ +\xe5\xb1\xe9\xd3\x71\x5d\x07\xa5\xd5\x34\xab\xf5\xf2\x3b\x92\xd0\ +\x9c\xef\x7e\x77\xa2\x31\xe6\xb0\x20\xee\xa4\x89\x13\x19\xf9\xed\ +\x52\x00\x8c\x31\x1c\x3b\x72\x84\xa5\x4b\x97\x52\x13\x8f\x67\xef\ +\x4f\x24\x12\x6c\x7f\xfb\x6d\xaa\xa6\x4f\xc7\x71\x72\xc9\x3d\x9a\ +\xd4\xa2\x7a\x3f\xf5\xe1\x87\x4c\x9d\x3c\x99\xc5\x8b\x17\x67\xef\ +\x6d\x69\x6d\x65\xc7\x8e\x1d\x3c\x5a\xfd\x18\x8e\x76\x40\xe0\xb3\ +\xcf\x3f\xa7\xbd\xbd\x1d\x11\xe9\x34\x4a\x4f\x7c\xf7\xb7\xbf\x3d\ +\xdb\x1b\x6b\xdf\x5b\x09\x4b\xad\x56\xda\xbd\xbf\xe4\x3e\xfe\xe6\ +\xe1\x87\xf1\x3c\x0f\x63\x2d\x27\x8e\x1d\xe3\xe5\x97\x5e\xea\x01\ +\x1e\x20\x16\x8b\x01\xb0\x75\xdb\x36\xa6\x56\x55\xa1\x1d\xa7\x8f\ +\x88\x14\x2e\x8c\xd3\xa7\x3e\x62\x5a\x55\x55\x0f\xf0\x00\x35\xf1\ +\x38\x02\xfc\x7a\xc7\xaf\x99\x36\x7d\x3a\x5a\x3b\x3c\x34\x62\x04\ +\x97\x2f\x5d\xe2\xea\xb5\x6b\x85\x5a\xd8\x06\xfc\xdd\x6d\x25\x34\ +\x67\xfe\xfc\x47\xb4\x56\xcf\x69\xad\x18\x35\x6a\x14\x7e\x10\xba\ +\xfd\xca\xa5\x4b\xcc\x99\x3d\x9b\x9a\x9a\x9a\x3e\x39\xc7\x62\x31\ +\x96\x2d\x5b\xc6\x5f\x0e\x1f\x26\x95\x4a\xe1\xfb\x01\xbe\xef\x13\ +\x64\x64\x13\xf8\x7c\xf4\xe1\x29\xa6\x4e\x9d\x7a\x0b\xf8\x4c\x8b\ +\xc7\xe3\xcc\xfc\xdb\x99\x5c\xba\x74\x39\xfb\xde\xd2\xd2\x6f\xa1\ +\xb5\x42\x29\xf5\xbd\x85\x2f\x2c\x1c\x75\x5b\x02\x05\xf0\x8a\x52\ +\xda\x29\x29\x29\x61\xf0\xa0\x41\x59\x0d\x17\x16\x15\xb1\x6b\xf7\ +\x6e\x5a\x5a\x5a\xf2\xc9\x91\x78\x2c\xc6\xcf\x5f\x79\x85\x63\x47\ +\x8e\x90\x4a\xa5\x42\xf0\x81\x8f\xef\x07\xb4\x9f\x3a\x45\xd5\x94\ +\x29\xbc\xf8\xc2\x0b\x79\x9f\x6f\x6d\x6d\xe5\xbd\x3d\xcd\x14\x0f\ +\x2b\x26\xf0\x7d\x82\x20\x60\x50\xc1\x20\x86\x0f\x1f\x8e\xd6\x4a\ +\x34\xee\xf3\xfd\x12\x10\x11\x11\xad\x7f\xac\xb5\xe2\xa1\x07\x1f\ +\xc4\x0f\x02\x82\x20\x20\xf0\x7d\xac\x31\x8c\x2d\x1f\xc7\xe6\xa6\ +\x26\x5a\x5b\x5b\xf3\x82\x88\xc5\x62\xac\x58\xbe\x9c\xe3\xc7\x8e\ +\x92\xf2\xba\x09\x82\x80\x4f\x4e\x9f\x66\x5a\xd5\x34\x96\x2c\x59\ +\x92\xf7\xb9\x44\x22\xc1\xb6\xed\xdb\x98\x34\x79\x32\xd6\x5a\x82\ +\xc0\x84\xef\x36\x01\x0f\xdc\xff\x00\x4a\x29\x94\x92\xe7\x25\x1a\ +\x87\xe9\xb5\x88\x9f\xfe\xfe\xf7\x27\x68\x25\x1f\xb8\x8e\x4b\x79\ +\x79\x39\x3d\x92\x69\xb8\x83\xc4\x58\xc3\xc7\x1f\xb5\xb3\xf2\xd5\ +\x57\x89\xf7\x5a\x0b\x3d\x00\xb5\xb5\xd1\xd8\xd8\x48\xe1\xd0\x42\ +\xaa\x1f\x7d\x8c\xa5\x4b\x97\xf6\x6b\xf9\x2d\x5b\xb7\x32\x71\xf2\ +\x24\xb4\x56\x91\x85\x9f\x0b\x02\x67\xcf\x9d\xc1\x04\x06\x51\xcc\ +\xdc\xf1\xab\x1d\xfb\xfb\xf4\x40\x81\x52\xb3\x94\xd2\x14\x15\x17\ +\xe5\xdc\x1f\x04\x04\x7e\x90\xfd\x6c\x8d\x61\xf4\xd8\x31\x6c\x6a\ +\xa8\xa7\xa5\x3f\x4f\x54\x57\xb3\xf2\xd5\x57\xa9\x89\xc5\x6f\x0b\ +\x7e\x73\x53\x13\x15\x95\x15\x60\x43\xab\xfb\x81\x21\xf0\x03\x4c\ +\xda\x03\x26\xf0\x29\x1a\x5a\x84\xd2\x0a\x51\xce\xf4\xbc\x12\xc2\ +\xd1\x8f\x87\x16\x10\x3c\xdf\x0f\x81\x07\x3e\xbe\xc9\x4d\x1a\x04\ +\x01\xc6\x18\x46\x8d\x1e\x4d\x7d\x7d\x3d\xad\x89\xfc\x24\xaa\xab\ +\xab\x6f\x2b\x9b\xc6\xa6\xcd\x94\x8f\x2f\x07\xc0\x37\x21\x81\x0c\ +\xf0\x10\x7c\x80\x1f\x04\x00\x68\xa5\x70\x94\x54\xe6\x25\xe0\x28\ +\x3d\x41\x2b\x45\x67\x57\x27\x17\x2f\x5e\x20\xd5\x9d\x0a\x27\xf4\ +\xfd\x34\x91\xb4\x47\x8c\xc1\x58\x4b\xe9\xc8\x91\xd4\xd5\x6d\x22\ +\x91\x48\x70\xa7\x2d\x91\x48\x50\xdf\x50\x4f\xd9\xb8\x32\x80\x2c\ +\xd8\x9c\xd5\x0d\x26\x08\xe8\xf6\x3c\xae\x5c\xb9\x42\x2a\x95\x44\ +\x69\x8d\x52\x2a\x3f\x01\xa5\x55\xa1\x52\x0a\xad\x14\xc6\x18\xae\ +\x5c\xb9\x42\xe7\xcd\x9b\xf8\x41\xe8\x0d\xe3\x87\xee\x0c\x7c\x1f\ +\x13\x04\x58\x0c\x8f\x7c\xbb\x94\x37\x37\xbe\x75\x47\x24\xda\xda\ +\xda\xa8\xab\xdf\xc4\x98\xb2\xb1\x58\x6c\xda\xea\x26\x0d\x3e\x73\ +\xf5\xe9\xec\xea\xe2\xda\xb5\xab\x18\x13\x90\xc1\xa5\xb5\xae\xc8\ +\x4b\x40\x6b\x55\xa8\xb5\x46\x85\x71\x17\xa5\x14\x9d\xc9\x2e\xbe\ +\xfa\xea\x3a\x5d\xc9\xce\x74\x3c\x37\xa1\x7b\xd3\x11\x0a\x2c\xdf\ +\x2a\x4d\x93\x68\x6b\x1b\x10\xf8\x8d\x75\x1b\x19\x35\x7a\x24\x16\ +\x1b\x02\x37\x39\xc9\x04\x81\x4f\x57\x2a\xc9\xf5\xeb\xd7\x49\xa5\ +\x92\x88\x92\x10\xbc\xd6\x99\x7c\xe0\xf6\x50\x4d\x2f\x02\x43\xb0\ +\xe9\x73\x6d\x3a\x7b\x86\x87\x0c\xf0\xbc\x30\xb1\x38\x5a\x13\x92\ +\xd4\x28\x95\x8b\x18\x5a\x2b\x8e\x1e\x3d\x4a\xac\xba\xfa\xb6\x24\ +\xac\x0d\x81\x8b\x04\x88\x08\x99\x48\x68\x8c\xc1\x18\x83\x48\x08\ +\x3a\x9c\x3a\x8a\x45\x10\xa1\x2b\xbf\x84\x44\x7b\x5a\x87\xae\x0a\ +\x59\x2b\xb4\xd2\x91\xb1\xc2\x12\x9e\xa4\x7c\xcf\xa3\xbb\xbb\x1b\ +\xcf\xf7\xf8\xeb\xf9\x0e\xe6\x3f\x3d\xbf\xdf\x24\x95\x69\xd5\xd5\ +\xd5\xbc\xfe\xda\xeb\x9c\xf9\xe4\x0c\xdd\x5e\x37\x9e\xe7\xa5\x03\ +\x43\x7a\xa1\x6a\xdd\xf3\xfd\x5a\xa1\x94\x26\x82\xab\xb3\x1f\x09\ +\xc9\x29\xa5\x14\x4a\xab\xdc\x44\x3a\x07\x5e\xe9\xc8\x44\x5a\xa1\ +\x44\xf8\xe2\xb3\x2f\xf8\xc7\xbf\xff\x87\xbc\xdb\x83\x7c\x24\xd6\ +\xbc\xbe\x86\x8e\x73\x1d\x88\x90\x96\x6b\x56\x22\x91\x77\xf6\x34\ +\x9e\x0a\x7f\xd7\x0f\x01\xa5\x4f\x46\x2d\xa0\xb2\x63\x9d\x7e\x38\ +\x3d\x69\x7a\xf2\x2f\x3e\xfb\x9c\x1f\xfe\xd3\x0f\x59\xb8\x70\xe1\ +\x80\xc1\x67\x5a\x2c\x16\xe3\xb5\xd5\xaf\x71\xfe\x6c\x48\xa2\x2f\ +\xaf\xab\x88\x1a\xb2\x58\x1c\x75\x22\xbf\x84\xb4\x3e\xa9\x23\x37\ +\xeb\xc8\x24\x19\xe0\x4a\x85\x96\xff\xec\xaf\x9f\xb2\xe8\x27\x8b\ +\x78\xee\x07\x3f\xc8\x0b\xb2\xad\xad\x8d\xb6\x7e\x16\x76\x3c\x1e\ +\x67\xd5\xaa\x55\x9c\xf9\xf8\x2c\x08\x3d\xbd\xae\x22\x5e\x8f\x8c\ +\x1d\xa5\xf6\xf5\x27\xa1\x43\x2a\x2a\x91\xb4\x35\xb4\xce\x4d\x2a\ +\x02\x9f\x76\x7c\xca\x92\x17\x97\xf0\xcc\x33\xcf\xf4\x0b\xfe\xad\ +\x8d\x6f\xb1\xb1\xee\xad\x7e\x49\xd4\xc4\x6b\x58\xbd\x6a\x35\x9f\ +\x9c\xfe\x24\x63\xc4\x4c\xb8\xcc\x11\x89\x8c\x15\xec\x8d\x3e\xdf\ +\x63\x2f\x24\x22\xf2\xb3\x97\x7e\x76\x06\x25\x23\x25\x53\xcb\xc9\ +\x15\xa0\xb0\xd6\x72\xfe\xdc\x79\x5e\x5e\xfa\x32\xf3\xe6\xcd\xcb\ +\x0b\x2a\x91\x48\x50\xb7\x69\x23\xa3\xc7\x8e\x06\x84\x33\x1f\x9f\ +\xa1\x76\x75\x6d\xf6\xdc\xd0\x57\x6b\x6d\x6d\xa5\x71\x73\x23\xe3\ +\x2b\xcb\xc3\x2d\x03\x7d\x44\x43\xe4\xd2\x2f\xd6\xfc\xf3\x83\x40\ +\x16\x74\x0f\x0f\x58\x6b\xad\x76\xf5\x3b\x3a\xad\xc5\xa8\x35\x00\ +\xce\x9f\x3b\xcf\x8a\x9f\xaf\xe8\x17\x7c\x6b\xa2\x95\x4d\xf5\x75\ +\x94\x8d\x2b\xc3\x75\x5d\x0a\x0a\x5c\xca\x2b\xca\xa8\x6f\xa8\xef\ +\x37\xd9\xc5\xe3\x71\x56\x2c\x5f\xc1\x47\xa7\xda\x11\x24\xeb\xf5\ +\xcc\xba\x08\xd7\xa1\xfc\x26\x0a\xfe\x16\x02\x00\x38\xbc\xa3\xb5\ +\xb6\xb9\xcc\x17\x4e\x92\x4c\x26\x99\xff\xf4\x7c\x66\xcf\x9e\xdd\ +\x8f\x15\x5b\x68\xa8\xaf\x67\x5c\x79\x19\x8e\xeb\x64\xb5\xeb\xb8\ +\x2e\x15\xe3\xc7\xd1\xd0\xd8\xd0\xef\x56\xbc\xa6\xa6\x86\xb9\x4f\ +\xcd\xe3\xc6\x8d\x1b\xd1\xcc\x9b\x21\xe1\x6b\x19\xb4\xb5\xf7\x33\ +\xb7\x10\xd8\x5e\xbf\xfd\xac\x12\xb5\x33\x1b\xd2\xd2\x6b\xa0\xb8\ +\xb8\x98\x5d\xbb\x77\x71\xe0\xe0\x81\xbc\x12\x68\x68\x6c\x60\xdc\ +\xf8\x71\x59\xf0\x2a\xa2\x5d\xd7\x75\x19\x3f\xa1\x82\xcd\x4d\x8d\ +\x79\x49\xb4\xb4\xb4\xf0\x5e\xf3\xbf\x33\x7c\xf8\xbd\x59\xe0\x92\ +\x2e\x18\x03\xbf\x5f\xbd\x7a\xf5\x2d\xd5\xba\x3e\xab\x12\x5a\xf4\ +\x32\xa5\x74\x67\x34\x91\xb8\xae\xc3\xd8\xb2\x31\x34\x6d\x69\xe2\ +\xe0\xc1\x83\x7d\xe8\xb7\x81\x8a\xf1\x15\xb8\x8e\x13\x09\xb5\x3d\ +\xa3\x57\x81\xeb\x30\x61\x52\x25\x5b\xb6\xde\x7a\x28\x6a\x69\x69\ +\xe1\xed\x5f\x6d\x67\xd2\xe4\x09\x59\xc9\x46\x9a\x17\x08\x75\x7d\ +\x61\xed\x93\x40\x7d\x7d\xfd\x59\xad\xf4\xfa\xde\x89\xc4\x71\x1d\ +\xc6\x95\x97\xb1\x65\x6b\x8e\x44\x4b\x4b\x0b\x9b\x9b\x1a\x19\x3f\ +\xa1\x02\xd7\x75\x22\x11\x2b\x97\x98\x74\x44\xc7\x05\xae\xcb\xe4\ +\x29\x13\xd9\xba\x6d\x0b\xad\xad\x2d\x3d\xc0\x4f\x9c\x54\x99\xdd\ +\x42\x44\x9b\x58\xd6\xaf\x59\xb9\xa6\xcf\xca\x75\xde\xca\xdc\x82\ +\x05\x0b\x74\x59\xf9\xd8\xb6\x4c\x31\x37\x1a\x8d\x8c\x35\xb4\x9f\ +\x3a\xcd\xdc\xa7\xe6\xb2\x6b\xf7\x2e\xc6\x57\x56\xa0\xb5\x4a\xdf\ +\x23\xa8\xf4\x06\x2c\xe3\xfe\xe8\x7e\x27\xba\xef\x39\x7e\xec\x04\ +\x4f\x3c\xf1\x24\xcd\xcd\xef\xe5\x05\x0f\xb2\x27\xd9\xd9\xfd\x64\ +\xbe\x8a\x75\xbf\xa5\xc5\x0d\x1b\x5e\x2b\x0d\x70\xdf\x17\xa1\xb4\ +\xd7\x97\x13\x58\x6b\xf8\xea\xab\xeb\xdc\x73\xcf\x30\x1c\xc7\x41\ +\x6b\x27\xdc\xe8\x39\x3a\xbb\x76\x94\x0a\x8f\x85\x60\xb1\x16\xac\ +\x35\x98\xc0\x84\x5b\x66\x13\xe0\x79\x1e\x57\xbf\xbc\xca\x3d\xf7\ +\xde\x93\x07\x3c\x97\xc5\x3a\x53\xfb\xd2\xfe\x80\x08\x00\xfc\xf2\ +\x97\xeb\xca\x0c\xce\xfb\x88\x1d\xd1\x33\x37\x84\x63\xed\x38\x38\ +\xda\xc1\x75\x9d\x2c\x91\x6c\xd8\x4b\xef\x56\x2d\x99\x9d\x66\x90\ +\x3e\xac\x87\x15\x07\x3f\x5d\x79\x08\xd2\x27\xae\x5e\xed\x02\x26\ +\x98\x5b\x5b\xbb\xae\xdf\x0a\xf5\x80\xca\xeb\x6f\xbc\xf1\xc6\x24\ +\xe5\xd8\x66\x11\x29\xc9\x6d\xb1\x43\x69\xb8\xae\x8b\x93\x26\xa1\ +\x9d\x90\x44\xf8\x59\xa3\xd3\x0b\x3a\x30\x99\x33\x75\x90\x2d\x2f\ +\xe6\x4a\x2e\x61\x29\xb2\x57\xeb\x50\x98\xa7\x56\xad\x5a\x7b\xfa\ +\x76\xd8\x06\xf4\x2d\xe5\xba\x75\xeb\x8e\xbb\xda\x4e\x55\x5a\xed\ +\xc9\x2c\xcc\x4c\x75\xc3\x5a\x8b\x35\x16\x63\x0d\x36\x6b\xe5\xf0\ +\x1c\xeb\x79\x1e\xa9\xee\x54\x58\x2b\x0d\x82\xec\xb6\xd9\x1a\x93\ +\xbe\xdf\xf6\x65\xfd\xc3\x18\x3d\x73\x20\xe0\x07\xec\x81\x4c\xdb\ +\xb0\x61\x83\x1a\x32\xc4\xad\xb5\xc2\x06\x20\x7b\x32\x0a\x23\x95\ +\x83\xe3\xe8\x30\x6f\x28\x85\x64\x17\x31\x69\xfd\x5b\xac\x09\xf5\ +\x1f\xca\x27\x2c\x98\x45\x5a\x27\xc8\xfa\xd1\x23\xc7\x36\x3d\xfb\ +\xec\xb3\xc1\x40\x31\x7d\xad\x2f\xf9\xde\x6c\x78\x73\xa2\xb6\xd4\ +\x02\xcf\xd1\xeb\x54\x17\x8d\x3c\x39\x2f\x41\xb8\x90\x2d\xc6\xdc\ +\x12\x4c\xac\xc5\xee\x74\xc4\x2e\x5b\xb9\x72\xed\xd9\x01\xbc\xfe\ +\x9b\x13\xc8\xb4\x4d\x9b\x36\x3d\x62\xc5\x7b\x05\xe4\xc7\xc0\xfd\ +\x77\xf8\xf8\x39\x6b\x79\xc7\x51\xe6\x9d\xaf\x03\xfc\xae\x10\x88\ +\xce\x53\x57\xf7\x46\xa5\x88\x9a\x85\xa8\xc7\xc1\x4e\xb0\x50\x08\ +\xb6\x10\x64\x08\xe0\x21\x9c\x12\xcb\x49\x0b\x27\x31\xf6\x50\x6d\ +\xed\x2f\x0e\xd0\x6b\x63\x76\x57\x08\xa4\xdd\xee\x00\xfa\x36\x5d\ +\xa5\x7b\x66\x2c\x91\x6b\xa6\xf7\x6e\x36\xd2\x4d\xe4\x1a\xf4\x71\ +\xcd\xd7\xfd\x1e\x47\x00\x6b\x2d\x22\xa2\xd3\xa0\xdd\xf4\xf5\x6e\ +\x75\x0d\xd9\x54\xe0\x67\x00\xdc\x85\xee\x01\xdd\x80\x9f\xcf\x03\ +\xaa\x8f\x1e\xb5\x7c\x5f\x1e\x71\xfa\xb8\x27\x13\xa6\xcd\x1d\x58\ +\xb8\xb7\x37\x7a\x8c\x7b\xff\x7f\xc5\x7f\x01\x62\xb8\xee\x1f\x83\ +\x08\xbe\x0d\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x06\x91\ +\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\ +\x06\x1a\x49\x44\x41\x54\x68\xde\xe5\x59\x3b\x8c\x1c\x45\x10\x7d\ +\xaf\xba\x7b\x96\x33\xc7\x49\x18\x23\x40\x20\x10\x3f\x41\x40\x06\ +\x96\x48\x2d\x24\x3e\xce\x40\x22\x86\xc8\x11\x01\x01\x82\x8c\x80\ +\x90\x00\xf1\x11\x89\x13\x90\x90\x20\x85\x80\x00\x10\x21\x12\xc8\ +\x29\x19\x60\x8b\x93\x41\x48\xb6\xc5\xed\xde\xf9\xce\xbb\x33\x5d\ +\x45\xb0\x33\xbb\xb3\x33\x3d\xbb\xb3\xe6\xfc\x41\x94\x74\x37\x33\ +\x35\xbd\xd3\xef\x55\xbd\xae\xee\xe9\xa1\x99\xe1\xbf\x6c\x72\xa3\ +\x01\xfc\xef\x09\xf8\xbe\x0d\x49\xf2\x3a\x12\x56\xeb\xa9\xed\x5e\ +\x04\x48\xca\xa9\x53\xa7\xee\x3b\x7e\xfc\xf8\x23\x79\x9e\x0b\x00\ +\xa8\x2a\x0f\x1b\xb5\x88\x58\x08\x41\xcf\x9c\x39\xf3\x2b\xc9\xf3\ +\x66\xa6\x87\x42\x00\xc0\xc6\x89\x13\x27\x5e\x39\x79\xf2\xe4\x3b\ +\x25\xa1\x8a\xd8\xec\xbc\x46\x36\x79\x6c\x9e\xa7\xae\x2b\xdb\xda\ +\xda\x7a\xfb\xf4\xe9\xd3\xef\x01\xb8\x7c\x58\x04\x98\xe7\xf9\x86\ +\xaa\x76\x76\xda\xe5\xef\x7c\xe0\x92\xf6\xe3\xf1\x78\x03\x40\xaf\ +\x07\xb6\x08\x7c\xf0\xcd\xce\x27\x47\x06\xf6\x4c\xfd\xde\x87\x5f\ +\x6f\xb3\x98\x6c\x6f\xd6\x23\xbe\xec\x7c\xd9\xf1\x6a\x09\xf7\x22\ +\xf0\xce\x57\x3b\x2f\x3c\x7e\x97\xbe\xea\xdc\x62\xa3\x03\x1a\x9c\ +\x11\xd7\x8b\x80\x99\xf1\xaa\x32\x50\x98\xde\xab\x30\x68\x5c\x6c\ +\x94\x47\x03\xcd\x5a\x80\xaf\x96\xc0\x61\x45\xbf\x45\x40\x15\x28\ +\x62\xbb\x7a\xc5\x68\x50\x9d\x77\x9e\x02\x7f\x98\x04\xc6\xb7\x3e\ +\xf8\xda\xbb\x5f\x9e\x7b\xf5\xa3\xef\x2e\x2d\x80\x19\xe7\x38\x7b\ +\xee\xf2\x1d\xcf\x7f\xfc\x32\xf6\x3a\x09\xe4\x09\x02\x79\x34\xf8\ +\x32\x03\xab\xa2\xbf\xae\x94\x9a\x46\x12\xc1\x73\x73\x73\x60\x9b\ +\xb7\x0c\x16\xab\xe8\xe6\x00\xf7\xec\xec\x5f\x7c\x11\x38\xf6\x59\ +\x9a\x00\x34\x99\x81\xa2\xcc\x40\x9f\xe8\xf7\x05\xde\x35\x4f\x99\ +\xd9\x4c\x09\x49\x35\x18\xb3\xfa\xf5\xe2\x18\x58\x92\x01\xad\x65\ +\xa0\x09\xbe\x0f\x81\x3a\xe8\xe6\xb1\x69\x6a\x86\x3c\x1a\x5c\x02\ +\xcb\x44\x35\x74\x12\xe8\x92\x50\xa1\x06\xad\xb9\xd7\x91\x52\x05\ +\xb4\xfa\xeb\x47\x60\xda\x67\x0a\x4b\x73\x01\xb0\x48\x20\x62\x89\ +\x84\xda\x63\x60\xd5\x40\xae\x03\xaf\x83\xae\x03\x4f\x91\x50\x35\ +\x14\x48\x67\x40\x1b\x8b\x8b\x05\x02\x11\xda\x2d\xa1\x15\x91\xef\ +\x8a\xba\x96\x3d\xae\x93\x05\xb5\x69\x9f\x92\xc0\x62\xc6\x05\x67\ +\x5b\x42\x45\x7b\xfd\x94\x17\x8a\x28\xd6\x1a\x88\x29\xf0\xcd\xa8\ +\xa7\xfe\x56\x11\x88\x6a\xc8\x55\x21\x09\x2c\x31\x5a\x37\x01\x5b\ +\x36\x0f\xc0\x92\xa0\x97\x81\x57\xd5\xab\x92\x91\xaa\x21\x76\x54\ +\xa1\xa5\x12\x2a\xb4\x4b\x42\x80\x0a\x3a\x81\x37\xc1\xa7\x80\xaf\ +\x93\x85\xa9\x84\x00\xa6\x82\xb9\x50\x4e\x7a\xce\xc4\xd3\x2a\x94\ +\xae\x18\xcd\xe8\xd7\xc1\x2f\x23\xd2\x04\x5e\x9d\x93\x84\x9a\xa1\ +\xd0\x8e\x31\xd0\x58\xe6\x34\x06\xf1\x92\x79\x40\xbb\x33\x50\x01\ +\xed\x02\xdf\x24\x92\x92\x51\x9d\x48\x55\xce\x53\x19\x68\x8e\x8a\ +\x05\x02\x79\xa1\x83\x03\x26\x08\x14\xc4\x65\xef\xf1\xe7\x4e\xd1\ +\xaa\x3e\xab\xa4\x53\xf7\x35\xa5\x96\x92\x0f\x00\x5c\x8e\x1e\x57\ +\x0a\x22\xe6\xed\x7b\xe3\xa8\x0b\x33\x31\x9f\x7c\xeb\xa7\xe7\x40\ +\xbe\x44\x23\x9d\xc3\x43\xde\xf3\x99\x76\xda\x22\x8e\xb8\x09\x1e\ +\xbc\xf7\xe8\xfc\x87\xd5\xbd\x29\x8a\xd9\xb1\xed\x9b\xfe\x33\x58\ +\x79\x5e\x1d\x2a\x02\x2d\x8c\xf8\xe3\xc2\x1e\xf6\x63\x06\x36\xd7\ +\xf5\x00\x8a\xc2\xbe\x8f\x11\x67\x8d\x66\x00\xbe\xe4\x9b\x9f\xff\ +\x7e\xfe\xa9\x87\x6e\xdb\x2a\xbb\x71\xaa\x38\xd2\x22\x00\x83\xc0\ +\x90\x05\xb7\x00\x7e\x0e\x23\x61\xb6\xda\xd9\xf5\xdb\xbc\x50\x28\ +\x08\x26\x5e\x09\x44\xb0\x4f\x30\x02\xc0\x99\xdf\x76\x47\xfe\xec\ +\x85\x38\x3e\xbf\xb3\x5b\x2d\x4f\x33\xc2\xda\x04\xcc\xe0\x45\xb1\ +\xb9\x31\x48\x82\xb2\xf9\x69\x0b\x9e\xb5\xfc\x2b\xa9\x63\x7f\x5c\ +\xa0\x30\x49\x12\x30\xf0\x00\xc0\x04\x00\x26\x79\x1c\xfb\xcc\x87\ +\x51\xe6\xdd\xc6\xb2\x07\x9b\x19\x3c\x15\xc1\x27\x5e\xa1\x1b\xa0\ +\x6d\x2d\x7f\xda\x82\x23\x68\xd2\xb1\xf4\xae\xf9\x4c\x46\x3e\xcb\ +\xb2\x61\xe6\xdd\x5d\xb3\x8e\x3a\x2a\x83\x17\x45\xe6\xb3\xe6\x9d\ +\x35\x01\x5b\x1b\xbf\xb5\x2f\x25\x07\x32\x3a\x20\x41\x60\x4a\xaa\ +\xf4\x33\x0e\x7d\xe6\xfd\x28\x0b\xbe\x02\xca\xd4\x56\x8c\x99\x21\ +\x88\x21\x04\xdf\xd1\xb9\xa5\xd4\xd3\xbe\x63\x35\x9f\xd5\xee\xd9\ +\x1c\xd3\xfe\xb8\x80\x0f\x83\x25\xbb\x1f\xc2\xf9\x3d\x8e\x7c\x96\ +\xf9\x61\xe6\xe7\x04\x54\x53\x7b\x49\x53\x09\x65\x35\x09\xd5\x2b\ +\xc9\x22\xb8\xd6\x45\xad\xd5\xbc\x74\xc6\x18\x21\xe2\x40\x0a\xc8\ +\xe9\x5c\x72\x30\x8e\x10\x97\xc1\xb1\x7b\x03\x50\xa4\x46\x80\x18\ +\xfa\x41\x70\xa3\xe0\xca\x09\xc9\xc0\xe4\x86\x9b\x19\xbc\x10\xc1\ +\x37\xea\x8f\x31\x35\x62\x12\xfe\x2a\xe2\xd5\xac\x0d\x78\x71\x08\ +\x21\x40\x55\xa1\x1a\x71\x25\x57\x50\x04\x19\x25\x29\x9d\x39\x01\ +\x52\x66\x73\x91\x1b\xf9\xcc\xcb\xd0\x97\xe5\x56\x15\x88\x89\x89\ +\x0c\x06\x04\x01\x2a\x05\x25\x57\x15\x86\xa4\xbe\x53\x4d\xab\x77\ +\x0b\x11\x05\x4c\x91\x6b\x84\x92\x08\x41\xe6\x3f\xec\x30\x27\x80\ +\x94\xcd\x48\x19\xfa\xe0\x31\x9c\x65\x40\x8d\x45\x4c\xb3\x0f\x32\ +\xad\x0e\xf3\x0e\x98\x28\x91\xa5\x3f\xe5\x9b\xb5\x35\x44\x00\xde\ +\xcb\xf4\xc5\xc5\x22\x14\x9c\xcd\x31\xab\xcc\x3b\x50\xa4\xca\x80\ +\x0d\xfd\x20\xc8\x6e\x95\x81\xa8\x24\x25\x25\xa1\x92\x40\x60\x32\ +\x40\xf3\x59\x98\x09\x7f\xa3\xad\x01\xce\x11\x24\x50\xc4\x88\x08\ +\x22\x0b\xcb\x65\xb3\x48\x80\x74\x25\x46\x11\xee\xfa\x81\xe7\x4e\ +\x35\x63\x17\x31\x3d\xfb\xc1\x80\xe0\x80\x6c\x16\x24\x76\xd6\xf5\ +\x45\xbf\xb5\xda\x1a\x00\x33\xc1\x78\x12\xa1\x10\x64\xa1\xf7\x26\ +\x5c\x45\x00\xbe\x54\x82\x23\x76\xfc\x20\xd8\x5f\x65\x4e\x6c\x3a\ +\xbc\xbb\x25\xe4\xeb\x83\xb8\x55\x2a\x99\xf0\x23\xe9\x3b\x18\x47\ +\x44\x48\xf9\xbc\xf5\x76\xe9\x82\x27\x4b\x02\xf4\xa2\x7f\x79\x9f\ +\xf9\x73\x0e\x26\x00\x22\xbb\xf2\x68\x04\x61\xc8\xf3\x62\xc9\xa3\ +\xfb\x7d\x6b\xcb\x0b\x83\x42\xe6\x72\x5c\xd3\x82\x23\xcb\x6a\x28\ +\x11\xfe\x9c\xdf\x7b\x8c\xdb\x77\xfe\x36\x0b\x04\xbb\x26\x10\x83\ +\x43\xb1\xf4\xa3\x49\x3f\x40\xf4\x44\xb6\x66\xd4\xeb\xe6\x1d\x98\ +\x05\x02\x06\x5c\x78\x98\xdb\xfe\x8d\xa3\x12\xbf\xd8\xd6\x3d\x03\ +\x36\xd4\xba\x25\xb4\x0e\xc8\x6b\x69\xde\x4f\x33\x40\x60\xef\x8d\ +\xa3\x12\x3d\x00\x64\x1e\x43\x03\x36\x62\x34\x61\xef\xaf\x66\x37\ +\xc6\x9c\x98\x64\x1e\x20\x30\x04\xca\x37\xb2\x81\xc7\x48\xc1\xbb\ +\xf3\x02\x4e\x6e\x7c\x90\x97\x9a\x08\x5c\xe6\x09\x81\x8d\x66\x04\ +\x26\xca\xd1\x95\xc2\xb8\x77\x10\x5d\x8f\xef\x6a\x37\xd4\x48\x71\ +\x26\x9e\xb7\x78\x4e\x09\x90\xe4\xa7\x3f\x5c\xbc\xb4\xab\x83\xad\ +\xbd\x83\xc9\x7f\xe1\xbb\xb1\x4c\x62\xdc\xba\x4d\xc6\x97\xc8\x63\ +\x24\x00\x07\xe0\xd1\x27\x9e\x7e\xf6\xf5\xcd\xdb\xef\xbc\xcf\x60\ +\x02\xeb\x57\x12\xaf\xbb\x91\x20\xa8\x7b\x7f\x5f\x38\xff\xf3\x8f\ +\xdf\xbe\x0f\xe0\x17\xda\x74\xdb\x3c\x03\xf0\x00\x80\xfb\x01\x1c\ +\x03\x10\xfe\x4d\x3f\xd7\xd0\x72\x00\x17\x01\x6c\x03\xf8\xdd\xcc\ +\x26\xac\x6d\x28\x09\xa6\x63\xe2\x66\x97\x91\x02\x28\xaa\x8f\xe0\ +\xb4\x9b\x55\x2e\x3d\xed\x66\x8f\xf6\x4a\xfb\x07\x22\xa6\x3f\x63\ +\xc5\x71\x10\x36\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\ +\x00\x00\x40\xc2\ +\x89\ +\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ +\x00\x00\xc0\x00\x00\x00\xc0\x08\x06\x00\x00\x00\x52\xdc\x6c\x07\ +\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\ +\x40\x4b\x49\x44\x41\x54\x78\xda\xed\x9d\x77\xb8\x24\x47\x79\xee\ +\x7f\x55\xdd\x33\x27\xee\x59\x6d\xd4\x06\x49\x2b\xad\xa4\x55\x0e\ +\x28\x60\x10\x22\x98\x1c\x24\x81\x08\x22\xc7\x07\x38\x18\x5f\x5f\ +\x63\x0c\x18\x13\x2c\x21\x4c\x10\x19\x19\x5d\x7c\x64\x9b\x2b\xae\ +\xb9\xb6\x89\x02\x0b\x8c\x81\x4b\x14\x92\x76\x41\x11\xa1\x1c\x56\ +\x69\x57\xbb\xab\xcd\x67\x4f\x9a\xe9\xae\xef\xfe\xd1\xa9\xba\xa7\ +\x7b\x66\x4e\x98\x99\xb3\xbb\xf3\x3e\x4f\x3f\xdd\x5d\xd3\xd3\xa1\ +\xea\x7b\xeb\x0b\x95\x94\x88\xd0\x45\x17\x07\x2b\x74\xa7\x5f\xa0\ +\x8b\x2e\x3a\x89\x2e\x01\xba\x38\xa8\xd1\x25\x40\x17\x07\x35\xba\ +\x04\xe8\xe2\xa0\x46\x97\x00\x5d\x1c\xd4\xe8\x12\xa0\x8b\x83\x1a\ +\x5d\x02\x74\x71\x50\xa3\x4b\x80\x2e\x0e\x6a\x74\x09\xd0\xc5\x41\ +\x0d\xb7\xd3\x2f\x70\x20\x43\x0f\x97\x7b\x81\xa3\x80\x21\x60\x41\ +\xce\x36\x08\x54\x81\x31\x60\x5f\xb8\x8f\xb6\xed\xc0\x03\x66\xa4\ +\xb2\xbb\xd3\xdf\x71\x20\x43\x75\xbb\x42\xcc\x1e\x7a\xb8\x3c\x04\ +\x9c\x10\x6e\x27\x5a\xfb\x23\x99\xbd\x96\xdd\x01\x3c\x00\xdc\x1f\ +\xee\xef\x01\xd6\x9b\x91\xca\x03\x9d\xfe\xee\x03\x01\x5d\x02\xcc\ +\x00\x7a\xb8\xbc\x10\x78\x26\xf0\x9c\x70\x3b\xa9\xe9\x3f\xab\x26\ +\xaf\x6b\x5c\x2c\x5b\x81\xeb\x80\xeb\xc3\xfd\xcd\x66\xa4\x52\xe9\ +\x74\xde\xec\x6f\xe8\x12\xa0\x09\xe8\xe1\xb2\x43\x5a\xe0\xcf\x02\ +\x9c\xc2\x3f\xa8\x82\xe3\x7a\xd7\x45\x28\x2a\x0e\x69\x78\xdd\x38\ +\xf0\x5f\xc0\x77\x80\x1f\x99\x91\xca\xbe\x0e\x67\xdb\x7e\x81\x2e\ +\x01\xea\x40\x0f\x97\xd7\x01\x6f\x05\xde\x0c\xac\xcc\xbd\x28\x4f\ +\xd8\x55\x83\xeb\xea\x63\x37\x25\xb6\xd2\x2b\x15\xca\x52\xc2\xc1\ +\x45\x8b\x8b\x83\x8b\x43\x19\x80\x0a\x93\x54\xd4\x14\x15\x3c\x2a\ +\x0a\x3c\xe5\xe0\xd1\x8f\x61\x11\x30\x00\x4c\x02\xff\x4d\x40\x86\ +\x6b\xcc\x48\x65\x6f\xa7\xf3\x72\xbe\xa2\x4b\x80\x0c\xf4\x70\x79\ +\x10\xb8\x08\x78\x1b\xf0\xb4\xdc\x8b\x54\xc1\xbe\xde\x71\x54\x65\ +\xa7\x89\x50\xa1\x2c\x0f\xb1\x50\x94\x1a\x94\xa5\xba\x4f\x06\x55\ +\x89\x92\x52\xa0\x74\xf0\x17\x95\x25\x4e\x78\x1b\xb1\xf6\x62\x82\ +\x64\x31\x60\x7c\x7c\x26\xd4\x18\x3b\xf5\x56\xf6\x68\xf0\x58\x01\ +\xfc\x3b\x70\xb9\x19\xa9\xdc\xd1\xe9\xfc\x9d\x6f\xe8\x12\x20\x84\ +\x1e\x2e\x1f\x05\x7c\x10\x78\x3d\x41\x2d\x9a\x86\xa2\xbe\xc0\xc7\ +\x69\x52\xdf\x04\x52\x6c\x65\x48\x76\xab\x45\x66\xb1\x33\x24\x4b\ +\xb4\x83\x56\x2a\xf0\x94\x95\x0a\x05\x5e\x81\xb2\x84\x3f\x4b\x02\ +\x91\xe0\x31\x22\x21\x1f\xa2\x63\x01\x13\xed\x4d\xb8\x55\xf1\xd8\ +\xa9\xb7\xb0\x4b\xef\x65\x4a\x6d\xc4\x70\x25\xf0\x43\x33\x52\x31\ +\x9d\xce\xf3\xf9\x80\x83\x9e\x00\x7a\xb8\x7c\x34\xf0\x61\xe0\x8d\ +\x64\xc3\xc2\xb6\x70\x17\xd5\xfa\x4a\x6a\xaf\xcf\x1e\x43\x95\x3e\ +\x79\x40\x1f\x6a\x16\x39\x0b\x65\xb9\xd6\x28\x47\x25\x02\xaf\xc3\ +\x38\x91\x56\xd6\xa3\x74\xb8\x17\x6a\x49\x24\xd6\xce\x84\xc2\xaf\ +\x02\xe1\x47\xc0\xf8\x09\x19\x4c\x48\x06\xdf\x0f\xf6\xec\xd5\xbb\ +\x64\x54\x6d\x54\x63\xea\x2a\x26\xd4\x57\xcd\x48\xc5\xeb\x74\x19\ +\x74\x12\x07\x2d\x01\xf4\x70\xf9\x58\xe0\x23\x04\x35\x7e\xda\xa1\ +\xcd\x0a\x7c\x4a\xe8\xa5\x59\x13\x68\x8a\x12\xb7\xab\x45\x66\xc0\ +\x59\x6a\x8e\x71\xca\x94\x1c\x1d\x08\xbc\x13\x0a\xb7\x0e\x4d\x9d\ +\xf8\x38\x22\x80\x75\xbf\x58\x0b\x84\xe7\x62\x0b\x7f\x78\x10\x69\ +\x02\x5b\x03\x88\x49\x13\x40\x0c\xf8\x16\x11\x8c\x87\x61\x87\xbe\ +\x8b\xbd\xfa\xb3\x8c\xa9\xff\x63\x46\x2a\x07\xa5\x20\x1c\x74\x04\ +\xd0\xc3\xe5\x95\xc0\x65\xc0\xeb\x28\x12\xfc\x5c\xe1\xcf\xd8\xf0\ +\x79\x7b\xcd\xbd\x0c\xc8\x66\x96\x18\x57\x2d\x10\xc7\x85\x33\x1c\ +\x87\x1e\x27\xac\xe5\x75\x24\xfc\x2a\x38\xd6\x96\x16\x88\x37\x49\ +\x88\x10\xdd\x37\x57\x01\x58\x44\xb0\x09\x10\x0b\x3f\x09\x09\x44\ +\x02\xe1\x8f\xcc\xa2\x88\x08\xbe\x0f\xa6\x8a\x61\xb7\xfe\x23\xa3\ +\xea\x12\xf3\x59\xef\xea\x4e\x97\x4f\xbb\x71\xd0\x10\x40\x0f\x97\ +\x15\xf0\x2e\xe0\x53\xc0\xc2\x74\x2e\x50\x20\xf8\x52\xdf\xfc\xd1\ +\x6c\xa5\x57\xee\x67\x91\xc0\x62\x73\x2c\x25\x16\x23\xac\x77\x85\ +\x53\x4a\x8a\x85\x5a\x07\x02\x6f\x13\x40\x47\x35\xbe\xb6\x4c\x1e\ +\x95\x90\x22\x2b\xf8\x45\xc1\xa3\xd0\xda\x89\x0f\x22\x13\xc8\x76\ +\x8a\xed\xda\x3f\x65\x0e\x85\x9b\x09\x49\xe0\x79\xa1\x46\x18\xd5\ +\xb7\x52\xe5\x9d\xe6\x12\xff\xa6\x4e\x97\x57\xbb\x70\x50\x10\x40\ +\x0f\x97\x4f\x06\xae\x04\x9e\x9a\xfe\x7a\xf2\x05\xdf\xae\xed\xf3\ +\x84\xbf\xc4\x2d\x1c\xee\xc3\x42\x79\x92\x75\xb7\xeb\x1d\xc3\xe1\ +\x65\xc5\xe1\x91\xe0\xbb\x3a\x30\x71\x1c\x95\x08\xbf\x26\x24\x81\ +\x0a\xd2\x21\xa3\x09\xac\x67\xe5\x69\x81\x6c\xed\x9f\xd5\x04\xc6\ +\xd4\x9a\x43\x91\xe0\x47\x24\xf0\xfd\x50\xf8\xc5\xd2\x06\x1e\x78\ +\x3e\x88\xc1\x30\xaa\x37\x30\xaa\x5e\x61\x3e\xe9\x3d\xde\xe9\xb2\ +\x6b\x35\x0e\x68\x02\xe8\xe1\x72\x1f\xf0\x51\xe0\x7d\x40\x29\xf9\ +\x6a\x9a\x13\xfc\xb4\xf0\x0b\x3d\xfc\x9e\x23\xfc\x01\x06\xc5\x6e\ +\xf9\x1d\x75\x84\x4d\xae\x70\x9c\xeb\xa0\x6c\xc1\x77\x23\xc1\x77\ +\x02\x61\x8f\x85\x5e\x25\xe7\xb1\x06\xa0\xd6\xf4\x89\x0f\xf3\xa2\ +\x40\xf1\x49\xb2\x4b\x99\x42\xe1\xde\x17\x20\xaa\xf1\x23\x0d\x90\ +\x47\x04\x3f\x20\x80\x17\x92\x81\x8a\x1a\x65\x9c\x8b\xcc\x87\xcd\ +\x7f\x77\xba\x1c\x5b\x89\x03\x96\x00\x7a\xb8\x7c\x3a\xf0\x6d\xe0\ +\x98\xf4\x17\xe7\x6d\x75\x04\x5f\xe1\xd3\x2b\x1b\x38\xc2\x2c\xa3\ +\x5f\x8e\x8d\xef\x1f\x84\x2e\x37\x2a\x9f\xd5\x25\x4d\x39\x12\xfc\ +\x48\xd8\x1d\x05\x8e\x63\xd5\xfc\x96\x16\x88\xc3\x9e\x58\x61\x4f\ +\x48\x85\x3d\x15\x81\x00\xd7\xb4\x03\x84\x90\xd0\x3a\xb3\x4d\x21\ +\x43\x92\x10\x6b\x01\x12\xcd\x60\x42\x42\x88\x6d\x06\x49\x20\xf0\ +\xb6\x5f\xe0\xf9\x50\xf5\x40\x7c\x8c\xec\xd1\xff\xa2\x1e\x75\xde\ +\x75\xa0\x86\x4d\x0f\x48\x02\xe8\xe1\xf2\xdb\x80\x2b\x80\xde\xe4\ +\x4b\x73\x36\xdb\xc6\xaf\x15\xfc\x0a\xfd\xb2\x81\x23\xcc\x11\xf4\ +\xca\x9a\xe8\x36\x8e\x8e\x85\xff\x26\xa9\xf2\xa4\x92\x83\x76\x9d\ +\xc4\xe4\x49\xd9\xfd\xa1\xc0\x3b\x59\xc1\xb7\xa2\x3f\x91\xc9\x93\ +\xb7\x4f\xc9\x7e\x24\xed\x16\x24\x53\xfb\x47\x69\x71\xdb\x00\xd4\ +\xb6\x0f\x48\x46\x1b\x58\x1a\xc0\x37\xa1\x06\x88\xb4\x81\x17\x1c\ +\x33\xa6\xfe\xc8\x1e\xf5\x7c\xf3\x09\xff\x80\x33\x89\x0e\x28\x02\ +\x84\xdd\x8f\xaf\x20\x68\xc5\xb5\xbe\x92\xfc\x5a\xbf\xc8\x14\x2a\ +\x73\x23\xc7\x78\xab\x29\x07\xdd\x1f\x22\xa7\x35\x14\xec\x7d\xc6\ +\xe3\x0e\x6d\xf8\x13\xd7\x09\x84\xde\x09\x09\x10\x0b\xbe\x13\x84\ +\x97\x1c\x9d\xae\xfd\x23\x47\x17\xcb\xfc\xd1\xd6\x73\xb3\x21\x50\ +\xdb\x17\x88\x8a\x49\xa9\x84\x07\x12\x57\xff\xc9\x79\x74\x9d\x91\ +\x74\x5a\xdc\x46\x60\x6d\x7e\x64\x0e\xf9\x89\x46\xf0\x42\xb3\xa8\ +\x1a\x6a\x85\xaa\x17\x10\x81\x8a\x1a\x65\x8c\xd7\x98\x8f\x98\xff\ +\xea\x74\x39\xcf\x25\x0e\x18\x02\x84\x0d\x5a\xdf\x01\x4e\x4f\xbe\ +\x0e\x9a\x32\x77\x92\x6d\x8a\xa5\x66\x3d\xab\xcd\x33\xc2\x94\x94\ +\x60\x3b\x9a\xcd\x95\x49\x76\xbb\x8a\x13\x63\xe1\x0f\x09\xe0\xea\ +\xc4\xec\x49\x69\x00\xab\xf6\x57\x04\x35\xbf\xdd\xea\x9b\xaa\xf1\ +\x2d\x22\x66\x9d\xde\xbc\x52\x4a\xb5\x05\x90\xae\xfd\x53\x66\x50\ +\x24\xfc\xd1\x35\x26\x4d\x02\x63\xc0\xb3\xf6\xb1\x29\x64\x02\xe1\ +\xaf\x86\x1b\x3e\xbe\x8c\xab\xcb\xe5\x6f\xcc\x7b\x3b\x5d\xde\x73\ +\x85\x03\x82\x00\x7a\xb8\xfc\x42\xe0\x3f\xb0\xc3\x9b\xcd\xd4\xfa\ +\x76\xed\xaf\x79\x80\x63\x7c\x9f\x7e\x59\x07\x29\xa1\x8f\xb6\x2d\ +\x53\x13\x68\x47\xb1\xdc\xae\xf9\xdd\xd0\xd9\x75\x2c\x42\x68\x1d\ +\x68\x00\xed\xa4\x1b\xb9\x72\xe3\xfe\xa4\x49\x00\x89\x60\xe7\x58\ +\x3d\x41\x0d\xaf\x72\x04\xde\xba\xb8\xa6\x5d\x20\x63\x06\x09\x61\ +\xb4\xc8\xd2\x06\x9e\x9f\x38\xc6\xbe\x0f\x9e\x24\x66\x50\xe4\x1c\ +\x57\xab\x01\x79\x98\x54\x1b\xd8\xa6\xce\x35\x97\xf9\xfb\x7d\x2b\ +\xf2\x7e\x4f\x00\x3d\x5c\xbe\x08\xf8\x06\x45\x51\x9e\x7a\x82\x1f\ +\x6d\x03\xf2\x1b\xd6\xfa\x67\xa3\xe9\x53\xca\xaa\xd9\x13\x12\x6c\ +\x9f\x98\xa0\xcf\x51\x0c\x94\x42\xc1\x2f\x69\x70\x9d\x40\xf8\x5d\ +\xcb\x04\x8a\x1a\xbb\x6c\xa1\x4f\x69\x01\x95\xd6\x00\xf6\x2b\xe7\ +\x9f\x04\xb0\x8b\x29\x3a\xf4\x85\xa9\xaa\xc7\x58\xd5\x67\x4c\x40\ +\x69\x4d\x8f\xa3\xe8\x55\x8a\x5e\xad\x82\xfc\x88\x05\x1f\xc0\xaa\ +\xf9\xb3\xe6\x50\xd4\x3e\x10\x69\x81\x48\x13\x78\x96\x3f\x50\xb5\ +\x49\x30\xa5\xee\x66\x4c\x9d\x61\x3e\xea\x4f\x74\x5a\x06\x66\x83\ +\xfd\x9a\x00\x7a\xb8\xfc\x76\x60\x04\x7b\xd4\x55\x64\x58\x37\x27\ +\xfc\x3b\x39\xcc\xdc\xcf\x62\xf3\x64\x48\x1c\xd9\x48\x98\xc3\xe3\ +\x1d\x63\xfb\x58\xa8\x35\x6e\x39\xac\xe5\x4b\x51\xcd\x1f\x5d\xe7\ +\x26\x91\x1f\x9d\xb1\xfb\x6b\x6a\x7f\x6a\xa3\x3d\xd1\x6b\x67\x5b\ +\x7d\x25\xa8\xd5\xcd\x78\x85\x4d\x7b\x26\xd8\x39\x5e\x55\x8c\x4f\ +\x51\x9e\xa8\x32\x38\x3e\xa5\x16\x1b\x9f\x81\x24\x0c\x14\xee\x45\ +\x45\xbe\x7d\xb5\xb7\xc4\x96\x43\x86\xcc\xae\x05\x83\x94\xfb\xca\ +\xb2\xac\xe4\xb0\x58\x40\xd9\x44\x48\x85\x4a\x25\xf1\x05\x22\x13\ +\xc8\xf7\xa1\x1a\x9a\x42\x35\x24\xa8\xa8\x87\x98\x50\xa7\x99\x0f\ +\xf9\xfb\x6d\x77\xeb\xfd\x96\x00\x7a\xb8\xfc\x5e\xe0\xf3\xe9\x44\ +\x9a\xaf\xf9\x4b\xdc\xc2\xb1\xde\x2a\x4a\x1c\x1a\xd5\xfa\x39\xc2\ +\xbf\x6d\x74\x8c\x3e\x07\x16\x94\xac\x5a\xbf\x14\x0a\x7d\x5c\xfb\ +\xab\xc4\x49\xb6\x6b\x7c\xbb\xf1\x4b\xe5\x11\x00\x8a\x7a\x7c\x7a\ +\x63\x15\x1e\xd9\xb2\x47\x8d\x3e\xba\x87\x23\x2b\x3e\x0b\x73\x07\ +\xc4\xc4\x82\xaf\x92\xf3\x78\x0b\xd3\x4c\x78\x6e\x14\x5a\x31\xb6\ +\x78\x91\xd9\xb8\x74\xb1\x0c\xf4\xf7\xca\x11\x08\x4e\xaa\xf7\xa8\ +\xb5\xaf\xfa\x16\x11\x42\x12\xf8\x91\x3f\x60\x93\xa0\xaa\x36\x33\ +\xc6\x19\xe6\xc3\x66\x6b\xa7\x65\x62\x26\xd8\x2f\x09\xa0\x87\xcb\ +\x97\x12\x34\x70\x85\x5f\x41\x73\x66\x4f\xa4\x27\x7a\x64\x03\xc7\ +\xf9\x67\xa2\x70\x75\x28\xc4\xa9\x1a\x3d\xd8\xef\xdd\x3b\xca\x76\ +\xad\x58\x6b\xd7\xfc\x25\x37\x3c\x8e\xa2\x3f\xca\xb2\xfb\x6d\xe1\ +\x8f\xfc\x80\x90\x94\xa9\xb8\x3f\x39\x61\x4f\xc1\x1f\x9d\xe4\xc1\ +\xcd\xa3\x6a\xe2\xe1\x5d\x1c\xed\x4b\x4e\x97\xec\x08\x45\x64\x28\ +\x22\x42\x4c\x02\xc0\x04\xe7\xae\x52\x7b\x97\xad\xf4\x1e\x5a\xbc\ +\x50\x0e\x2d\xbb\x1c\x6a\x9b\x42\xd1\xde\x0b\x7d\x81\x98\x04\x7e\ +\x5a\x13\x54\xaa\xe1\x3d\x3d\xb5\x9d\x7d\xea\x2c\xf3\x61\xff\xe1\ +\x4e\xcb\xc6\x74\xb1\xdf\x11\x40\x0f\x97\x3f\x45\xd0\x6f\x3f\xfc\ +\x02\xf2\x05\x5f\x93\x4f\x8c\x32\xbf\xe7\x38\xef\x74\x54\xd0\x3b\ +\x33\x12\x7c\x3b\xaa\xe3\x6a\x18\x9f\x64\xbd\x5f\xe1\x29\xae\x0b\ +\x65\x27\xac\xf9\x6d\xdb\x3f\x13\xf7\xd7\x24\xda\x23\x6a\xf1\xcd\ +\x9a\x3e\x44\xe7\xd6\xbb\x2b\x81\xb1\x0a\xf7\xdd\xb4\x99\xfe\xd1\ +\x29\x56\x17\x7e\xb8\x14\xb5\x88\x65\x8e\xf3\x88\x60\x48\x6b\x84\ +\x90\x04\xf8\xa0\x8c\x62\x68\xc8\xdc\xbb\x6a\x8d\x3f\x54\x76\x58\ +\x21\x19\x9f\x20\x45\x02\x2f\x31\x87\xaa\x76\x74\x28\x20\xc1\x1e\ +\x46\xd5\x53\xcc\x47\xfc\xbb\x3b\x2d\x23\xd3\xc1\x7e\x45\x00\x3d\ +\x5c\x7e\x37\x41\x9c\x3f\x7c\x7b\xa6\x27\xfc\x25\x6e\xe4\x78\xef\ +\x14\x14\x3d\x6e\x46\x90\x6d\x02\x88\xe1\xfa\xbd\x7b\x39\xa7\x54\ +\x0a\x84\xbe\x1c\xd9\xfd\x4e\xb2\x77\x2c\x67\xd9\xae\xf5\xdd\x8c\ +\xe0\xa7\xcc\x9f\x4c\x03\x57\xd5\x63\xf3\xad\x5b\x18\xdd\x32\xc6\ +\x71\x35\x1f\xdb\xa8\x58\xf2\x08\x91\xf2\x05\xa8\x35\x83\x6c\x8d\ +\x60\x00\x3f\x38\x56\x46\x81\x0f\x8b\x96\x99\x3b\x56\xac\xf6\x57\ +\x96\x14\x8b\x3d\xab\xc5\xb8\x86\x04\x96\x36\x98\xaa\x86\x8d\x65\ +\x81\x39\xb4\x93\xbd\xea\x58\xf3\x77\xfe\xce\x4e\xcb\x4a\xb3\xd8\ +\x6f\x08\xa0\x87\xcb\xe7\x03\x57\x13\x75\x61\xce\x13\xfe\x22\xc1\ +\x8f\x6c\xfe\xe3\xbd\x13\x50\xf4\xc6\x76\xbc\x4d\x82\x24\x96\x7f\ +\xff\xf6\x5d\xac\x29\x39\x94\xca\xa1\xc9\x13\x09\x7d\x59\xa7\x63\ +\xff\x11\x09\xb2\x26\x4f\x54\xcb\x67\x1d\xdf\xe8\xd8\x08\xbb\xef\ +\xdb\xc1\xc3\xf7\xee\xe0\xb4\xec\x77\xd6\x8b\xfb\xe7\x37\x06\x34\ +\x41\x04\xa3\x8a\xb5\x41\x44\x02\x5f\x45\x1a\xc1\x2c\x3d\xcc\xbb\ +\xe3\xd0\x43\xcd\x09\x46\x70\x63\x12\x18\x2b\x22\x14\x12\x20\xd2\ +\x00\x95\x6a\x38\xd8\x26\x88\x0e\xdd\xcf\x16\x75\x82\xf9\xcc\xfe\ +\x11\x22\xdd\x2f\x08\xa0\x87\xcb\x67\x03\xbf\x02\xfa\x93\x44\x9a\ +\x13\x7e\x0d\xb8\xdc\xc6\x71\xde\xb1\x68\xfa\x4b\x19\x81\x2f\xa5\ +\xb5\xc0\xd8\xf6\x5d\xf8\x1a\x86\x7a\x9c\xc0\xd1\x2d\x47\xa6\x8f\ +\x93\x84\x3d\xb3\xc2\x9f\xd2\x02\x64\x42\xa0\x90\x32\x7d\xb6\xed\ +\xe3\xb6\x5b\xb6\x70\x82\x4f\x38\xc0\x3d\x83\x6c\x97\x86\x6c\xfc\ +\x3e\xb9\x30\xef\xcf\x19\x32\x44\xd7\x64\x85\xde\x26\x45\x64\x12\ +\xf9\x21\x09\x42\x52\xf4\xf4\xca\xe6\x35\xc7\x55\x4b\xae\xc3\xb2\ +\x88\x04\xd5\x28\x2a\x64\x85\x46\x2b\xe1\x16\x3b\xc5\x02\x8c\xab\ +\x5f\x9a\xf7\x9b\x67\x77\x5a\x6e\x9a\xc1\xbc\x27\x80\x1e\x2e\xaf\ +\x05\x6e\x00\x96\x27\x89\x34\x16\xfe\x28\xcd\xe5\x76\x8e\xf3\xd6\ +\xa2\x19\x28\x65\x85\xde\xda\x97\x34\xec\xdd\xc7\xa6\x4a\x85\xd5\ +\xe5\xb0\xd6\xb7\x85\xbf\x94\xd3\xf8\xa5\x2d\x02\xd8\xbd\x3d\x75\ +\x28\x87\x76\x18\x14\xf0\x1f\xdc\xc1\xed\xf7\xef\xe1\xf4\x54\xe8\ +\x33\x44\xca\x94\xcf\xe9\xcc\x96\x1a\xe2\x68\x75\x79\xa8\xf9\x33\ +\xa4\x89\x50\xa4\x0d\x6c\x22\xe4\x92\x00\x94\x51\xde\xaa\x75\xd5\ +\x7b\x17\x0e\xc9\x09\xc6\xa0\x8c\xb1\x84\xdf\xd2\x02\x11\x01\xaa\ +\x91\x29\x64\x40\xc6\xd5\x57\xe5\x03\xe6\xdd\x9d\x96\x9f\x46\x98\ +\xd7\x04\xd0\xc3\xe5\x43\x80\x0d\xc0\xba\xe4\x8d\xb1\x04\xbe\xc0\ +\xe6\x8f\xce\x1d\xee\xe0\x78\x6f\x0d\x9a\xc1\x48\xc8\x63\x5b\x3e\ +\x43\x00\x31\xfc\x61\xfb\x2e\x4e\x2d\x39\x50\xb6\x6a\xfe\xc8\x0c\ +\x72\xc3\x68\x4f\x6c\xff\xdb\x5d\x1e\x92\x0e\x72\x49\xd8\x93\xb0\ +\xdb\x83\x02\x31\x4c\xdc\xf1\x04\x0f\x6f\x9b\xe0\x78\xc8\x44\x82\ +\x42\xa4\xfa\xf7\x90\xaf\x01\x4c\xce\xe6\x9b\x9c\x9b\x40\x63\x6d\ +\x60\x47\x86\x24\xa9\xf9\xb3\x9a\x00\x1f\x86\x96\xf9\x77\xad\x3e\ +\xc2\x3f\x56\x04\xd7\x8b\xb4\x81\x65\x02\x45\x61\xd1\x29\x2f\xe8\ +\x47\x14\xde\x57\x64\xaf\xfa\x0b\xf9\x90\xb9\x82\x79\x8c\xf9\x4e\ +\x80\x6f\x12\x4c\x51\x12\xbe\x2d\x8d\x6b\xff\xe4\x7c\x2f\xc7\x79\ +\xfb\x28\xb1\xca\xcd\x38\xb1\xa9\x78\x7e\x20\xc8\xd5\x6d\x3b\x18\ +\x57\xb0\xb0\x9c\x25\x80\x6b\x45\x87\x72\xa2\x3f\x51\x03\x58\x6a\ +\x98\x23\x09\x11\x8c\xb0\xf3\x96\xad\x8c\xed\xab\x72\x78\xb6\xb1\ +\xcb\x8e\xfd\xa7\xc6\xfa\x66\x85\x9f\x0c\x01\xac\xae\xcd\x71\xff\ +\x7e\x93\xee\x1b\x94\xdc\xb8\x40\x1b\xa4\x4c\x20\xf2\x49\xe0\x87\ +\xd7\x79\x30\xb8\xc8\xbf\xf7\xb0\xa3\xfd\xa3\x44\x28\x45\xed\x02\ +\x71\x0b\xb1\x65\x0a\x55\xaa\x24\xda\xc6\xc3\x63\xaf\x7e\xa1\xf9\ +\x88\xff\xf3\x4e\xcb\x52\x11\xe6\x2d\x01\xc2\x2e\xcd\xff\x92\xbc\ +\x29\xb5\xb5\x7f\xb1\xf0\xc3\x0a\xff\x3a\x96\xca\xd3\x1c\x6d\x99\ +\x31\x3a\x3f\x9c\x59\xa9\xf2\xfb\x9d\xbb\x39\xbb\xc7\x0d\x6a\xfb\ +\xb2\x9b\x44\x7e\x4a\x6e\x12\xf3\x8f\x3a\xbc\xd5\xd4\xfe\xd4\x86\ +\x3d\xb5\x82\xaa\xc7\xa3\x37\x6d\x63\x81\x27\x1c\x12\x45\x83\x60\ +\x7a\x1a\xc0\xae\xfd\x25\x53\xf3\x67\x7b\x75\x46\xad\xb8\xa9\x1b\ +\x42\x1d\x12\x90\x8e\x0a\x15\x91\xc0\x0f\x48\xd0\x77\x88\xd9\x78\ +\xc4\x31\xde\x4a\x11\x7a\x53\x04\xb0\x4c\xa1\x4a\x35\x48\x8f\xef\ +\x5f\x55\x7b\xd8\xa9\x0e\x33\x97\xfa\xf3\x72\xa6\xba\x79\x39\x3b\ +\xb4\x1e\x2e\x1f\x07\x5c\x1e\x27\x34\xd3\xc8\x65\x6f\x3d\x72\x03\ +\x4b\xe5\x69\x5a\x59\xd1\x1e\x4b\xf8\x33\x61\xcf\xbd\xbb\xf6\x70\ +\x82\xdd\xa7\xdf\x55\x96\xdd\x1f\x3a\xbd\xae\xb2\x84\x5f\x25\xe1\ +\x4e\x47\x25\x6d\x00\xb6\x03\x5c\xf5\x79\xec\x96\x6d\x1c\xaa\x14\ +\xe5\x72\xd4\xf7\xdf\x6e\xf8\xca\xf9\xee\x54\xed\x4f\xa6\x23\x1b\ +\xe9\xda\xdf\xd1\x49\xed\xaf\x15\x38\x02\x5e\x48\x3c\x3f\x1c\x14\ +\x1f\xdf\x34\xea\x01\x2b\x99\x07\x87\x2a\x2a\x76\x5a\xe2\xe3\xa0\ +\x77\x9d\x20\xa8\xa8\x97\x9d\x28\x26\x76\xeb\xa3\x1e\xba\xc7\x7d\ +\xe4\x88\x75\xde\x32\x57\xd3\x87\x01\x71\xc2\xf7\x72\x82\x77\x70\ +\x42\x12\x4a\x54\x6e\x25\x59\xa8\x06\xf9\x3e\xf0\xdc\x4e\xcb\x55\ +\xae\xac\x75\xfa\x05\x6a\x5e\x68\xb8\x5c\x26\x98\xc9\x2c\x69\x09\ +\x6d\x46\xf8\x13\xcd\xb0\x95\xb5\xfe\xf1\x2a\x14\x62\xc7\x49\x9b\ +\x2e\xb6\x13\xec\x68\x98\x9c\xe4\x8f\x28\x06\x6d\x33\xc9\xee\xdc\ +\x56\xd3\x2b\xd4\x6e\xf9\xd5\x89\x6f\x60\xf7\x03\x52\xb0\xf7\x8e\ +\x9d\xf4\x39\x0e\xe5\x52\xc6\x91\xce\x73\xae\x73\xd3\x75\xfe\xef\ +\x65\xd7\x32\xd1\xc2\xbd\xed\xaf\x94\x2d\x92\x47\x64\x4b\xf2\xd1\ +\x52\x0b\x76\xbe\xe9\x50\x9b\x6a\x2b\x7f\xc3\x34\x89\x7e\x73\x04\ +\x1c\x98\x1a\xd5\x47\x6c\x7a\xd0\xdd\xac\xc0\x8f\x83\x00\x8e\x15\ +\x1c\x08\xf3\xcf\x7e\x86\xf4\xcb\x73\xf4\xdf\xeb\x37\x77\x5a\xb6\ +\x72\xe5\xad\xd3\x2f\x90\x83\x4f\x03\x4f\x8a\xcf\xa6\x53\xf3\x2b\ +\x11\x0e\x37\x8f\xe1\xb0\xc8\x6e\xd5\xb5\x0b\x26\xd3\xdf\x67\xd3\ +\xce\xbd\x3c\xc9\x4e\x2b\xa9\x34\x59\xa2\x1a\xdf\xd1\x89\x36\x89\ +\x87\x3c\x86\x35\x6e\xdc\x17\x28\xd0\x06\xde\xfd\xbb\xd9\x6a\x60\ +\x49\x4a\x78\x5d\xcb\xa4\xca\x08\x6c\x4a\xf0\xdd\xe4\xfa\x72\x03\ +\x72\x94\x9d\xda\x7b\x66\xaf\x8d\x06\xe0\x24\xf9\x99\x43\x02\xdb\ +\xa4\xb4\x09\x11\x0a\xbd\x38\x92\x4a\x1f\xdf\xa5\x8f\x7e\x62\xab\ +\xbe\x2b\xee\x0a\x12\xf9\x3f\x16\x19\x54\xb6\x6c\x16\x70\x85\xfe\ +\xa4\xb3\xa4\xd3\xc2\x95\xc5\xbc\x32\x81\xf4\x70\xf9\x4f\x81\xf7\ +\xc4\x09\xf5\x84\x5d\x67\x8f\x05\x06\xe4\x5a\x86\xe4\x19\x29\x01\ +\xae\xb3\x8d\x8e\xf1\xb0\x52\xac\x2e\x59\xc2\x1d\xc7\xfa\x55\x6d\ +\xed\x1f\x45\x7b\xe2\xc6\x2f\x32\x03\x5f\x80\x2d\x63\xfc\x71\xcc\ +\xe7\xf4\x48\xf8\xf2\xba\x43\x64\x65\x32\x82\xed\x07\xd8\x26\x90\ +\xb1\xfc\x01\x63\xc2\xc8\xa5\x24\x16\x8b\x6d\xfe\xe4\xf5\x40\xf5\ +\xb2\xbe\x81\x92\xc4\x2f\x88\x5e\x24\x32\x87\xa2\xe6\x6b\xec\x97\ +\x51\x88\x13\x9a\x43\xa1\x6d\xbf\xeb\x31\xf7\xe4\x9e\xc1\xea\x5d\ +\x83\xfd\x72\x82\x91\xe0\x1d\x8c\x13\xbc\x5f\xd4\x50\xe8\xf9\x56\ +\x39\xba\x32\x40\x89\x1f\x92\x9d\x99\xa3\xc3\x98\x37\x4e\xb0\x1e\ +\x2e\xbb\xc0\x6d\x04\x0b\x4b\x84\x89\xa4\x05\x5c\x65\xd3\xb0\xd5\ +\xf8\x83\x1c\xef\xaf\xd4\x9a\xbe\x7a\x66\x86\x65\xff\xef\x7b\x68\ +\x33\x65\xd7\xa1\x5c\x76\xa1\xc7\x85\x9e\xb0\x36\xed\xc9\xb4\x0f\ +\xd4\x68\x0e\x4b\xd0\xac\x31\xc2\x8c\x55\xb8\xfd\xde\x51\x4e\xc9\ +\x8e\x05\x28\xea\x09\x9a\x45\x5d\x02\x14\x84\x40\x53\xd1\x20\x93\ +\x08\xbb\xbd\x8f\x5b\x71\xb3\x0e\x72\xd6\x39\x4e\xb5\x0b\x58\xc7\ +\xa1\x23\xac\x42\x67\x38\x72\x92\x01\x73\xc4\xa9\x95\xc7\x1d\xcd\ +\x6a\xcf\x87\x8a\x9f\x84\x45\xa7\xaa\x81\x43\x2c\xd1\x33\xa3\xf6\ +\x81\x3d\xea\x3d\xf2\x61\xf3\xe5\x4e\xcb\x9b\x2d\x62\xf3\x05\xff\ +\x03\x5b\xf8\xa7\x67\xfa\xf8\xac\x31\x53\x28\xfa\x6a\xfa\xf4\xe7\ +\x98\x3e\x8e\x86\xc9\x29\xb6\x29\x28\xbb\x96\xa3\x1c\xdb\xf4\xca\ +\x32\x75\xec\xfb\x15\x69\x86\xc0\xf1\x7c\xf8\xfe\x31\x4e\xcc\x9a\ +\x21\x6e\x01\x11\x63\xd3\xc5\xad\x35\x61\x9a\xd9\xdc\x8c\x49\xe4\ +\xe6\x3c\x2b\x2f\xe2\x15\xe7\x2d\x14\x98\x43\x79\xa6\x10\x89\x3f\ +\xe0\x58\xe9\xa0\x37\xdf\x57\x2a\x2b\x85\xa7\x74\x3a\x3f\x22\x8d\ +\x99\x1a\xf0\xa0\x40\x0d\xf2\x69\x7d\xa9\x73\x68\xa7\x85\x2d\xc2\ +\xbc\x30\x81\xf4\x70\x79\x39\x70\x49\x9c\xa0\xa6\xb3\x09\xf4\xb0\ +\x81\x7e\x39\xc7\x16\xd6\xd8\x7e\xd7\x35\x76\x3f\xae\x86\x6d\xfb\ +\x58\x92\x2a\x30\x4b\xd8\xb3\x2d\xbc\xb6\x93\x1b\x9b\x3c\x84\xbf\ +\x05\x6f\xec\xdf\xbf\x8f\x72\xc9\xc1\x89\x35\x43\xd6\xfc\xb1\x34\ +\x40\x5e\x24\xc8\x8a\x00\x4d\x89\x30\x29\xb0\xb0\x9e\x06\xd0\x12\ +\x36\xde\x46\x56\x8b\xa9\x35\x81\x54\xe6\x19\xd1\x73\x3d\x3f\x3c\ +\xc9\x9a\x43\x90\x36\x85\xe2\xca\x27\xb4\xb3\x44\x21\x22\xc1\xcc\ +\xbe\xa1\x29\xe4\x4d\xa8\x65\x7b\x76\xeb\x3f\x0e\x2d\x34\x27\x9b\ +\x28\x10\xe0\x04\xd1\x20\xc7\xc9\x34\xd4\x29\xc0\x91\x5e\xd5\xc3\ +\x3f\x03\xe7\x77\x5a\xee\x60\x9e\x10\x80\xec\x74\x85\x59\x01\xaf\ +\x49\x23\xad\x19\x56\x99\x25\x35\x43\x19\x2d\x81\xcf\x8c\xed\x45\ +\x2b\x1e\x9e\x98\x62\x4d\x8f\x9b\x26\x48\xb6\xf6\x8f\x7b\x7b\x12\ +\xda\xfe\xd1\x7d\x48\x8f\xfa\x9a\xa8\x72\xa7\xaf\x38\xa5\xa4\xa8\ +\x19\x0d\x66\x0b\x63\xd4\x2f\x28\x24\xc2\x28\xf0\x23\xe0\xd7\xc0\ +\xa3\xc0\x26\x11\x1e\xfb\xe1\x99\xb2\x1d\xe0\x45\x37\xaa\x92\x08\ +\xcb\x44\x58\x66\x84\x33\x45\x78\x81\x2f\x3c\xcf\x08\x8b\x8c\x04\ +\x02\xef\x5b\x82\xef\x2b\x50\xa6\x20\x9b\xec\x5a\x18\x40\x42\x73\ +\x28\x4b\x82\xe8\x5c\x13\xfd\x90\x94\x90\x10\x93\x20\xb8\x46\x82\ +\x4c\xf2\x61\xc7\x46\xf7\xc4\x81\xd3\x2a\x3b\xb5\x62\x71\x44\x7e\ +\x2f\x09\x0a\x24\x21\xd9\x24\x2a\xf4\x22\xfd\x31\x67\x9d\xb9\xd8\ +\xbf\xb7\xd3\x82\xd7\x71\x02\xe8\xe1\xf2\x93\x09\x56\x61\x09\x30\ +\x2d\xd3\x07\x28\x71\x33\x7d\x72\x86\x2d\xe4\x99\x81\x2d\x35\xb5\ +\xf9\xd8\x38\x5b\xb4\x66\x8d\x9b\xf9\x4f\xa4\x31\x6c\xdb\x3e\x43\ +\x9c\x98\x0c\x91\x26\x50\x50\xd9\x34\xc9\x2a\x7b\x64\x58\x1e\x01\ +\xc2\x50\xfb\x76\xa5\xf8\xbe\x0a\x7a\xb5\xfe\xfc\xea\xd3\x65\xaa\ +\x28\x5f\x7e\x7c\x96\x54\x81\xcd\xe1\x76\x1b\xf0\xb5\xe7\xff\x4e\ +\x39\x46\x38\xdb\x18\x5e\x60\x14\x2f\xd4\x86\xb3\x7d\x85\xa3\x4d\ +\xba\x0d\x22\xb5\xce\x80\x25\xc3\x0a\x52\x3d\x4d\xbd\x54\xed\x9c\ +\x21\x41\x4d\x84\x28\xbc\x91\x26\xd0\x02\x3a\xd1\x02\x08\xfa\x89\ +\x87\xdd\x5d\x2b\xd6\x78\x8b\x7c\x15\xfc\xe4\x2a\xf0\xc3\xbc\x37\ +\x59\x2d\xa0\x71\xe8\x97\xaf\x01\xe7\x76\x5a\xfe\x3a\xee\x04\xeb\ +\xe1\xf2\x0d\xc0\x53\x92\x04\xd2\x8e\x6f\xd6\xe9\xcd\xb6\x04\x1f\ +\x66\x6e\xd6\x43\x72\x46\xbd\xd0\xa1\xed\xcc\x96\x1c\xcc\xc6\x4d\ +\x3c\x2a\xb0\xa6\xc7\x09\x9d\xdf\x70\x2b\x67\x9d\x65\x37\x1d\xfa\ +\xb4\xb5\x49\x44\x82\xf1\x2a\xb7\x3e\x32\xc5\xe9\x35\xfd\x82\xd2\ +\xc2\x3f\xae\xe0\x73\x4a\xf1\x99\xef\x9c\x2a\x63\x73\x95\x77\xcf\ +\xbe\x41\x2d\xf2\x85\xb7\xf8\x86\xf7\xf9\x86\x55\x7e\x81\x03\x1c\ +\xf5\xdd\xf1\xac\xce\x6c\x55\x93\x0c\x7b\x2c\x74\x8a\x6d\x47\xd8\ +\xea\x30\x87\xaf\x50\x5e\x78\x1c\xed\x81\x95\x27\x55\x1e\x76\x1d\ +\xd6\x54\xac\x11\x63\x95\x70\xcc\x40\xcd\x48\x35\x1f\x61\xb7\x3e\ +\xc7\x7c\xd4\x5f\xdf\x51\xf9\xeb\xe8\xc3\x87\xcb\xcf\xc1\x16\xfe\ +\xa6\x6b\xff\xf0\x37\x87\xbb\x59\x20\x67\xd4\xd8\xeb\x19\xbb\x3f\ +\xe5\xb0\xc2\x0d\x15\x8f\xc3\xa3\x89\xab\x52\xb5\xbb\x15\xea\xb4\ +\x4d\x22\xbb\xc6\x8f\x8f\x83\xf7\x9d\x7c\xbc\xca\xda\x6c\xff\x22\ +\x8b\x44\x52\xd2\xfc\xab\xab\x39\xee\xbb\xa7\xc9\xc5\x73\x29\xfc\ +\x00\xbf\x78\xaa\xec\xfa\xf5\x39\xf2\x45\x57\xb3\xd6\x75\x78\x97\ +\xeb\xb0\x31\x76\xfa\x33\xc3\x3c\x33\xdd\xbe\x93\x3e\x4d\x76\x4c\ +\x56\x65\x2a\xc3\xc8\x11\xb6\xf3\x3e\x74\x90\x25\x4a\x8f\xf6\xc0\ +\xae\x4d\xae\xa7\xec\x4a\xc0\xaa\x0c\x52\xf7\x08\xee\xad\xe8\x95\ +\x7f\xea\xa4\xfc\x45\x9f\xd8\x49\x7c\x30\x75\xa6\xa6\xb1\x57\xc0\ +\x32\xb3\xcb\x76\x60\x73\xe6\xf2\x49\x45\x24\x1c\x05\x93\x53\x4c\ +\x39\x1a\x1d\x9d\x47\x9b\x1b\xd9\xf6\x79\x02\x4f\x3a\x0a\x14\xfd\ +\x3e\x51\xe1\x6e\xad\x19\xca\x76\xae\x0b\x85\x6b\x8b\xeb\x70\xee\ +\xb7\x4f\x95\x37\x7d\xeb\x14\x79\xac\x95\x99\xf8\xab\x73\x64\xea\ +\xda\xa7\xc9\x88\xab\x59\xe7\x6a\xde\xe4\x6a\xee\xca\x0a\xba\x1d\ +\x11\x4b\x35\x10\x66\x5b\x8c\xf3\xd6\x41\xb0\xb5\x6e\x24\xf4\x71\ +\xa4\x88\x58\x8a\x26\x77\xeb\xa3\x3d\x9f\x6d\x91\x39\x16\x4f\x07\ +\x93\x95\xb2\xa8\xfc\x7a\xe5\x64\x7d\xa9\x73\x41\x2b\xf3\xa6\x11\ +\x3a\x46\x00\x3d\x5c\x3e\x03\xbb\x7f\xc8\x74\x6b\x7f\xcd\xa3\x2c\ +\x92\x27\xc7\x76\x7a\x46\xd0\xed\x38\xbd\xfd\xfb\xde\x31\x0e\xd7\ +\x2a\xbf\x66\x8f\x46\x75\xd9\xf7\x89\xe7\xf5\x0c\x1f\x1f\xf9\x01\ +\x0a\xc6\x9f\x30\xac\xcb\x1b\x55\xe6\x6a\x6e\x73\x35\x4f\xfe\xe6\ +\xc9\x72\x7d\x3b\xf3\xf4\x37\x4f\x13\xef\xba\xa7\xcb\xbf\xba\x9a\ +\x93\x5d\xcd\x1b\x5d\xcd\xee\x54\x37\x10\x55\x3b\xfb\x45\xb4\x15\ +\xc2\x36\x37\x33\x6d\x2f\x89\x16\x48\x2e\x1f\xdd\xe1\x3c\x11\xcf\ +\x81\x14\xee\xe3\xfb\x67\xb5\x80\x02\xfa\xe5\x4b\xed\xcc\xa3\x2c\ +\x3a\xa9\x01\xfe\x26\x75\x96\xad\xdd\x1b\x6d\x8b\x64\xa3\x52\x38\ +\x29\xe1\xcf\x73\x5a\x2d\x22\x68\x05\xa3\xe3\xac\xb1\xd3\x94\xce\ +\x37\x81\x52\xd1\x9b\x1c\xb2\x54\x0d\x0f\x6b\x4d\xbf\x2d\xfc\x61\ +\xcd\x7a\x8d\xa3\x39\xf7\xdf\x4e\x92\x47\x3b\x95\xb1\xd7\x3d\x5d\ +\xcc\xfa\x67\xca\x37\x1c\xcd\x69\x8e\xe6\xb7\x71\x9e\x64\xfa\x44\ +\xd9\x64\xc8\x35\x85\xf2\xca\x24\x36\x89\x32\xfd\x87\xc2\x78\xf0\ +\xbe\xad\xce\x71\x40\xc5\xee\x16\xae\xec\x7b\x93\xb9\x67\x8f\x1c\ +\xa5\x3f\xee\x3c\xbd\x53\x79\xd5\x11\x02\xe8\xe1\xf2\x31\xc0\x2b\ +\x6b\x32\x23\xca\xd8\x28\xad\x66\x1f\xdb\x9b\x3b\x59\x66\xce\xce\ +\xce\xc1\xe3\xd4\xa9\xfd\xc3\x02\xd9\xe6\x99\x60\x2a\xf3\xf8\x3f\ +\x99\x88\x8d\x2d\xec\x0e\x69\xb3\xc8\x26\xc6\x84\xa1\x9a\x9d\x4a\ +\xc5\xd5\x7c\xc3\xd1\xbc\xec\xff\x9e\x28\xf3\xa2\xeb\xef\x86\x67\ +\xca\x23\xae\xe6\x59\xae\xe6\x63\xae\xc6\xaf\x69\xd8\xcb\xf8\x4b\ +\xe9\xfc\xce\x86\x9f\x85\x3c\xb3\x28\xee\x2c\x17\xfe\x26\x06\x77\ +\x72\x4a\x3d\x62\xaf\x78\x13\x0f\x0d\xad\x29\xeb\x60\x53\x65\xb9\ +\xb8\x53\x79\xd4\x29\x0d\xf0\xbe\xd4\xb3\x8b\x6c\xfc\x22\xb3\xa8\ +\x57\xee\x44\xd1\x97\x6d\x95\xad\x99\x8b\xdf\x36\x6d\x34\x4c\x55\ +\x98\xc8\xab\xcd\xe3\xf0\x26\x39\x0d\x49\xd6\x6f\xd6\xb1\x3f\xa6\ +\x38\x3a\x23\x40\x37\xba\x9a\x77\xfc\xeb\x09\x62\x9a\xc9\x80\x76\ +\x61\xc3\x33\xc5\xbf\xe9\xd9\x72\x89\x13\x10\xe1\x91\x54\x0b\x79\ +\x4e\xc8\xb8\x10\xb9\x66\xa8\x65\x02\x25\xad\xc3\xec\xdb\xa6\x45\ +\x41\xba\x21\xd0\x29\xbe\xa7\xf4\xca\xd3\xf5\x27\x9d\x01\x3a\x80\ +\xb6\x13\x20\x5c\x88\xfa\x8d\xd9\x4c\xa8\x11\x72\x28\x26\xc4\x90\ +\xa8\x9a\xd9\xd7\x72\x7c\x81\x2c\x11\xc6\x27\x03\x7f\xac\x66\xde\ +\x4e\xcb\xce\xcf\xd3\x08\xca\x22\x8d\x52\x20\xc2\xa3\x4a\x33\x60\ +\xd5\xa2\xdb\x5c\xcd\x85\x5f\x3f\x5e\x26\x3b\x51\x88\xcd\xe0\xe6\ +\x67\xcb\x6f\x1d\xcd\x69\x8e\xe2\xc7\x79\xc1\x82\x78\x4e\xa3\x54\ +\xbe\x17\x68\x81\x4c\x54\x48\x32\xe5\x36\xb1\xcb\x39\xd6\xc0\x58\ +\x6a\x0d\x34\xbb\x5d\x2d\x7b\x0f\x87\xb2\x88\x7c\xa8\x13\xf9\xd2\ +\x09\x0d\x70\x21\xf6\xec\x0e\x8d\x22\x3d\x79\x84\x18\x92\x75\x79\ +\xb5\x7c\x8d\x19\x93\xf1\x05\xf6\x8d\xd3\x1f\xcf\xcb\x9f\x43\x02\ +\x7b\xed\x5e\xbb\x06\x4b\x45\x35\x14\x4c\x19\x76\x59\xad\xcc\x9e\ +\xa3\x79\xd5\x55\xc7\xb5\x36\xd2\x33\x17\xb8\xe5\x39\xb2\xdb\xd1\ +\x5c\xe8\x68\x7e\x92\x27\xfc\x11\x29\x0a\x91\xad\xac\x32\x4e\xb1\ +\x2d\x4d\x53\x13\xea\x51\x20\x59\x06\x56\xd7\xbf\xa7\xea\xa1\x23\ +\xe3\x05\x3a\x41\x80\xd7\xa7\x3e\x3e\xde\x4b\x1d\xa1\x17\x3b\xa3\ +\xef\xc5\x65\x99\x5d\xeb\xe7\xf5\xbf\xc9\x23\xc7\x64\x95\xa1\x78\ +\xde\x1e\xbb\x86\x0f\x9f\x13\xd7\xf4\x58\xf7\x23\x63\x16\x01\xfb\ +\x34\xcb\x2d\xd3\xe1\x8b\x57\x1d\x27\xbf\xe9\x40\x3e\xce\x08\xb7\ +\x3d\x57\xa6\xb4\xe2\x42\x47\xf1\xcb\x94\xe0\x5b\x9a\x33\xa5\x05\ +\x6c\xe4\x69\x69\xdb\x07\x50\x89\x19\x34\xbe\x43\xbb\xf6\x62\x20\ +\x35\x95\x58\x16\x3d\xb2\x5a\x7f\xcc\x79\x46\xbb\xf3\xa3\xad\x04\ +\x08\x3b\xbd\xa5\x87\xc6\x65\x6b\xfc\xbc\x34\xfb\xb7\x7e\x79\xbc\ +\x9e\x79\xa2\x73\xf6\x11\x09\xaa\x1e\xe5\x6c\x64\xc7\xae\xe5\xb3\ +\xda\xc1\x76\xe4\x2c\xbf\x6f\xbb\x51\xac\x0e\x9f\xb9\xd7\xd1\x7c\ +\xba\xcd\x65\x36\x6b\xdc\xfe\x3c\x99\xd0\x9a\xf3\xb5\xe2\xb7\xd9\ +\x76\x92\x28\xec\x9b\x94\x4f\x9d\x88\x90\xb5\x65\xcd\xa0\xa9\xbd\ +\xce\x91\x61\x77\xa5\x9a\x4e\x79\x85\xf7\xe9\x91\x4b\xda\x9d\x17\ +\xed\xd6\x00\xaf\x06\x6b\x71\xea\x22\xe1\x4f\x09\x7d\x26\xfa\x30\ +\x24\x83\xcd\x98\x3f\x39\x03\x43\xa6\xa2\x85\xe5\xac\x58\x7e\xaa\ +\xc3\x98\x35\x87\x4f\x7a\x08\x82\x55\xfb\x8b\xb0\xdd\x32\x1b\x3e\ +\xff\xcf\xc7\xca\x7e\x33\x0d\xa0\x8d\x3b\x9e\x2f\x63\x8e\xe6\xc5\ +\x8e\x66\x83\xbd\x8e\x59\xdc\x72\x5b\x84\x54\x59\x59\x21\x51\xbb\ +\x96\x20\x88\x06\xf9\x3e\x4f\xd8\xda\xb5\x68\xc1\xbf\xf8\xbf\x7d\ +\x9c\xa3\xbf\xe5\xb4\xb7\x52\x6e\xe7\xc3\x28\x32\x7f\xb2\xb5\x4c\ +\xf6\xf7\x24\x93\xa6\x18\x94\x13\x54\x81\xa0\x2b\x55\x87\x08\xc2\ +\xbe\xa8\x80\x6d\x73\x27\x55\xf3\x43\x6d\xd7\x65\x15\xf9\x69\xc1\ +\xf5\xa2\xa8\x84\x51\xa5\xed\x5a\xf3\xc5\x36\xe7\xdf\x9c\xe2\xae\ +\x17\xc8\xa8\x56\xbc\xd0\x51\xdc\x96\x0a\x24\xd4\xeb\x22\x91\x35\ +\x49\x93\xb2\x49\xd7\x1a\x40\x65\x52\xed\xb2\x7f\x56\xa9\x7b\x64\ +\x13\x01\x2d\x3d\xdc\xc5\xcb\xda\x99\x07\x6d\x23\x40\xb8\x86\xd7\ +\x9f\xa4\x12\xeb\x99\x3d\x50\x1b\x75\x70\xb8\x4b\x29\xfa\x75\x1d\ +\x61\x57\x05\x64\x10\x61\x22\x63\xca\xa4\x56\x6b\x0c\xfb\xf6\xc4\ +\xe9\x90\x7f\x5f\x24\x8c\xa7\x2b\x2e\xbf\xf2\x68\x19\x6d\x67\x61\ +\xb5\x02\xf7\xbe\x48\x76\x6b\xc5\x6b\xb4\x62\x22\xdb\x78\x58\x83\ +\x7a\x1a\xdb\x8e\x06\x85\x52\x35\xb5\x5b\x97\xa2\x08\x50\x61\xed\ +\x6f\xdf\x43\x81\x94\xe5\x0d\xed\xfc\xfe\x76\x6a\x80\x97\xd4\x7c\ +\x74\xf6\x58\xd5\x39\x06\x18\x90\xdd\x79\x43\x0d\x8b\x04\xdf\x4e\ +\x33\x86\xa9\xec\x6d\x53\xe7\x19\x5b\xdf\xb6\xfd\x6d\x3b\xd6\xd7\ +\xe8\xd0\xec\xfa\x5e\x1b\xf3\xae\xa5\x78\xe0\x25\x72\xb7\xa3\xf8\ +\xdb\xac\x59\x59\x88\x3c\x73\x35\xe7\xbc\xb2\xd7\x39\x52\xac\xe1\ +\x00\x75\x11\xfe\x47\x95\x39\xa7\x9d\xdf\xde\x4e\x02\x3c\x2b\xfb\ +\xb1\x35\xe6\x4f\x5e\xa4\xc0\x4e\x5b\x20\x4b\xf3\xc2\x94\x76\xbe\ +\xe7\x91\x41\x01\xc6\xe0\xa5\x1e\x6b\x39\x66\xaa\x40\xd8\xf3\xca\ +\xd6\x87\xb2\xa3\x79\xf0\x1f\xd7\xca\x1d\x6d\xcc\xbb\x96\x43\x2b\ +\x2e\xd7\x8a\x5f\x66\x35\x6a\xae\x19\x64\x67\x08\x92\x2e\x47\x92\ +\xff\x88\xc1\x15\xc3\x58\x61\x44\x29\x2f\xad\x24\xcb\xf5\xc7\x9c\ +\xc3\xda\xf6\xdd\x6d\x79\xc8\x70\x59\x01\xe9\x10\x97\x6a\x70\x9c\ +\x6d\x7a\x07\x28\xcb\x52\x9d\x15\xfe\x1c\x61\xcf\x33\x75\xc4\xe0\ +\xa3\xc8\xaf\xfd\x49\x54\x74\xd6\xfe\xb7\x1d\x38\x05\xe0\x30\xa8\ +\x15\xd7\xb4\x23\xdf\xda\x89\x07\xcf\x13\x51\x8a\xb7\x68\xcd\xde\ +\x94\xc9\x97\x45\x9c\xc1\x75\xa2\x43\x56\xe0\xc2\x37\xec\x4d\xfd\ +\xb7\xf0\x7e\xf1\xa6\x44\xcb\x3b\xda\xf5\xdd\xed\xd2\x00\xa7\x00\ +\xc9\x9c\x30\xcd\x9a\x3c\xd9\x6b\x1d\x96\xd4\x08\x3f\x75\xc8\x60\ +\x6d\xae\x6b\xad\x2b\x40\x50\x7e\x92\x7d\x94\xa2\xf0\x15\x23\x33\ +\xc9\x77\x58\xa2\x15\xff\xd9\xa6\x7c\x6b\x2b\x1e\xbd\x40\x1e\x51\ +\xf0\x97\x71\x97\x0f\xd5\xe0\x0f\x79\x99\x94\x51\x9d\xbe\xa7\xc6\ +\x52\xd3\x31\x36\x82\x02\x55\xe6\xbc\x76\x7d\x73\xbb\x08\xf0\xac\ +\xbc\x0f\x8d\x73\xa4\x19\x7f\x00\x76\x2b\x45\x29\xbb\xd2\x4a\x76\ +\xa5\xc5\x3c\x33\x48\x01\x25\x97\x52\x2a\x0a\x91\xfd\x5f\xe6\x55\ +\xb2\xa3\x02\x11\x50\xc2\x14\x81\x13\xde\xd6\x6e\xce\xed\xc4\xe3\ +\x17\xca\x55\x5a\xf1\x43\x3b\x24\x5c\x17\x99\xcc\xcf\xb6\x07\x78\ +\x53\xaa\x2a\xcd\xdc\xc7\xbe\x57\x99\x93\xda\xf5\xbd\xed\x27\x40\ +\x23\xd3\xa7\xe8\x58\xb3\x13\x5b\xf8\xf3\x8e\xad\x42\xcb\xda\xf4\ +\x5a\xd3\x1b\xcd\xbc\x90\x07\x51\xf9\xee\x48\xea\x35\x82\xf1\xae\ +\xbb\xfe\xe1\xc8\xf9\xdb\xe7\x67\x2e\xa0\x14\x1f\x4d\xcd\x63\xd4\ +\xc8\x86\xaf\x23\xe0\xfe\x84\x8a\xd7\x2b\x96\x7a\xf7\xb0\xd3\x5c\ +\xe9\xd1\x97\xb4\xa7\x8b\x74\xcb\x09\x30\x6d\xfb\x3f\xe5\x58\x59\ +\xe9\x9a\x51\x5b\xa0\xb1\x8e\x6b\x2c\x29\xcb\x76\x8f\xd2\x1c\x87\ +\xfe\x78\x40\x78\x34\x2e\xd5\x3a\x4c\x29\x1b\x6b\x0c\x78\x64\xfa\ +\x84\xd7\x94\x1d\xc5\x03\xad\xce\xb3\x4e\x63\xdb\xcb\xe5\x56\xa5\ +\xf8\x69\x4d\x0b\x6e\x9e\x23\x0c\xa4\x34\x79\xd6\x04\x9a\x54\x83\ +\xb9\xc2\x9f\xbd\x4f\x86\x0c\xa2\xa5\x2d\xdd\x22\xda\xa1\x01\x8e\ +\xc4\xb6\xff\xed\x8f\x2e\xca\x80\x7c\x0d\x30\x51\xb3\xbe\x6e\x36\ +\x92\x63\xa5\x65\x23\x3c\x8e\x62\x30\x9a\xb1\xd8\x9e\x7d\x39\xf6\ +\xd7\xac\x59\x99\xc3\x1e\x9f\xc9\x2b\x58\xc7\xae\xcf\xfd\x6d\xc8\ +\xb3\x8e\x43\xc1\x65\x0d\x5b\x6f\x6b\xf6\xb5\x62\x2e\xbe\xea\x81\ +\x64\x96\xbb\x46\x0f\x8d\x37\xd7\x9a\x1f\xb6\x85\x68\x07\x01\xd6\ +\xa5\xce\xa6\x2b\xf8\x11\x5c\xa9\x40\xad\x90\xe7\x99\x3d\xf6\xb1\ +\x4a\xee\xe5\x3a\x3a\x11\x7a\x92\x5d\x34\xfd\x65\xfc\x3f\xb1\x2a\ +\xb4\x6c\x99\xb9\xc1\x34\x25\x07\x3c\x76\xbe\x4a\x7e\xa1\xe0\xa6\ +\x5c\xf9\xcf\xab\xf9\xa3\x7d\x46\x03\x88\xa7\xfa\x1a\x6a\x80\xbc\ +\x47\x38\x39\x2b\x67\xb6\x00\xed\x27\x00\x14\xc6\x8d\x0b\x8f\x83\ +\x1a\xc1\xa4\x2a\x1b\x55\x7b\xcb\xf8\xd6\x19\x13\x88\x30\xad\xaf\ +\x14\xf4\x07\x12\x49\x16\x74\x8b\x85\x5f\x12\xe1\xb7\x97\xd9\x85\ +\x74\xe1\x95\x7c\x0e\x68\xfb\xdf\x86\x82\xcf\x34\x6c\xc1\x2d\x44\ +\x90\x6b\x62\xe8\xaf\xe7\x7b\x15\xc2\xad\xb3\x66\xf2\x1c\xa2\xbd\ +\x04\x68\x2a\x33\x25\x9f\x04\x6e\xdc\x5b\x21\x4e\xce\x8b\x9a\xa2\ +\x32\x69\x96\x99\x54\x72\xd8\x15\x4f\x3c\xab\x92\xa9\x6f\x22\x22\ +\x98\x3c\x89\xcf\x9a\xbd\x8a\xa5\x6d\xc8\xb3\x79\x01\xa5\xf8\x2e\ +\xcc\xde\xe7\x11\xf0\x4d\x11\x01\xf2\xa2\x0d\x81\x23\xbc\x50\xff\ +\x95\xd3\xf2\x89\xdb\xda\x41\x80\x63\x0b\x3f\x38\x37\xd4\x52\xf0\ +\x5b\x49\x7a\xf2\xae\xcf\x8b\xe3\x17\xdc\x66\x4b\xa5\xc2\x03\x71\ +\xad\x9f\xb5\x49\xc3\x63\x63\x4d\xde\x94\x55\xdd\xe1\xc4\x69\xc7\ +\xb4\x21\xcf\xe6\x05\xf6\xbe\x5a\x7c\xe0\xab\x4d\x5d\x5c\x27\x52\ +\x64\x0c\xde\xb4\xe7\x5f\x53\x68\x16\x64\xfa\x8e\xb5\x00\x9d\x33\ +\x81\xf2\x8e\xeb\xff\x56\x3f\x9a\xdc\x38\xd6\xfc\x13\x57\x71\x67\ +\xb4\xec\x68\xbc\x2c\x96\x35\xff\x7e\x54\x48\xf6\x64\x69\x90\x36\ +\x87\x94\x70\x54\x1b\xf2\x6c\xde\x40\xc1\x7f\x4f\xe7\xe2\xd4\x3e\ +\x84\x08\xaa\x29\x07\x38\x73\x2e\x8e\xb4\x3c\x14\xda\x52\x02\xe8\ +\xe1\x72\x0f\xb0\xa6\xe1\x07\x37\xd3\xe2\x68\xa8\xce\xf2\x75\x7e\ +\xac\xe1\x86\x68\x8d\x2d\xf1\x03\x3f\xc0\xd8\x1a\x81\x20\x2d\xb5\ +\x38\x75\xa4\x0d\x92\x1c\x5b\xf1\x67\x9b\x83\xc8\xc6\xc1\x80\xc9\ +\xd7\xcb\x1d\xc0\xe3\x85\x17\x34\xd1\xc8\x25\x50\x32\xcd\x68\x80\ +\xec\xbd\x1c\x4e\x6b\xf5\xf7\xb5\x5a\x03\xac\x49\x3d\xa3\xd9\xda\ +\x3e\x2f\x53\x7d\x55\xbf\x57\x61\xfd\x0c\x36\xc0\xcf\xdc\x7e\xbe\ +\x05\x18\x13\x69\x00\xa9\xd5\x00\xf6\xc2\x14\xf1\x9a\x11\xa4\xae\ +\xeb\x5b\x36\x41\xc7\xe6\xb1\xe9\x10\x8a\x97\x39\x95\xfa\x69\xca\ +\x41\xc4\x34\x43\x93\xe8\x0f\xc4\xe5\xaf\x35\x8b\x5a\xfd\x61\xad\ +\x26\xc0\xc2\x19\xff\x33\xab\x4e\x0d\xa6\x76\x45\xf4\x8c\xa9\x92\ +\x09\x6f\x5a\xc7\xbf\xfb\xf7\x93\x64\xe7\xad\x2f\x96\xb1\x1e\xcd\ +\x63\xc6\x12\x70\x3f\x53\xdb\xdb\xab\xb0\x8b\xed\x0f\x90\x90\x43\ +\xc3\xf3\x5a\x9c\x6f\xf3\x0d\xff\xaf\xa9\xab\xf2\xc8\xe0\xca\xa4\ +\x3f\xc3\xf9\x97\x45\xb1\xa0\xd5\x1f\xd6\x6a\x02\x0c\xd6\xa4\x64\ +\x1b\x4c\x9a\x35\x85\x24\x69\xc4\x8d\xf6\xb9\x7d\xac\xb2\x24\x08\ +\x84\xf7\xc7\xd1\x69\x8f\xe6\xfa\x68\x59\x21\xdf\x32\x77\xa2\xa5\ +\x45\xe3\x49\x91\x8d\xe5\x27\x90\x08\x7f\x78\x7e\x76\x8b\xf3\x6d\ +\xbe\xa1\x31\x01\x8a\x34\x81\x2b\x93\x33\x9a\x29\x29\x68\xfd\x6f\ +\xf9\x5c\x41\xad\x26\x40\x3e\x83\x0b\x05\x5d\x8a\x7f\xf3\x93\x96\ +\x83\xbc\xb8\x72\x8a\x18\x56\x14\x27\x44\xec\xc8\x95\x1c\xfe\x23\ +\xbb\xc8\x74\xe4\x0b\x18\x13\xae\xb8\x9e\xf1\x0d\x22\x13\x28\x7a\ +\xae\x81\x73\x2e\x7d\x50\x1d\x34\xe1\x50\xf3\x26\xd9\x04\xdc\x35\ +\xbd\x7f\x85\x05\xe9\x48\x75\xc6\x33\x85\xa9\xfd\x9f\x00\x83\xb3\ +\xfa\xb7\x4d\x06\x2f\x69\x52\xcf\x9a\x24\x11\xf2\x22\x37\x02\x15\ +\x84\x1b\xa3\x74\xe7\x54\xae\x51\x8a\x8a\x6f\x92\x45\xa7\x3d\xdb\ +\x27\xa0\x76\x51\x6a\xdb\x37\x30\x80\x2f\xf4\x88\xe2\xbd\x2d\xce\ +\xbb\xf9\x86\x5f\xd6\xa4\x14\x75\x73\xb6\xcf\x5d\x66\x33\x4d\x64\ +\x5f\xab\x3f\xaa\x33\x1a\x20\x8b\x66\xa2\x40\x3e\x8b\x25\xdf\xbc\ +\x49\x47\x6b\x24\x63\x1e\x09\x5b\xbf\x73\x5a\xa2\x84\x6f\x3a\x46\ +\xcc\x80\xc3\xef\xa2\x55\xd6\xe3\x95\x16\x4d\x5a\xe8\x63\x0d\x21\ +\x89\x9f\x10\x87\x47\x83\xf3\x57\xb4\x38\xef\xe6\x1b\x36\xc6\x47\ +\x71\x06\x67\xe3\x9d\xaa\x86\x14\xe2\xc8\xf8\x8c\x9f\xa8\xe9\x6d\ +\xf5\x47\xb5\x8f\x00\xcd\xc7\x01\xf2\xaf\x15\x0e\x8b\xe5\x3c\x53\ +\x2b\x5b\xb5\x7d\x9e\x09\xb4\x25\x7b\xab\x3e\x97\xcf\x65\x85\x3f\ +\xde\x32\x24\xb0\x35\x4e\x64\x22\x19\xc0\x83\x75\x7f\xff\xb0\x3a\ +\xb9\xc5\xf9\x37\x9f\xb0\x95\xbc\x8e\xfd\x8d\x06\xbb\x38\x32\x73\ +\x19\x53\xb4\x3c\xdc\xdc\x39\x13\x68\x3a\x84\x08\xd0\x4f\x95\xc7\ +\x73\x43\x95\x39\xad\xbb\x16\x21\xb6\x66\x6f\x74\xf3\x85\xf2\x83\ +\xb2\x62\x57\x8a\x04\x96\x63\xec\xdb\x35\xbf\x09\x4c\x24\xdf\xa4\ +\xcd\x23\x09\xd2\x3e\xd0\xe2\xfc\x9b\x4f\xd8\x56\x93\x12\x0b\xbf\ +\x4a\xce\xed\x0d\xc0\x91\x99\xaf\x0e\xaf\x29\xb5\xfa\xa3\x5a\x4d\ +\x80\x39\xbd\xbf\x54\xd4\xd6\x6c\x8c\xde\xee\xae\x10\xc7\xed\xd3\ +\x84\xd8\x92\x77\xaf\x7e\x97\x6b\x7c\x3f\x10\x6e\xcf\x80\xef\x67\ +\x34\x40\xb8\xd9\x1a\x21\x36\x85\xc2\xb4\xaa\xf0\xaa\x4b\x1f\x53\ +\x6d\xe9\xb4\x35\x0f\x90\xae\x48\x24\x7f\xaf\x6c\x33\x28\x48\x9e\ +\x39\x01\x64\x06\xd5\xe4\x34\xd1\x6a\x02\xcc\xed\x3c\xf9\x53\x8c\ +\xd6\x08\x39\xb5\x2d\xb7\xd2\x04\x01\x7a\x1d\x2e\x35\x82\xf1\xfd\ +\x50\xf8\x25\xbd\xa8\x5c\x6a\x35\xf6\x2c\x31\x12\xff\xa0\xd7\xaf\ +\xf2\x95\x16\xe7\xe1\x7c\x41\x8d\x26\xad\xeb\xfc\x0a\xa8\x1e\x53\ +\x61\x36\x2b\x91\x4a\xeb\x7b\xde\xb6\x9a\x00\xc5\x13\x47\xcd\xa4\ +\x71\x64\x42\x95\xa5\x58\xd0\x53\xda\xd7\x8a\xe1\x6f\xcd\xbb\xd5\ +\xef\x5e\x26\x0f\x0c\xb9\xdc\xe0\x19\x4b\x0b\xd8\xab\x2c\x66\xcc\ +\x23\xe3\x5b\x1a\xc0\x04\x0b\x23\x86\x5a\xe0\xfc\x8f\x3f\xa6\x4e\ +\x6d\x71\x3e\xce\x07\x3c\x41\xdc\x1a\x43\x61\xc8\x2d\x55\x00\xfd\ +\x66\xcb\xb4\x9e\x90\x85\x61\xe6\x0e\x74\x93\x68\x9f\x06\x98\x8e\ +\xc0\x17\x5d\x5b\xe5\x18\xbb\xe6\x8f\x1d\x55\x32\xe7\xe9\x96\xdd\ +\xc2\x42\x18\xe8\xe1\xcf\x7c\x83\xf1\xc2\xa5\x43\xe3\xe5\x45\x25\ +\x38\xb7\x1d\xe3\xd8\x3f\xb0\xb4\x41\x48\x08\xc7\xab\xf2\xbf\x5a\ +\x9c\x8f\x1d\x87\x79\xb3\x78\xc0\x0e\x20\x89\x00\xa5\xc2\x6d\xf6\ +\x50\xbb\xd0\x72\xe9\x9d\xc5\x1a\xbc\x01\x89\x5a\xbe\xd2\x4e\xab\ +\xfb\x5b\x37\x37\x75\xa0\xd0\xa8\x15\x38\xfa\x7d\xa9\x4c\xf1\xa0\ +\x71\x58\x9b\xd7\x7d\xc1\x3e\xb7\xd2\xf6\x16\xdd\x76\xc3\x05\x72\ +\xfb\x29\xdf\x51\xd7\xef\xf3\x38\xd7\x73\xc2\x75\x74\x0d\x68\x3f\ +\x98\xfb\xdf\x93\x60\xdc\x8e\xf6\x33\x33\x49\xeb\x80\x00\x4a\x05\ +\x84\x98\x82\xa7\x7d\xec\x21\xf5\x55\xad\xb9\xc7\xd1\x3c\x52\x52\ +\x3c\xec\x68\x36\xbe\x77\xe5\xfe\x39\x71\x6e\x1d\x8c\x02\x4b\x8b\ +\x05\x9f\x34\x29\xb4\x2c\x9c\xd5\xd3\x0c\x7b\x5a\xfd\x41\xf3\x83\ +\x00\x45\xc8\x21\x86\x8c\xab\x4d\xa6\x4f\xd6\xda\x82\x6e\xa4\xb0\ +\xf6\xc7\x08\xcb\xeb\x3d\x62\xc0\xe5\x5d\x7b\x2a\xfc\xc1\xf3\xd1\ +\x9e\x4a\xa6\x08\xaf\xfa\x81\x7a\x74\x54\x30\xc7\xb7\x36\x09\x01\ +\x54\xb8\x30\x74\xdc\x69\x4b\xc1\x94\xe1\x5d\xd1\xf5\x55\x15\x64\ +\xec\xa7\xb6\xa8\xaa\x56\xec\xd5\x9a\xdd\x8e\xc3\x4e\xa5\x78\xc2\ +\x51\x6c\x55\x8a\x2d\xc0\xe6\xc7\x47\xd9\xf9\xf8\x5e\x1e\xfd\xdf\ +\x27\xca\xb5\x2d\x2e\x87\xb9\x42\x92\x97\x29\x12\x04\x9b\xb2\xc9\ +\xa0\xa8\x08\x0c\x4d\xfb\x09\xd6\x7d\x95\xb0\xab\xd5\x1f\xd4\x6a\ +\x02\xe4\xab\xb0\xc2\x1a\x3f\x1c\x8d\x5e\x4f\x1b\x4c\x28\x57\x44\ +\x0a\x05\x3f\x87\x14\x2b\xeb\xbd\xe0\xfa\x97\xc9\x1d\xa7\x7e\x47\ +\xfd\x72\xd4\xe7\x39\x55\x03\x8e\x1f\xce\x90\x6c\xc2\xd9\x92\x8d\ +\x35\xf7\x90\x3d\xfd\x8a\x06\x65\x82\x74\x4f\xa5\xbe\x20\xf8\x04\ +\x01\xd1\x94\xc4\x61\x89\x18\x96\x18\x38\x5a\xab\x60\xb1\xf5\x1d\ +\x13\xf0\xdd\xdb\xe1\xbe\x27\x82\xff\xfc\xfc\x3e\x35\x75\xc6\x61\ +\xfc\xdd\xf7\xcf\x94\xcf\xb4\xb8\x3c\x66\x0c\x7d\x95\x5e\x80\x30\ +\x90\x32\x71\xa4\x78\x53\x0b\xfc\xc7\x04\xd6\x4e\xeb\x21\x19\x83\ +\xc9\xf8\xa1\xc9\xd5\xca\xef\x6a\xf1\xfd\x6b\xcd\x8f\x6c\x0b\x62\ +\xd6\x99\x2a\x42\xf4\xbf\x2a\x27\x19\xc3\x94\x2d\xf8\xd9\xd6\xdb\ +\x0c\x29\xea\x12\x00\x60\x41\x99\x8b\xb4\x30\xee\xf9\x81\x09\x54\ +\xf5\x83\xcd\x0b\x8f\x53\xfe\x80\x49\xc2\xa6\xb6\xb3\xec\x49\x8e\ +\xaf\x60\x02\xe7\xd9\xee\x67\x34\x56\x81\x2b\xd7\x27\xc2\x0f\xb0\ +\x75\x1f\x3d\xbf\x7d\x88\xcb\x5e\x7a\xa3\xfa\x66\x8b\xcb\x63\x36\ +\x48\xf2\xd1\x6e\x09\x8e\x08\x61\xdb\xff\x02\x6a\xd0\xef\x99\x96\ +\x03\x90\x17\x51\x92\x9c\xb6\x87\x39\x46\xab\x09\xf0\xc8\x8c\xff\ +\x59\xdc\xc2\x38\x64\xc6\xd4\xad\x59\x41\xf7\x33\xfe\x40\xb3\x1a\ +\x00\xe0\xba\x0b\x64\xe7\x92\x5e\x3e\x54\xf1\x12\x67\x38\x22\x41\ +\x35\x24\x85\x67\x6d\xbe\x4d\x0a\x6b\xef\xe5\x91\x25\xbc\x5f\xe4\ +\x34\x3f\xb4\x03\x76\x5a\xb1\x0d\x57\x43\x5f\x29\x58\x65\xfe\xce\ +\x6d\x5c\xf4\xfa\x3f\xa8\x7f\x6c\x71\x99\xcc\x14\x2b\x6b\xca\xa5\ +\x68\x53\x88\x51\xac\x98\xf5\x13\xfd\xfc\x08\xde\x5c\xa2\xa5\x04\ +\x30\x23\x95\x31\x60\x53\x9c\xd0\x20\x6e\x5c\x78\x5d\x16\x7b\x95\ +\xd8\x8d\x53\x51\x78\xb2\x80\x04\x0d\x09\x00\xf0\xbb\x97\xc9\x97\ +\x17\x94\xb8\xbd\x62\xa0\xe2\x25\xc2\x5e\x0d\x85\xb8\x12\xb5\x17\ +\x58\x84\xf0\xa3\xeb\x32\x42\xef\x9b\x74\x9b\x42\xa4\x2d\x8c\x0f\ +\x8f\x59\x3a\x51\x2b\xe8\x2d\x05\x5b\x5f\x09\xca\x2e\xdc\xb7\x83\ +\xe1\xb7\xdf\xa9\x3e\xd9\xca\x72\x99\x11\x84\x95\xb5\xb5\x3d\x71\ +\xc8\x53\x99\x64\x96\x01\x7d\x88\xff\x08\xf6\x4a\x40\xf5\xef\x5b\ +\x7b\x1e\xf9\x00\x46\xb5\x7c\x0a\x9a\x76\x8c\x09\xbe\xb7\xe1\x87\ +\x37\x12\xf8\xac\x36\xf0\x38\xdd\xf8\x8c\xa6\x3a\xaf\xe5\x74\x62\ +\x0b\xd3\x9b\x22\x00\xc0\x21\x3d\x5c\x88\xa1\x52\x0d\x05\xbe\x12\ +\x0a\x7b\xc5\x58\xa6\x51\x28\xd0\x55\xcb\x5c\x8a\x6a\xf9\x1a\x32\ +\x64\x8e\x23\x42\x40\x3c\x4d\x0b\x7d\xa5\x84\x04\x3d\x6e\xb0\x7e\ +\xef\xc3\xa3\xfc\xed\x9f\xdf\xa7\xfe\xba\x0d\x65\x33\x1d\xac\x4c\ +\x47\x79\x72\xcc\x9f\x88\x04\x03\x7e\x7f\xea\x9f\x33\x09\x86\x06\ +\xf7\x6d\xf9\xca\x9b\xed\x20\xc0\x7d\xb5\x1f\x57\x70\xdc\xe8\xb7\ +\x04\xbd\x66\x54\xdd\x56\x23\xfc\x36\x09\x92\x98\x7d\xd3\x04\xb8\ +\xee\x02\x79\xe0\xd0\x7e\xfe\xba\xea\x23\xb1\xf9\xe3\x25\xa6\x50\ +\xc5\x80\xe7\x25\x24\xf0\x2c\x13\xc7\x0b\xcd\xa7\xd8\x27\xc8\x98\ +\x40\xd1\xb5\x67\xae\x82\x5e\x37\xdc\x22\xe1\x77\x83\xda\xbf\xec\ +\x42\xb9\x14\x38\xe1\x5b\xc7\xf9\xec\x7b\x1f\x50\x6f\x6d\x43\xf9\ +\x34\x8b\x95\xb9\xe6\x8e\x5d\xfb\x0b\x28\x97\x29\x91\x39\x9a\x3a\ +\xa6\xca\xc3\xad\xfe\xa8\xf6\x6b\x80\x99\x0a\x7f\x56\x0b\xec\x53\ +\x43\xb6\xe9\x13\x37\x58\x65\xba\x32\x18\x61\xc1\xb9\xd7\xaa\xa6\ +\x07\x56\xac\x7f\xa9\x7c\x65\x69\x0f\xdf\xa9\x78\x89\x16\xa8\x58\ +\x64\x98\xca\x0a\x7d\x78\x1e\x6b\x02\x2f\xed\x0b\xc4\xa6\x52\x98\ +\xe6\x2a\x78\xd6\xda\xda\x9a\x3f\xbb\x69\x8d\xda\x51\xe5\x5f\xde\ +\xff\x80\x7a\x69\x1b\xca\xa8\x31\x84\x95\x85\x31\x7f\xab\xe9\x5d\ +\x2d\xf2\x1e\x95\xda\x59\x44\x9b\x7d\x46\xb2\x79\x54\xcc\x65\xfe\ +\xbd\x33\xb9\xcd\x74\xd0\x5e\x02\x34\x8c\xf2\x40\xac\x5a\xf3\xfe\ +\x63\xab\x5e\xc3\xa9\x66\x42\xfd\xd1\xcf\xd6\xfa\x99\x48\x50\x48\ +\x8c\x33\xa7\xf3\xc2\x37\xbf\x42\x2e\x1a\x74\xb9\xaf\x12\xd6\xfe\ +\x15\x0f\xa6\x42\x0d\x50\x8d\x8e\xbd\x8c\xb3\x9c\x71\x9c\x23\x52\ +\x44\x5a\x20\xf2\x1f\x3c\x03\xa7\x2e\x87\x67\x1d\x09\xfd\xe5\x7c\ +\xe1\x2f\x3b\x50\x72\xc0\xd1\xa8\x55\x2e\xdf\xbb\x76\x8b\xfa\xf3\ +\x36\x94\x53\x7d\x08\x67\xa6\x22\x3d\x86\xc0\xe4\x89\xfb\x9c\x84\ +\xe5\xd2\x63\xa6\xdf\xf9\xcd\x6e\x53\x88\x50\x69\x7d\xed\x0f\x9d\ +\xf2\x01\xec\x58\x72\x74\x5e\xef\x38\x8f\x38\x02\xb2\x4b\x8d\x67\ +\xbb\x28\xc4\x1a\x20\xad\x09\x2e\x98\xee\x4b\x2f\xe9\xe3\xe9\x2e\ +\x8c\x4e\x85\x24\xf0\x3c\x98\xf2\x12\x12\x54\xfc\xe0\xdc\xcb\xd4\ +\xfc\x95\xc8\x6c\xf2\x42\x73\xc9\xb3\xa2\x48\x7e\x12\x2d\x3a\x6a\ +\x21\x3c\x6d\x15\x0c\x94\xa0\xa7\x54\x2b\xfc\xe5\x70\x9b\xd4\xe8\ +\xb3\x4b\x7c\x65\xfd\x16\x75\x51\x1b\xca\x2a\x17\xfa\x6b\xfa\x68\ +\x8c\x3a\x21\xd7\xfc\x91\x94\xf3\x7b\x97\x48\x66\x26\x87\x19\xd9\ +\xff\x20\x15\x36\xb4\xe5\xdb\xda\xf0\x8c\x07\x28\xea\x13\x24\x34\ +\x16\xfe\xec\xb9\x9d\xee\x71\xb6\x99\xe2\xfe\xd4\xe8\x2e\x93\x89\ +\x0c\x05\x44\x98\x36\x01\x7e\x73\x9e\x6c\x5d\x39\xc0\x33\x34\x8c\ +\x4d\x45\xb5\x7e\x28\xf4\x15\x4b\xd0\x2b\xe1\x16\x13\xc1\xda\x2a\ +\x19\x6d\x90\x75\x9a\x17\xf5\xc0\x93\x96\xc1\x60\x39\x23\xfc\xd6\ +\xf1\x3e\x05\xbd\x0a\x4e\x29\xf1\xcd\xdf\x6f\x51\xcf\x69\x43\x79\ +\xd5\xc2\x70\x5e\x36\xce\x8f\x15\xf5\x89\x34\x81\x1a\xf4\xa7\xd7\ +\x35\xbc\x28\x02\x24\x0a\x55\x51\x3f\x6a\xc7\xa7\xb5\x9c\x00\x66\ +\xa4\xe2\x01\xd7\xd5\xfd\xf8\x66\x89\x50\x4b\x02\x65\x76\xea\xad\ +\x45\x5a\xc0\x1a\xf1\x75\xec\x93\x7f\xa5\xa6\x3d\xdb\xf0\xb5\xe7\ +\xcb\xad\xab\x06\xf9\x53\x05\x13\x53\x96\x43\x1c\xf9\x07\x53\xc6\ +\x3a\xb6\x49\x61\x0b\x7e\x46\x1b\xd8\x04\xa9\x1a\x28\x29\x38\x7a\ +\x20\x20\x81\x5d\xf3\x97\xdc\xa0\x8d\xa0\xaa\xa0\x02\x0c\x28\x38\ +\xa6\xcc\xcf\xae\x79\x44\x1d\xdd\xea\x32\xab\x2d\x2b\x75\x7e\xae\ +\xbd\x6f\x99\x40\xce\x62\xff\x31\x23\x0c\xe5\x59\x33\xd3\x7b\x16\ +\x20\x18\x3c\x7e\xd0\x8e\x4f\x6b\xd7\x0a\x31\xbf\xaa\xf9\xc8\xa2\ +\xe3\x54\x88\xad\xe8\x7a\xcb\x4f\xa8\xf2\x27\xfe\x14\x0f\x9a\x1c\ +\xe1\xcf\x0c\x7b\x9c\xb6\x16\x00\xb8\xf6\x3c\xf9\xfd\xea\x01\x9e\ +\xad\x0c\x93\x93\xa1\x06\x98\x8a\x34\x81\x97\xec\xa3\xe3\x6a\xe8\ +\x1c\x57\xbc\x4c\x04\x29\x32\x91\xbc\x84\x28\x91\x49\x84\xc0\x12\ +\x07\x06\x9c\xa4\xe6\x2f\xe9\x20\x24\xea\x3a\x70\x8d\x81\xaf\x09\ +\x5c\xa9\x50\xb7\xf5\x70\xcb\x07\xef\x55\xfd\x33\xf9\x96\x99\x40\ +\xff\xb3\x33\x84\xf0\x8c\x42\xdb\x3f\x3a\xee\xf7\x67\x36\xf0\x25\ +\x6b\x56\x01\x4c\xb1\xc5\x5c\xe6\x4f\xb4\xe5\xfb\xda\xf1\x10\x6c\ +\x02\x4c\xa7\xa6\xb7\x8f\x8b\xd2\x04\xd7\x6c\xd7\xbb\xa2\x61\x8b\ +\x71\xf8\x31\xab\x11\x66\xe0\x07\x44\xb8\xf6\x7c\x59\xbf\x7a\x80\ +\xe7\x1a\x9f\xea\x54\x35\x31\x83\x62\x32\x58\x84\xa8\x54\x83\x73\ +\xcf\x04\xd7\x44\x42\x5f\xb5\xf6\xd5\x2c\x19\xfc\x20\x52\x54\xf6\ +\xa0\x24\x01\x01\x5c\x9d\x6c\x77\x2a\xd8\xaa\x83\xfe\x47\x7d\xfd\ +\x2c\x18\x3a\x84\x47\x2e\xb9\x41\x95\xdb\x52\x72\xc2\x0b\x10\x4a\ +\xe9\x78\x7f\x68\xfb\x87\x24\x70\x97\x7a\x0f\x18\xc9\x99\xc1\xa1\ +\xa9\xa0\x47\x6d\xba\xaa\x72\x5b\x5b\xbe\x8d\xf6\x11\xe0\x46\x60\ +\xac\x36\x03\xac\x4e\x55\xd9\x8c\xc9\xd3\x00\x45\x5a\xc1\xe7\x4c\ +\x7f\x9f\xda\x90\xad\xfd\x33\x24\x78\xea\x93\x7e\x31\xf3\xb9\x7c\ +\xae\xbd\x40\xae\x5b\xd5\xcf\xa7\xa6\x3c\x98\xaa\x86\x9b\x97\x6c\ +\x95\xec\x71\x35\x6d\x0e\xd9\x1a\xc1\xd6\x02\xd9\xad\x32\x06\xde\ +\x44\x50\xf3\x47\x44\x70\xec\x4d\xc1\x82\x41\x96\xf4\xac\xe5\xc1\ +\xb6\x94\x9c\xe1\xfc\xa4\xb6\x27\xe8\x1a\x6b\xd5\xfe\x4a\x98\x94\ +\x5e\xb3\x3a\x5b\x3c\xd3\x86\x65\xff\x9b\x49\x7e\xd6\x96\x6f\xa3\ +\x4d\x04\xa8\xf1\x03\x8a\x04\xba\x51\x6d\x9f\x4a\x4b\x9b\x49\xb2\ +\x4b\xad\xf2\x7c\x26\x53\xb5\x7f\xfa\xd8\xf1\x0d\x2f\x9e\xcd\x77\ +\xac\x7f\x99\x5c\xbc\xac\x8f\xdb\x2b\x3e\x4c\x7a\x69\x02\xc4\x9b\ +\x9f\x1c\x4f\x84\x44\x88\x35\x80\x1f\x68\x88\x6a\xa8\x29\x2a\x16\ +\x31\x2a\x96\x86\x18\x1b\x85\x3d\xbb\x02\x61\x77\x9d\x60\xaf\xa3\ +\xae\xda\x21\x11\x16\x1d\xc2\xea\x4f\x6c\x51\xf7\xb4\xb2\xdc\xf4\ +\x95\x8e\x83\xf0\xe2\x94\xe3\x1b\xd9\xfe\x3e\x41\xed\xbf\xa2\x7a\ +\xbf\x48\xce\xf4\x25\xd3\x61\x42\xc6\x04\x52\x95\xf6\x75\x0a\x6c\ +\xe7\x4a\xf1\xbf\xaa\xf9\xe8\x7a\xc7\x39\x73\xcc\x34\xf8\xcf\xe1\ +\xfe\x2e\xb5\xde\xab\x15\x7c\xfb\xf8\x5d\xb3\xfd\x88\x43\x7a\x78\ +\x61\x8f\xcb\xa4\xe7\xc3\xa4\xa5\x05\x22\xff\x60\xd2\xda\x22\xad\ +\x30\x69\x11\x21\xd6\x08\x96\x06\x98\xca\xf8\x0b\x53\x1e\xec\xd9\ +\x0b\x8f\x6d\x06\x31\x89\xd0\xeb\x70\x8b\xba\x64\x2f\x5f\xc2\xba\ +\x8f\x6f\x56\xbf\x6f\x59\x89\x09\xaf\x44\xd4\x92\xd8\xf1\xf5\x6d\ +\xc7\x57\xe1\xf4\x9a\x6d\xbe\x23\x27\x4e\xbb\xe6\xcf\xab\xf4\xa2\ +\xf3\x29\x76\x9b\xcf\xf8\x6d\x5b\x86\xaa\x9d\x04\xf8\x49\x7e\x06\ +\x64\xfa\x96\x17\x65\x50\x33\x5a\x63\x5c\x3d\xd5\x9f\xe2\xde\x6c\ +\xef\x4c\x6b\xb8\xe3\x53\x4f\xfe\xa9\x9a\xd5\x22\xcc\xbf\x39\x5f\ +\x36\xaf\x1c\x08\x66\x85\x33\x12\x90\x60\x32\x34\x89\x62\xad\x60\ +\x13\x23\x24\xc2\xa4\x6d\x3a\x55\x43\x5f\xc1\x4b\xb7\x32\x47\x3e\ +\x44\x44\x90\xdd\xfb\xe0\xee\x07\x83\xb4\xc8\xfc\xd1\xd6\xa6\x14\ +\xac\x3e\x94\xb3\x2e\x79\x54\x35\x37\x79\xed\x34\xa0\x47\x1c\x17\ +\xc3\xc7\x6b\x9c\xdd\xc4\xf4\x31\x6a\xb1\xd7\x8f\x24\x32\x34\x17\ +\xe6\x0f\x93\xdc\x3d\xd7\xdf\x52\xf7\x3b\xdb\xf5\x20\x33\x52\xb9\ +\x19\x48\x54\x76\xb3\x76\x7f\xdd\xdf\x6b\xc8\xd3\x63\xb6\x6b\xd7\ +\xf3\x19\xb7\xbb\x2f\xa7\xba\x32\x0b\x9f\x38\xe5\x67\x4d\x2d\x01\ +\x5d\x88\x1b\x2e\x90\xaf\x2e\xef\xe7\x37\x71\x20\xca\x87\x89\x2a\ +\x4c\x56\x60\xdf\x14\xec\xad\xc2\xee\x4a\x90\x36\x55\x4d\x34\xc5\ +\xa4\x97\xd6\x12\x15\x8b\x30\xd1\x6f\x76\xf7\x8b\x8a\x0f\xa3\x13\ +\x70\xcb\x3d\xb0\x77\x5f\xa8\x01\xac\x41\x39\x11\x11\x8e\x5c\xc5\ +\x73\x3e\xf2\x88\xfa\xf6\x9c\x16\x98\xf0\x56\x44\x1d\x8b\x10\xd8\ +\xfd\x76\xed\xef\x43\x79\x45\x75\x93\x21\x58\x79\x53\x6a\xff\xdb\ +\xcc\xfd\x73\x23\x40\x32\xc9\xbf\xcd\xe9\x77\x34\x40\x3b\x35\x00\ +\xc0\xff\xcd\xcd\x04\x28\x10\x72\x55\x93\x41\x85\xd7\x46\xe7\x86\ +\xb5\xde\x76\x7d\x53\xd6\x14\xb2\x48\x70\xaa\x67\x78\xf5\x6c\x3f\ +\x64\x41\x2f\xe7\xf7\xbb\xc1\x34\x2d\x10\x74\xbf\xde\xed\xc3\x23\ +\x15\x78\x68\x02\x1e\xaf\xc0\x36\x81\xb1\x60\xb8\x64\xca\x34\x9a\ +\x0c\x4d\xa6\x89\xd0\x4f\xb0\xfd\x89\x49\x4b\x5b\x44\xc7\xa3\x93\ +\x70\xc3\x5d\xb0\xf9\x89\xb4\xe0\xc7\x4b\x42\x29\x38\xfa\x30\x5e\ +\xf9\xfe\x07\xe6\x66\x2c\x81\xfe\x47\xa7\x17\xa3\x2e\x8e\x84\x3d\ +\x15\xf3\xf7\x15\xa5\x21\xff\x61\x4f\xcb\xe1\x76\xde\x37\x5d\xfb\ +\xd7\x89\xfe\x50\x61\x5c\x1d\xab\xae\x98\x8b\x6f\x68\xfa\x5b\xdb\ +\xf9\x30\xb0\xd8\x5d\x64\x06\xc5\x69\xe4\xa7\xd5\x5c\x93\x43\x92\ +\x0a\x4f\xf7\xf6\x25\xfe\x40\xd5\xee\x99\x19\xf4\xcf\xb9\xf4\xc4\ +\x9f\xa8\x59\x0d\x07\xfd\xed\x4b\x64\xef\xf2\x7e\xde\xa2\x54\x30\ +\x19\xdd\x98\x90\xb0\x81\x30\x86\xaf\x41\x95\xa1\x34\x04\xa5\xfe\ +\xa0\x22\x8d\xb5\x41\x35\xed\x2c\x4f\x58\xc2\x3f\x51\xad\x75\xb2\ +\xc7\x27\xe1\xb7\x77\xc0\x9d\x0f\xe5\xac\x46\x1a\x12\xe2\x84\x35\ +\x0c\xbf\xf7\x3e\xf5\x89\x59\x97\x92\x51\x7f\x8e\xb0\xba\xc6\xf4\ +\xf1\x15\xda\x91\x7d\xb2\xc0\x5f\x99\x57\x2f\xa5\xca\xab\x59\x58\ +\xe6\x8f\x8c\xf1\x13\xf3\xd6\xa8\xc3\x78\x7b\xd0\x56\x02\x98\x91\ +\xca\x03\xc0\xfa\xd4\xc7\xdb\x99\x90\x9b\xa6\x1a\x68\x09\x6a\xb5\ +\x80\x80\xec\x51\xc7\x57\x2b\x3c\x14\x35\x36\x45\x43\x1c\xc3\x3e\ +\x39\xc7\x7a\x86\x59\x77\x35\x5e\xff\x52\xf9\xde\xf2\x3e\x7e\x20\ +\x90\x9a\xc1\xa9\x64\x35\x68\x45\x44\x58\x30\x08\x87\xad\x82\x55\ +\x2b\xa0\x54\x0e\x85\xdd\x32\x8f\xa6\xaa\x69\xc1\x8f\xc9\x90\x39\ +\xbe\xe1\x5e\xf8\xcd\x1d\xc1\x73\xec\xe5\x62\x15\xe0\xba\x70\xd2\ +\x51\x7c\xe8\xdd\x77\xaa\x19\xcf\x5c\xad\xbf\xea\x0e\x21\xfc\x2d\ +\x3e\x89\xe9\xe3\xc7\x51\x1f\x29\x2d\xaf\x8e\x1b\xa1\x3c\xab\xda\ +\x5f\x72\x37\x51\x13\xea\xa3\xb3\x2d\x93\x69\x7f\x6f\xbb\x1f\x48\ +\x9e\x19\x64\x67\x4a\xbd\x8c\x82\xe6\xb5\x80\x70\x88\xd9\xa6\x9d\ +\xaa\xc7\x13\x76\x7f\xfc\xa8\x0b\x82\x67\xf8\xbb\x75\x3f\x9e\xfd\ +\x5a\x5f\x03\x83\x5c\x34\xe8\xf2\x84\x6f\xa5\xc5\xad\xb9\x51\x8b\ +\xae\xd5\xaa\x7b\xc8\x02\x38\x69\x2d\x3c\x69\x1d\x2c\x59\x08\x13\ +\x7e\xc6\x34\xaa\x5a\x5b\x81\x86\xb8\xf5\x21\xb8\x7a\x43\x10\x72\ +\x0d\xbf\x3e\xde\x97\x5d\x38\xed\x68\x3e\xff\xf6\x3f\xa8\x37\xcd\ +\xe8\x83\x0c\xef\xc3\xb0\x24\x15\xf2\x0c\x35\x41\xef\xca\xea\x83\ +\x5e\x38\x33\xc4\xdc\xd6\xfe\xc0\x38\x0f\x9a\xcb\xfc\x3b\x66\x5b\ +\x1e\xd3\x45\x27\x08\xf0\x4d\xc0\x8b\x33\x20\xde\xab\x62\x81\xcf\ +\x17\xf0\xc6\xe6\x91\x70\xb8\xbf\x4d\x6f\xaf\x7a\x8c\xc5\x63\x7d\ +\x93\xfe\xfb\x87\x79\x86\x0f\xcd\xf6\x63\xae\x7f\x81\x54\x97\xf6\ +\xf2\x4a\xd7\x9a\x22\x25\x12\xf6\xb0\x4b\x73\xac\x05\x52\x71\xfc\ +\x01\x38\xe3\x58\x78\xd1\x59\x70\xec\xea\xa0\xb1\x6e\x32\xd4\x02\ +\x13\x55\x18\xf7\x60\x22\x74\xa4\xe3\x7d\x35\xb9\xe6\xae\x4d\x70\ +\xd5\x2f\x61\x34\x1c\x5f\x6c\xbb\xf5\xfd\x3d\x70\xd4\x2a\xfe\xf7\ +\x19\x57\xab\x93\xa6\xf3\x2d\xfa\x0a\xf7\x58\x0c\x7f\x55\x53\xf3\ +\xfb\x8a\x9e\xe5\xd5\x07\xab\x4a\x8e\x16\xbb\xdc\x98\xbe\xcc\xe7\ +\xd7\xfe\x0a\x19\x63\x64\xb6\x65\x31\x13\x28\x99\xc5\xe4\x5d\x33\ +\x85\x1e\x2e\x7f\x1b\x78\x65\xf0\x06\x04\x34\x54\x80\x96\xcc\xb9\ +\xb5\xcf\xfe\x96\x3d\xb6\xff\x9f\xfd\xdd\xe1\xc6\xd2\x0a\x73\xba\ +\xab\x71\x4b\x56\x0b\xab\xeb\x20\x25\xcd\x05\x0f\x9e\x27\x3f\x9c\ +\xed\x37\xad\xfa\xa6\xfa\xe9\x96\x29\x9e\xd7\xe3\xc2\x82\x5e\x18\ +\xea\x81\xc1\xde\xa0\xcf\xff\x40\xb8\xf5\xda\x43\x20\xdd\xa4\xd7\ +\x67\x39\xf4\x46\xee\x7e\x2c\xa8\xdd\xf7\x86\x6d\xe6\x4a\x27\x2b\ +\x4a\xd5\x58\x79\x12\x6c\x83\x7d\xf0\x86\xa7\xc3\x91\xcb\x82\xdf\ +\x1e\xdf\x0d\xbf\xf8\x23\xdc\xbc\x11\x06\x4a\xdc\xb6\xf1\x35\x72\ +\x7a\x53\x65\x72\x85\x3b\x88\x61\x03\xbe\x3a\xb1\x46\xf8\x97\x78\ +\x0f\x7b\x65\xb3\x86\xe8\xb9\xe4\x68\x80\x46\x62\x94\xad\x9c\xc2\ +\x79\x2b\xf1\x81\x8a\x9a\x64\xa7\x1a\x32\x9f\xf4\x67\xbb\x12\xe8\ +\xb4\xd1\x29\x02\x9c\x05\x24\x0d\x38\x29\x81\x97\x50\xe0\xc9\x21\ +\x83\xd4\xa6\xd7\x90\x41\xf2\x7f\x2f\x71\x5d\x69\xb9\x79\x8a\xab\ +\x71\x22\xdb\x3c\xec\x70\xb6\xc7\xd5\x3c\x79\xe3\x79\x32\xeb\xd1\ +\x47\xcb\xfe\x5d\xdd\x54\x51\x9c\x31\xd8\x17\x10\x60\xa0\x27\x10\ +\xfc\xfe\x70\xb3\x85\xbf\xc7\x1e\x06\xe9\x26\x9d\xdf\x94\x82\xfb\ +\x1f\x87\xf5\xf7\xc2\x63\x3b\x20\x5b\x3c\xd9\xd2\x8a\xce\x97\x84\ +\x13\xd1\x6f\x1f\x4d\x5f\xb3\x62\x90\x53\xef\x7c\x85\xdc\x5e\xb7\ +\x3c\xae\x70\x15\x86\xef\xe0\xab\x97\xc7\xe1\xce\x48\xf8\x0f\xf1\ +\x1e\xf5\x7b\xcd\xe1\xb1\xd0\x4b\xf2\xdc\x69\x13\x20\xbb\x85\x8e\ +\xb5\xda\xc5\x8f\xfc\x4b\xcc\xac\xda\x67\x66\x8a\x4e\x98\x40\x98\ +\x91\xca\x8d\xc0\x2f\x52\x99\x93\xdd\x4f\x67\xa3\xc1\xb9\x00\x1e\ +\x4f\xab\x6e\xd3\xbf\xf3\x0c\xd5\x54\x1f\x7d\x9f\x85\x55\x9f\xef\ +\x1f\xf9\x43\x35\xeb\x15\x09\x9f\x78\xad\x9c\x79\xa8\xcb\xd9\x03\ +\xb0\x41\x1b\xa6\x22\x73\xc7\x75\xd2\x7d\x79\xec\x56\x5d\x3b\xa4\ +\xa9\x54\xa0\x99\x4e\x3a\x1c\xde\xf9\x5c\x78\xc7\x73\x82\x63\xa5\ +\x6a\x05\x2e\xf5\xa9\x12\x08\xbe\x2d\xfc\x91\x9c\x4a\xb9\x89\x3e\ +\x43\x3e\x1f\x8a\x85\xdf\xae\xf9\x87\xfc\x7b\xfc\x3e\x73\x58\xfc\ +\xac\xd9\x08\x7f\x5e\x5a\xa8\x05\x64\x4c\x5d\x3c\xdb\xbc\x9f\x29\ +\x3a\xa2\x01\x00\xf4\x70\xf9\x05\xd8\xab\x90\xd7\x33\x77\x9a\xd5\ +\x02\xf6\x35\xb9\xda\x81\xc0\x1c\x5a\x6e\x4e\x72\x1d\xfa\x5c\xbb\ +\xd7\xa5\xc3\xd5\xae\xe6\x15\x0f\x9f\x3f\x77\x19\xf2\xd4\xff\x52\ +\x67\xe9\x32\x97\xf5\xf7\xf3\xd4\x25\x43\xf4\xf5\x97\xad\xc1\xf0\ +\x0e\x9c\x5a\x82\xa3\x1c\xf8\x55\xe4\x23\xd8\x9d\xdf\xac\x78\xff\ +\xae\x7d\x70\xed\x5d\xb0\xe1\xc1\xa0\xc5\x38\x42\xbd\xf5\xd1\x00\ +\x7a\x1c\x76\x6c\x79\x83\xd4\xed\x00\xa8\x2f\x77\x5f\x84\xaf\x7e\ +\x88\x41\x27\xd1\x1e\x45\xcf\x42\xff\x36\xd3\xe7\x9f\x62\x82\xd2\ +\x88\xcd\xb0\x59\x9b\x3e\x99\xda\x9f\x7d\x3c\x6c\x3e\x6c\x8e\x9c\ +\xab\x3c\x9f\x2e\x3a\x46\x00\x00\x3d\x5c\xbe\x05\x38\x3d\x78\x13\ +\x9a\xf3\x05\x9a\x32\x83\x48\x93\x20\x7b\x9d\xc3\x6d\xee\x32\x73\ +\xb4\xeb\x32\xe8\x5a\x4e\xaa\xab\xf9\xc8\xe6\x97\xc9\xec\xe3\xe8\ +\x39\x78\xee\x2f\xd4\xba\x72\x99\xcf\xae\x1c\xe2\xd9\x17\x2d\x67\ +\xf0\x9c\x72\xb0\x7e\x94\x00\xff\xe0\x82\x67\xbd\x47\x24\xf8\x4e\ +\x46\x3b\x8c\x4f\xc1\xf5\xf7\xc2\xb5\x77\x07\x2d\xc4\x50\xd0\x3e\ +\x18\x1e\x2c\xee\xe3\x03\x0f\xbe\x5a\x3e\x5b\x98\xff\x5f\x76\x8f\ +\xc1\xa8\xdf\x63\x38\xc4\x16\xfe\xde\xa5\xde\x46\xcf\x35\x47\xa5\ +\x64\x57\x6a\x15\x75\xed\x49\x0e\xea\xd9\xfe\x46\x21\x5b\xd4\xfb\ +\xe5\xd3\xfe\xe7\x5a\x91\xe7\xcd\xa0\xd3\x04\x78\x2d\x76\xe3\x58\ +\x23\x41\x2f\x22\x48\xae\x36\x90\x62\x2d\x11\xa4\xdf\xeb\x2c\x31\ +\xbd\xa5\x32\x47\x38\x09\x01\x8c\xab\x79\xf9\xe3\x17\x4a\x4b\x47\ +\x23\xdd\xb0\x51\x9d\xb3\x53\xb8\xfc\xb8\x7e\x4e\x5b\x5b\xc6\xfd\ +\x2f\x07\xee\x73\x13\x6d\xa4\x33\x24\x00\xab\xd5\x97\xa0\x51\xef\ +\x77\x0f\xc0\xf7\x7e\x1f\x68\x84\x14\x09\xc2\x93\x3e\x97\x47\x1f\ +\x7f\x83\x1c\x51\x98\xf7\x5f\x2e\x2d\xc2\xe7\x5a\x0c\x27\x29\x3f\ +\x0e\x79\x9a\xde\x15\x95\x27\xaa\x70\x68\x56\xf8\xe3\x63\xfb\x26\ +\x33\xa9\xfd\xed\xbe\x45\x63\x3c\x6a\x3e\x64\x8e\xa0\x83\xe8\x88\ +\x0f\x60\xe1\x5b\x04\x63\x86\x03\xc8\x34\xf6\x8d\x6c\xfe\x46\x13\ +\xb8\x1a\xd6\xf9\xdb\xf5\x21\x53\xfb\xd4\x06\xcb\x1f\xd0\x15\x9f\ +\xef\x1e\xfa\x3d\xf5\x67\xad\xfc\xe8\xa7\x1e\x25\xd7\xbf\x64\xad\ +\x9c\x75\xcc\x0a\x29\xfd\x7c\x2f\xab\x6f\x7c\x8c\x6f\xdc\xbf\x99\ +\xad\xe3\x53\x48\x34\x11\x6f\xdc\xca\x9b\xb3\x77\x1d\x38\x67\x1d\ +\xbc\xfd\x4f\xd3\xb5\xbe\x15\xa1\x91\xbe\x32\xef\x2c\x7a\xbe\xfe\ +\x52\xe9\x18\x3c\xd6\x2b\x5f\x9d\x14\xd5\xfc\x8e\xc3\xae\x9e\x55\ +\x95\xb1\x39\x13\xfe\x3c\xa4\xf3\x5f\xd8\xa5\xde\xde\xca\x7c\x6e\ +\x06\x1d\xd5\x00\x00\x7a\xb8\xfc\x32\xe0\xea\x24\x81\xe6\xb4\x40\ +\x23\x5f\xa0\xc8\x1f\xa8\xdd\x84\x1e\xf9\x4d\x69\xb1\x9c\xeb\x6a\ +\x1c\x47\xc7\x76\xf8\x97\x1c\xcd\x5f\x6f\xb9\x70\x46\xeb\x9c\xcf\ +\x08\x1f\xd8\xa2\x9c\xc7\xb7\x70\xc9\xe2\x01\xde\x7c\xf8\x72\x0e\ +\x5b\xb2\x20\xa8\xf8\xed\xda\x1f\x95\x9e\x3c\xfb\x93\xdf\x0f\x42\ +\x9f\x90\xc8\xe4\x60\x89\xf5\x9b\x5e\x2f\x4f\xcd\xcd\xef\x2f\x96\ +\x9e\x8e\xe1\x6a\xe5\xab\x25\x51\x4d\xdc\x33\xe0\xdf\x27\x0b\xfc\ +\x23\x8d\x04\x8b\xd2\xd9\x4e\xef\x8c\xec\x7e\xfb\x9a\xa2\xda\x7f\ +\x37\xbf\x35\x17\x9b\xa7\xb7\x2b\x6f\x8b\xd0\x71\x02\x00\xe8\xe1\ +\xf2\x4f\x80\xe7\x07\x6f\x44\x7d\x21\x4f\x99\x3d\x75\xcc\x9c\x22\ +\x7f\xa0\x68\x73\xb8\xcd\x59\x6c\x16\xb9\x25\x8e\xb0\x46\x61\x5d\ +\xe3\x68\x5e\xbb\xed\xe5\x32\xd6\xc4\x67\xcc\x39\xde\x78\xab\xfa\ +\xcb\xc5\x03\xfc\xf9\xea\x65\xac\x5d\xb1\x30\x98\x6b\x33\xdb\x8f\ +\xf5\xdf\xaf\x87\xeb\xc2\x00\xae\x04\x9f\xed\x2d\x2a\xb3\x6e\xe3\ +\xeb\x64\x63\x4d\x3e\x7f\xa1\xf4\x46\xe5\xab\x7f\xc6\x50\x0e\x87\ +\x35\x56\xfb\x96\x57\xef\xaf\x6a\x39\x5e\x24\x6e\x72\x48\x84\x5f\ +\xa8\xe2\x33\x21\x46\x55\x44\x4b\x19\x87\x1e\xa0\x4c\xa3\x35\x3e\ +\xf3\x1a\x2b\x6d\xe1\xaf\x52\x65\x93\x3a\xc6\x7c\xc1\x9f\xf9\xe4\ +\xc9\x73\x84\xf9\x42\x80\xe3\x81\x3f\x40\xb8\x2c\x66\x56\x0b\xd4\ +\x73\x88\x1b\x3a\xc3\x34\x47\x80\x60\x9b\x50\x7d\xb2\xc1\x5d\x28\ +\xe7\xba\x1a\x37\x24\xc1\xad\x8e\xe2\xbc\xed\xaf\x94\x4d\x8d\xbf\ +\xa4\x75\x78\xed\x4d\xea\x75\x8b\x16\xf0\xc1\x23\x96\x72\xc2\xaa\ +\xc5\x44\x0d\xcf\xfc\xfa\x2e\xf8\x96\x35\x83\xce\x82\x1e\xfe\xcf\ +\xa6\xd7\xca\x9b\x53\xf9\xfb\x85\x92\xc2\xf0\x31\x65\xd4\x47\x23\ +\x41\xec\x59\x60\x36\xaa\x41\x7f\xb9\x6f\xe8\xa5\xaa\xb6\x98\x2a\ +\x63\xc6\xc3\x13\x4f\x39\xe2\x33\x80\x61\x29\x42\x6f\x6c\x4e\x46\ +\xce\xab\xb0\x07\xd8\x8a\x66\x0a\x57\xfa\xe8\x93\x7e\x06\x64\x09\ +\xda\x5a\xd3\xb7\xc8\xf1\x0d\x23\x3f\xf2\x84\xba\x52\x3e\xe1\x0f\ +\x77\x32\x3f\x23\xcc\x0b\x02\x00\xe8\xe1\xf2\xe7\x80\x60\x42\xd8\ +\xbc\xc6\xad\x66\x4c\xa1\x7a\xe6\x50\xf3\x24\x00\xcd\x7d\x7a\xa1\ +\x4c\xb9\xbd\x72\x72\x18\xb7\xdf\xec\x68\x2e\xd8\xf5\x2a\xb9\xa9\ +\xd3\xf9\x04\xf0\xea\x9b\xd4\x0b\x16\xf6\xf3\xb1\xc3\x96\x72\x7a\ +\xc5\xa3\xe7\xf2\x9f\x84\xad\xc2\x65\xae\x79\xfc\xf5\x92\x1a\xfc\ +\xaf\x3f\x5f\xea\x53\x46\x7d\x0d\xc3\x6b\x30\xe0\x38\xec\xeb\x5d\ +\x56\x1d\xad\x56\x95\xf2\x26\xd4\x4e\xbf\xc2\x51\x08\x7d\xc5\xed\ +\x2c\x2a\x2d\xc4\x79\xe1\x4c\xa1\x8a\x56\x37\xcb\x90\xe9\x53\x0b\ +\xcd\x3a\x9c\x88\x38\xd4\x9a\x3e\x13\xec\x66\xb7\x5a\x6e\x3e\xdd\ +\xfe\x56\xdf\x3c\xcc\x27\x02\x0c\x11\x0c\x98\x09\xe6\x95\xcf\x8b\ +\xfa\x34\x32\x85\xea\x12\x80\xe6\x49\x10\x3c\xdf\x50\xe2\x7a\x67\ +\xa1\x59\xe3\x96\x38\xdc\xd1\x78\x5a\x71\xa5\xa3\xb9\x78\xd7\xab\ +\x64\x7b\xa7\xf3\x2b\xc2\xf3\x7e\xa5\x4e\xbe\xe7\x71\x56\x21\x6c\ +\x7f\xe4\x75\x72\x73\x9c\x9f\x9f\x2f\x29\x65\xd4\x6b\x31\x7c\x0a\ +\xc3\x11\x18\x55\x71\x07\xfd\x3f\x88\x92\x7e\xaf\xc2\x2a\x84\x43\ +\x1a\x37\x3c\xaa\x3c\x61\x2f\x48\x8b\xb5\x84\xc1\x65\x23\x4b\xfc\ +\x1e\x86\xe4\xb0\xec\x80\x7a\x79\x5c\x0d\xcb\x67\xfc\x2b\x3b\x9d\ +\x6f\x11\xe6\x0d\x01\x00\xf4\x70\xf9\x4d\xc0\xd7\x93\x04\x1a\x9b\ +\x42\x79\xce\xee\x6c\x49\x40\xea\xdc\xa3\xc4\x7a\x67\x28\x20\x82\ +\x56\xec\x71\x34\x9f\xd4\x8a\x2f\xef\xbe\x48\xa6\x3a\x9d\x67\x79\ +\x70\x3e\x5b\x3e\x17\xc3\x17\x30\x9c\x8d\xa8\x29\x71\xcc\x6f\x29\ +\x99\x35\x08\xc7\x34\xd5\x92\x9e\x27\xfc\x45\x24\xb0\xe7\x05\x35\ +\x99\x74\x87\x5b\x59\x61\x56\xd1\x67\x96\xe3\x2b\x18\xe5\x1e\xf3\ +\x51\x73\x7c\xa7\xf3\xc7\xc6\xbc\x22\x00\x80\x1e\x2e\x5f\x0d\xbc\ +\x2c\x78\x3b\x9a\x33\x77\xa6\x45\x00\xea\x93\x80\xc2\x34\x8f\x12\ +\xeb\xf5\x02\xb3\xc2\x2d\x71\x8c\xd6\x3c\xa4\x15\x1f\xdc\xf7\x1a\ +\x99\x37\xcb\x1a\x39\x9f\x29\x1f\x8d\x70\x19\x86\x57\x80\x1a\x15\ +\xd7\xbf\x0b\x47\xd6\x22\xd9\x95\x1d\x0b\xb6\xf8\x37\x55\x7c\x4d\ +\x0d\x01\x54\xfe\x6f\xb1\xdd\xaf\x0c\x25\xb9\x85\x65\xfe\xb1\xec\ +\x52\xcf\x35\x9f\xf3\x5b\x37\x88\x7f\x06\x98\x8f\x04\x58\x0c\xdc\ +\x06\x1c\x16\xbc\x21\xcd\xd9\xfb\xd3\x26\x41\xe6\x7a\x68\x8e\x10\ +\x00\x9a\x3b\x55\xaf\x6c\x77\x06\xe5\x34\x47\x73\x97\x56\xfc\xcd\ +\xd8\x6b\xe5\x37\x9d\xca\x33\xe7\xb2\xf2\xa1\x08\x7f\x83\xe1\xdd\ +\x68\x6e\x97\x92\x99\x40\xc9\x93\x91\xd0\x31\x6d\x58\xdb\xdb\xbf\ +\xab\xfa\xbf\xa7\x84\xbc\x8e\x89\x14\x69\x86\x24\x6d\x0c\xe1\x62\ +\x33\x52\xf9\x7c\xa7\xf2\x29\x0f\xf3\x8e\x00\x00\x7a\xb8\xfc\x0c\ +\xe0\x97\x44\x0d\x75\xcd\xd8\xfb\x8d\x7a\x83\x36\x22\x01\x34\x27\ +\xfc\xe9\xe3\x49\x1c\x6e\x56\xfd\xe2\x3a\xbd\xb2\x40\x6b\x7e\xaa\ +\xe1\x7b\x4a\xf1\xdb\xb1\xd7\xb6\xb6\xfd\xc0\xb9\xac\x7c\x38\xc2\ +\xcb\x11\x2e\x44\xb1\x52\x5c\xb3\x1b\x47\x56\x23\xac\xce\x0d\x43\ +\x36\x45\x02\x55\xff\x1a\x93\xb9\xd6\x50\x5f\xf8\xb3\xe9\x01\xbe\ +\x0e\xbc\xd3\x8c\x54\x2a\xad\xcc\x9f\x66\x31\x2f\x09\x00\xa0\x87\ +\xcb\x1f\x03\xfe\x2e\x78\x4b\xf2\x6b\xfa\xe9\x76\x89\x2e\x34\x7b\ +\x64\x26\xc2\x9f\x4d\xf3\x50\xdc\xa5\xca\xb2\x43\xf5\x82\x2e\xcb\ +\x5d\x4a\xf1\x03\xad\xf8\xc5\xc4\xeb\x64\x4e\x22\x1e\xce\xa7\xcb\ +\xeb\x10\x5e\x89\x92\x73\xd1\xf4\x88\x23\x3d\x68\x39\x05\x09\xd7\ +\xe3\xad\x27\xf8\xf6\x71\xae\x80\xe7\xd4\xfc\xd1\x35\x26\xe7\xda\ +\x5c\x5f\x80\x62\x02\xa4\xf1\x6b\xe0\xe5\x66\xa4\xb2\x73\x2e\xf2\ +\x65\x36\x98\xcf\x04\x70\x08\x32\xea\x69\xc1\x9b\xd2\x9c\x90\x4f\ +\x87\x04\xf6\x7d\xeb\x99\x43\xd0\x1c\x11\xec\x3d\x4c\xa2\x79\x04\ +\xc5\x16\x14\x77\x29\x2d\x9b\x28\xf1\x84\x76\xd9\x81\x23\x5b\xb5\ +\xcb\xe3\xc0\xe6\xa9\xd7\x27\x8d\x6c\xce\xa7\xcb\x0e\x70\x28\x5a\ +\xd6\x00\x2b\x50\x2c\x11\x25\x03\x68\x0e\x43\xc9\x89\x08\xc7\xa2\ +\x58\x03\xd6\x98\xdc\x7a\xfb\xa6\x48\xd0\xc0\xe4\x69\x26\x2c\xda\ +\xc8\x2f\xc8\xc7\x7d\xc0\x4b\xcc\x48\xe5\x3e\x3a\x88\x79\x4b\x00\ +\x00\x3d\x5c\x3e\x82\x60\x5e\xd1\x60\xbc\x53\x8d\x40\x4b\x83\x46\ +\xb0\x3a\x3e\x01\x14\x10\x43\xd2\xbf\x35\x3a\xae\xb7\xa7\xe0\x3c\ +\x48\xf3\x09\xd6\x4d\x18\x25\x58\x4f\xb9\x17\x38\x04\x18\x42\x72\ +\x16\x30\x97\x9c\xe3\xa2\xb4\x22\x32\xd4\x9c\xab\xda\xdf\xa7\x2b\ +\xfc\x8d\x4c\xa3\xfa\xe2\xb5\x13\x78\x91\x19\xa9\xfc\xae\x29\x81\ +\x68\x01\xe6\x35\x01\x00\xf4\x70\xf9\x29\x04\x83\x67\x82\xd9\x87\ +\xa7\xa5\x05\x20\x77\x6c\x00\x50\x5f\x23\xc8\xcc\x85\xde\x16\xf6\ +\xa2\xe3\xe9\x42\x1a\x1c\x4f\x5b\x0b\xa8\x3a\xa4\xa0\x58\xf8\xeb\ +\xb6\x03\x30\x5d\xe1\x8f\xb0\x19\x38\xd3\x8c\x54\xb6\xcc\x22\x87\ +\x66\x8c\x79\x4f\x00\x88\x3b\xcc\x7d\x97\x3c\xa7\x38\x4f\x0b\x14\ +\x99\x43\xd3\x8b\xff\x93\xf2\x0d\xa0\x39\x42\xd4\x3b\xae\x97\x96\ +\x85\x34\x48\x6b\x46\xf8\xa3\x7d\x5e\x88\xd3\xfe\xad\x11\x09\xb2\ +\xd1\x9e\x5c\x02\x14\x3a\xbd\xcd\xe0\x3a\xe0\x4f\xcd\x48\xa5\xed\ +\xad\xc3\x9d\xee\x0e\xdd\x14\xcc\x48\xe5\xfb\xc0\x7b\x92\x04\x1a\ +\xd7\x4c\x35\x85\x33\x8d\xf0\x5e\xca\x91\x6b\x50\xf3\x99\x9c\xff\ +\xd7\xb3\x8f\xa3\xb4\x46\x5b\xde\xf5\x52\xe7\x99\x4d\x85\x2c\x9b\ +\x10\xe4\x9a\x77\x69\xb9\xf0\x43\xe0\xe7\x7d\xb1\x6d\x02\x65\x61\ +\xbf\xd0\x00\x11\xf4\x70\xf9\xf3\x40\x32\xe9\x53\xb3\x9a\x20\xa5\ +\x15\xc4\x8e\xe7\x4f\xd3\xe9\x95\x99\x9b\x40\x79\xe7\x8d\x30\x17\ +\x5a\xa0\x68\xf2\xe1\xa6\x4c\x1f\xd5\x98\x58\x99\x85\x33\x66\x20\ +\xfc\x36\xde\x6a\x46\x2a\x57\xcd\xea\x0e\xd3\xc4\xfe\x46\x00\x45\ +\x30\xaf\xd0\xab\x82\xb7\xcf\x6e\x4d\x44\x7e\x1a\x99\x44\x14\x9c\ +\xdb\xe9\x79\x44\x80\xe6\x48\xd0\x28\x5d\x9a\x48\x6f\x48\x02\x55\ +\x40\x86\xcc\x71\x21\x09\x54\x03\xa1\xa7\x15\xc2\x0f\xc1\x04\x7b\ +\x4f\x36\x23\x95\xdb\x67\x7d\xa7\x26\xb1\x5f\x98\x40\x11\xcc\x48\ +\x45\x80\xd7\x03\xff\x01\xd4\x8f\x52\xd4\x35\x0f\x72\xcc\x81\x22\ +\xd3\x23\x57\x10\x54\x62\x52\x34\x72\x0c\x0d\xd3\x33\x83\x8a\xae\ +\x6b\xca\xbc\x52\xf9\x42\x59\x37\x64\x49\xad\xc9\xd3\xcc\x7b\xe5\ +\xe5\xf5\xec\xd1\x0b\x5c\xd6\x6a\x39\xb2\xb1\x5f\x69\x80\x08\x7a\ +\xb8\xac\x81\xaf\x82\x35\xec\x6f\xc6\x63\x00\xa4\xb1\x26\xa0\xd9\ +\xbd\x34\x67\xf6\xcc\xa5\x13\x5c\x54\xdb\x67\xf7\x8d\x6a\x7f\x9f\ +\x60\x49\x4a\x8f\x60\xf3\xc3\x4d\xa8\xed\x80\x18\x0d\x54\x9e\x5e\ +\xb4\x67\x3a\x78\x86\x19\xa9\x5c\x3b\xe7\x77\xcd\xc1\x7e\x49\x80\ +\x08\x7a\xb8\xfc\x59\xe0\x7d\x49\x02\x33\x24\x81\x75\x2d\xcc\x8c\ +\x08\xb9\x69\x52\x7b\xcd\x4c\x60\x0b\x7b\xea\x9c\xe6\x84\x3f\xda\ +\x67\x8f\x0d\xc1\xca\x6d\x63\x0a\xec\x7e\xad\xcd\x98\x67\x0e\xc1\ +\x1a\xaf\x0e\xad\xb0\x23\xae\x33\x23\x95\x73\xe7\xfc\xae\x39\xd8\ +\xaf\x09\x00\xa0\x87\xcb\x1f\x06\xfe\x3e\xf9\x22\x9a\x1f\x0e\x09\ +\xc5\x84\xa1\xe0\xda\x7a\xfb\x7a\xc7\x79\xe7\x8d\x30\x5d\x27\x38\ +\x2f\x2d\x4f\xf0\x27\x09\x56\xe0\x1e\x0f\xcf\x8b\xf2\x26\xef\xd9\ +\xd1\xbd\x6c\xb3\xc7\x01\x7a\x42\x32\xcc\x1d\xce\x33\x23\x95\x96\ +\x2f\x96\xbd\xdf\x13\x00\x40\x0f\x97\xdf\x0d\x5c\x4e\x54\x04\xd3\ +\x71\x7a\x73\x49\x21\xf5\x35\xc0\x74\x1d\xdf\xd9\x6a\x00\xa8\x25\ +\x43\xb3\x5a\xc0\x3e\xf6\x81\x1d\x0a\x26\xac\xef\x28\xaa\x2c\xea\ +\xbd\x43\x1c\x56\x25\xd1\x24\x02\xb8\x04\x44\x98\x1b\x8d\x70\x1b\ +\xf0\xa4\xd0\xef\x6b\x19\x0e\x08\x02\x00\xe8\xe1\xf2\x33\x09\x9c\ +\xe3\x64\x44\xd9\x4c\xec\xfd\x46\x44\x80\xfc\xb4\x7a\xc7\x79\xe7\ +\xcd\x62\x4e\x42\xa1\x04\x42\xbf\x33\x74\x70\x53\x73\xaf\x36\xc8\ +\x93\xa2\x7b\x66\xdb\x18\x6c\x67\xb8\x04\xf4\xce\x05\xeb\x79\xb1\ +\x19\xa9\xfc\x78\x2e\x6e\x54\x84\xfd\x2a\x0a\x54\x0f\x66\xa4\xf2\ +\x6b\xe0\x0c\x20\xe8\x97\x5f\x2f\xae\xdd\x74\xa3\x93\x4a\x0a\x37\ +\xaf\xb1\xa8\x5e\x84\xa5\x5e\xb4\x45\x1a\x6c\x33\x6d\x10\xcb\xdb\ +\x47\xb5\xfe\x13\xe1\xb7\x3b\xd1\x26\xe0\x4a\x50\x6b\x67\x37\xc7\ +\xda\x3b\x39\xbf\x39\xd9\x6b\xad\x7b\x69\xa0\x0a\x8c\xcb\x5c\x38\ +\xc7\x2f\x6d\xb5\xdc\x1c\x30\x1a\x20\x82\x1e\x2e\xbb\xc0\x27\x81\ +\xf7\x27\x5f\x49\x63\x6d\x90\xbd\x8e\xa2\x63\xc9\xd7\x08\x79\x7b\ +\x0a\xce\xa7\x8b\x99\x9a\x3f\xbe\x82\x6d\x04\x24\xd0\x84\x0e\xab\ +\x24\x1a\x20\x6f\x78\x69\xde\x77\x64\x9f\x97\x47\xc0\x6c\x18\xd5\ +\x0f\xff\xdf\x37\x2b\x93\x68\x13\x70\x78\x2b\xcd\xa0\x03\x8e\x00\ +\x11\xc2\xfe\x43\x57\x01\x0b\x83\x2f\xa5\xbe\x89\x33\x1d\x22\x44\ +\xff\x85\xd6\x99\x42\x4d\x87\x41\xc9\x08\xbf\x65\x9b\x6f\x23\x08\ +\x69\x46\x91\x1a\x47\x12\x22\x44\x82\x9f\xd7\x5f\xaa\xe8\x3d\x8b\ +\xb4\xa9\x4d\x02\x3f\xda\x5b\x9a\xb3\x6f\x56\x0e\xf2\x59\x66\xa4\ +\xd2\xb2\xd9\x38\x0e\x18\x13\x28\x8b\xb0\xff\xd0\x49\x44\xb3\xce\ +\xe5\x9a\x16\x8a\xc2\xc6\xb3\xac\x99\x53\x63\x5e\x44\x0d\x61\x56\ +\x83\x58\x91\x59\x94\x77\xaf\x66\xfb\x02\x99\x06\xef\x12\xd7\xba\ +\xd6\x7b\xf8\xc0\x76\x12\xe1\x8f\xcc\x9d\xac\x69\x13\xfd\xe6\x48\ +\x3a\xcd\x36\x83\xdc\xa2\xf3\x9c\xff\xa5\xfe\x2b\x09\xd1\x26\x66\ +\x65\x0e\x9d\xdf\x4a\x39\x39\x60\x35\x80\x0d\x3d\x5c\x7e\x29\xf0\ +\x15\xec\x71\xc6\x45\x61\xd0\x6c\x1a\x34\xd0\x04\xd6\x83\xb2\x8d\ +\x62\xe4\x5c\x93\x85\xfd\x5b\xbd\xa2\xc8\x6b\xf8\xb2\xd3\xed\xfd\ +\x2e\x82\xb8\x7e\x2c\xe0\x58\x5a\x80\xda\x29\xe8\xf3\xba\x8e\x14\ +\xbd\x43\xa1\x09\xa4\x72\xb4\x00\xf1\x42\x7b\x28\xa0\x7f\x46\xb6\ +\xe0\xcd\x66\xa4\x72\xe6\x4c\xfe\xd8\x0c\x0e\x0a\x02\x00\xe8\xe1\ +\xf2\x02\x82\xf6\x82\xff\x41\xa4\xf9\x0a\x4d\x9f\x0c\x11\xa0\x3e\ +\x09\xa0\xb1\x29\x44\x5e\xba\x14\xfd\x30\x73\x13\x68\x2f\x41\xc4\ +\x27\x2b\xfc\xb1\xe0\x93\x98\x42\x8d\xe6\x56\x0d\xee\x29\x28\x54\ +\xa1\xb3\x9e\xd5\x44\x3e\x69\x22\xf8\x80\x17\xa6\xbb\xcc\x34\x3a\ +\x74\xa8\x19\xa9\x6c\x9b\xc9\x1f\x1b\xe1\xa0\x21\x40\x04\x3d\x5c\ +\x3e\x1b\xb8\x02\x38\x3b\xc9\x05\xf2\x89\x10\x39\xbc\xcd\x3a\xbd\ +\xed\x08\x83\xd6\x23\xc1\x3e\x82\x96\xdd\xd8\x1c\xc9\xab\xfd\x25\ +\xad\x09\x22\x02\x08\x06\x5f\xdd\x8e\xe1\x57\xc0\xdd\x08\xb7\x02\ +\xb7\x9a\xcf\x79\x93\xfa\x7d\xee\x20\x70\x2a\x8a\x53\x80\x27\xe3\ +\xf0\x62\xb4\x04\xe1\xe6\xac\xe9\x16\xce\xfb\x1f\x13\x21\xee\x56\ +\xa1\x82\xe3\x3e\x05\xd3\x5f\xa1\xf9\x29\x66\xa4\xb2\x61\xda\xff\ +\x6a\x02\x07\x1d\x01\x22\xe8\xe1\xf2\x79\xc0\xc5\xc0\x59\x49\x6e\ +\x50\xa7\xd6\x2f\x70\x7a\x3b\xd1\x10\x96\x77\x3c\x41\x30\xb8\x52\ +\x63\xd9\xe8\x64\x34\x80\x64\x34\x01\xe0\xab\x2d\xf8\x7c\x1d\xe1\ +\x52\xf3\x39\x6f\xbc\xe9\xfc\xfb\x6b\x77\x29\x8a\x0f\xe0\x30\x8c\ +\x96\xa1\x1a\xd3\x27\x5e\x67\x8c\xb4\x16\x10\x60\x60\xda\x19\x72\ +\x61\xe8\xd3\xcd\x39\x0e\x5a\x02\x44\xa8\x4b\x04\x28\x30\x7d\x66\ +\x18\x01\x2a\x4a\xcb\x43\x23\x13\xc8\x3e\x9f\x24\x10\x7e\x85\x15\ +\x97\x27\x53\xfb\xa7\x84\x5f\xf0\xd5\x06\x0c\xff\xd3\x7c\xde\x9b\ +\xf5\x44\x55\xfa\x7d\xee\xe7\x70\xe4\x7f\x02\xa5\x54\x14\xc8\x26\ +\x40\x44\x02\x8f\xa0\xb5\xb8\x34\xad\x47\xfc\x99\x19\xa9\xfc\xe3\ +\x6c\xdf\x33\x0f\x07\x3d\x01\x22\x84\x44\xf8\x28\xf0\xe4\x38\xb1\ +\x19\xe7\x57\x15\x38\xbb\x73\xa9\x05\x8a\x04\x5f\x80\x0a\x81\xe9\ +\x63\x37\x72\x65\x09\x10\x09\x3f\x54\x31\xea\x6a\xe0\x2f\xcc\x17\ +\xbc\x39\xb5\xa9\xf5\x7b\xdd\x41\x14\x3f\xc3\x95\xa7\x24\x42\x9f\ +\xd5\x02\x04\x24\x30\x04\x5a\xa0\xf9\x3c\xb9\xd4\x8c\x54\x2e\x9e\ +\xcb\xf7\x8d\xd0\x25\x40\x06\x7a\xb8\x7c\x1a\xf0\x56\x82\x71\x07\ +\xc9\x02\x73\x4d\x3b\xbf\xd2\x7a\x13\x08\x02\x21\x1a\x27\xe9\xc5\ +\xa9\x48\x4c\x9f\x54\xab\xad\x80\x52\xbb\x11\xae\x00\x2e\x31\x5f\ +\xf2\xbc\x66\x1f\x39\xa3\xfc\x7b\xaf\xfb\x4f\xb8\xf2\xf6\x5c\x12\ +\x44\x04\xf0\x80\xb2\x0a\x56\x1a\x68\x0e\xff\x64\x46\x2a\xef\x6c\ +\xfa\xea\x69\xa0\x4b\x80\x02\xe8\xe1\x72\x09\x38\x0f\x78\x0b\xf0\ +\x62\x6c\xd7\xad\x59\xfb\x3f\x25\xf8\x33\xe8\x1a\x2d\x99\x3f\x44\ +\x45\xe5\x03\x63\x12\xec\xe3\x17\x0e\xdf\x30\xe9\x92\x30\x89\x56\ +\x37\xa3\xe4\x4b\xe6\x1f\xbc\x6f\xb7\x35\xef\xfe\xca\xfd\x0b\x1c\ +\xf9\x32\x06\x55\x4b\x00\x02\x12\xc0\x74\xc2\xa2\x3f\x34\x23\x95\ +\x96\xb4\x07\x74\x09\xd0\x04\xf4\x70\xf9\x50\xe0\x15\xc0\xf3\x80\ +\x67\x11\xcc\xdf\x13\xa0\xdd\x9d\xe1\xa6\x08\x1a\x96\xb2\x70\x81\ +\x92\xec\xc6\x51\xbf\xc6\xe1\xcb\xe6\xab\xd5\x5f\x76\x34\xcf\xde\ +\xe3\x7e\x04\x57\x3e\x9e\x72\x80\xb3\x5a\xa0\x79\x33\xe8\x5a\x33\ +\x52\x79\x46\x2b\xde\xb3\x4b\x80\x69\x22\x9c\xb1\xee\x2c\xe0\xb9\ +\xe1\x76\x0e\x59\x65\xde\x4c\x5b\x40\xf6\xf7\x7a\xc5\x60\x80\x29\ +\x09\x3a\x99\xd9\xd7\x69\xaa\x28\xb6\xe0\xf0\x63\x1c\x3e\x67\xfe\ +\xa5\xda\xd1\x59\xd6\x6a\xf2\xea\x3d\xee\x4f\xd0\xf2\xfc\x38\x04\ +\x9a\x67\x06\x35\xe7\x0c\x5f\x63\x46\x2a\x17\x34\x75\xe5\x34\xd1\ +\x25\xc0\x2c\xa1\x87\xcb\xfd\xc0\x99\xc0\x09\xc0\xf1\xd6\xb6\x86\ +\xa2\xae\x26\xcd\xd4\x7a\x42\x20\x24\x55\x01\x1f\x41\xb1\x0f\xcd\ +\xa3\x28\xfe\x80\xe2\x57\xc0\x7f\x9a\xab\xaa\x8f\x77\xfa\xfb\x1b\ +\xe6\xcf\x5f\xb9\x9b\x10\x59\x15\x93\xc0\x36\x83\xa2\xce\x72\x8d\ +\xf1\x75\x33\x52\x79\x4b\x2b\xde\x6f\xfa\x4d\x12\x5d\xa4\x60\x46\ +\x2a\xe3\xc0\xb5\xe1\x16\x43\x0f\x97\xfb\x80\x75\xc0\x5a\x60\x88\ +\x60\x5d\xec\x60\x93\xf8\x78\x10\xc1\x03\x46\x51\xec\xc0\x50\xc5\ +\xe0\x63\x10\x44\x82\x1e\x3d\x9a\x7b\xd0\xfc\xda\x5c\x55\x6d\xdb\ +\x6a\x95\x73\x0a\x9f\x57\xe0\x70\x43\xee\x00\x9c\xe6\xdd\xf1\x96\ +\x4d\xa2\xdb\xd5\x00\x5d\xb4\x1c\xfa\x2f\xdd\x5b\x81\xd3\x62\x33\ +\xa8\xca\x74\xfd\x80\x8f\x9a\x91\xca\xdf\x37\xbc\x6a\x26\xef\xd6\ +\xe9\xcc\xe9\xe2\x20\x80\xe1\x0d\x35\xe3\x28\xa2\xad\xb9\xfa\xb7\ +\x65\xcb\xa9\x76\x09\xd0\x45\xcb\x61\xfe\xc1\xfb\x23\x46\xdd\x03\ +\xd4\xf6\x36\x6d\xce\xb0\xbb\xb1\x55\xef\xd6\x25\x40\x17\xed\x81\ +\xf0\x9d\x74\x74\x4c\xa2\xf4\x46\x18\x05\xee\x6e\xd5\x6b\x75\x09\ +\xd0\x45\xbb\xf0\xa5\x9a\x94\xe6\x4c\xa0\x9b\xcc\x48\xa5\x65\x01\ +\x80\x2e\x01\xba\x68\x0b\xcc\x57\xbc\xed\x08\x4f\xd4\xfc\xd0\x58\ +\x02\x5b\xba\x78\x46\x97\x00\x5d\xb4\x0f\xa2\x1e\xac\x49\x6b\x1c\ +\x01\xfa\x41\x2b\x5f\xa9\x4b\x80\x2e\xda\x07\x21\x59\x05\x26\x1a\ +\x8b\x5d\x5f\x02\x1f\x30\x23\x95\xeb\x5b\xf9\x4a\x5d\x02\x74\xd1\ +\x4e\x3c\x9a\x9a\xad\xae\xde\xf8\xe3\x00\xdf\x68\xf5\x0b\x75\x09\ +\xd0\x45\xfb\x20\x3c\x68\x1d\x37\x83\x7f\x6d\xf5\x2b\x75\x09\xd0\ +\x45\x3b\xd1\x97\x1a\x54\x5f\xbf\xf6\xff\xa9\x19\xa9\x3c\xd0\xea\ +\x17\xea\x12\xa0\x8b\xf6\x41\x58\x9b\x22\x80\x5b\x97\x01\x1f\x69\ +\xc7\x2b\x75\x09\xd0\x45\x3b\x71\x78\x3c\x7d\x0a\xd4\xeb\x8a\x79\ +\xb5\x19\xa9\xcc\x7a\xac\x72\x33\xe8\x12\xa0\x8b\xf6\x41\x58\x11\ +\xd7\xfe\xd1\xac\x71\xb5\x30\x04\x63\xb3\xdb\x82\x2e\x01\xba\x68\ +\x1f\x8c\x1c\x15\xcf\x1f\x54\x6c\xfe\x8c\x98\x91\xca\x1d\xed\x7a\ +\xa5\x2e\x01\xba\x68\x0b\xf4\x70\xe9\x64\x0c\x0b\x30\x2a\x99\xbe\ +\xa5\x16\xf7\x62\x2f\x79\xd5\x8e\xf7\xea\x74\xc6\x74\x71\x90\x40\ +\x78\x7f\xb2\x92\x4c\x6e\xed\x5f\x05\x5e\x1f\x0e\x30\x6a\x1b\xba\ +\x04\xe8\xa2\x3d\x30\xf2\xc2\xb8\xf6\xcf\x1f\x07\x7c\x89\x19\xa9\ +\xb4\xac\xdb\x73\x11\xba\x04\xe8\xa2\xe5\xd0\xef\x28\x9d\x8f\xa7\ +\x96\x23\x04\xb3\xc2\xd5\xe2\xdf\x80\x4f\x77\xe4\xdd\x3a\x99\x31\ +\x5d\x1c\x24\xf0\xe5\x4a\x0c\xc1\xb2\xaa\xb5\xf2\xff\x9f\xc0\x9b\ +\x5b\xd9\xe5\xb9\x1e\xba\x04\xe8\xa2\xa5\xd0\x6f\x2f\xbd\x03\x5f\ +\xad\x88\x67\xae\x4b\xe3\xe7\xc0\x45\x66\xa4\xd2\xd2\xd9\xea\xea\ +\xa1\x3b\x28\xbe\x8b\x96\x41\xbf\xa3\xb4\x90\x2a\x9b\x30\x0c\xd0\ +\x5b\x53\xfb\xff\x08\x78\xb5\x19\xa9\x8c\x75\xf4\x1d\x3b\xf9\xf0\ +\x2e\x0e\x70\x78\xdc\x84\xe4\x0a\xff\xa7\x80\x0b\x3a\x2d\xfc\xd0\ +\x9d\x17\xa8\x8b\x16\x41\xbf\xad\x74\x0d\x86\xa3\x33\x2b\xc2\x8c\ +\x03\x6f\x33\x23\x95\x6f\x76\xfa\xfd\xe2\xf7\xec\xf4\x0b\x74\x71\ +\xe0\x41\xbf\xad\x74\x1e\xc2\x4b\x32\xc2\xff\x6b\x82\x15\x1f\xe7\ +\x8d\xf0\x43\x57\x03\x74\xd1\x0a\x68\xe5\xe0\xc4\x46\xcf\x56\xe0\ +\xfd\x66\xa4\xd2\xf2\xbe\xfd\x33\x41\x97\x00\x5d\xcc\x3d\x1c\xfe\ +\x13\x18\x06\x56\x00\x97\x9b\x91\xca\xee\x4e\xbf\x52\x11\xba\x51\ +\xa0\x2e\x0e\x6a\x74\x7d\x80\x2e\x0e\x6a\x74\x09\xd0\xc5\x41\x8d\ +\x2e\x01\xba\x38\xa8\xd1\x25\x40\x17\x07\x35\xfe\x3f\x03\x96\xe2\ +\x1d\xff\x99\x30\x98\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ +\x82\ +\x00\x00\x14\x3c\ +\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\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\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\x13\xb0\x49\x44\x41\x54\x68\xde\xbd\x59\x77\ +\x7c\x5c\xd5\x95\xfe\xee\xbd\xaf\x4c\x1f\x8d\x66\xd4\xad\x62\x4b\ +\xb2\x64\x6c\xe3\x86\x3b\x98\x62\xc0\x80\x29\xa6\xc5\x31\xb0\x60\ +\xb0\x09\x09\xcb\xee\x12\x02\xa1\x24\x10\x08\x4b\xe0\xb7\x21\xd9\ +\x04\x42\x0b\x84\x04\x02\xa1\x85\x40\x08\x60\x03\xae\x18\xdb\x92\ +\x2b\x56\xb5\xac\xde\x65\x49\xa3\xd1\x8c\xa6\xbc\x7e\xf3\x87\x46\ +\x8e\xc6\x16\x98\xb0\x64\x8f\x7e\xe7\x77\x35\xf3\xde\xcc\x3b\xdf\ +\x3d\xdf\x69\x77\x08\xe7\x1c\x63\x32\x6b\xd1\x22\x9c\x4c\x28\xe7\ +\x20\x16\x00\x70\x98\x9c\x33\x26\x89\x66\x53\x5d\x1d\x0a\xf3\xf3\ +\x21\x88\x22\xc0\x11\x50\x41\x6e\x33\x74\xb3\xae\xb3\xb5\x69\x5f\ +\x71\x69\x59\x97\x4c\xed\x1a\xc7\xe8\x73\x38\xe1\x30\xa9\x05\x42\ +\xf9\x49\x9f\xf5\x55\x44\xf8\x5a\x9f\x22\x00\x2c\x4e\xb9\xc5\xa7\ +\x81\xf3\x2e\x00\xc3\x9c\x30\x80\x30\x70\xc2\xf3\x1c\xb2\x6d\x85\ +\x21\x9a\xd3\x9c\x1e\x4f\x31\xa5\xf4\x23\x0e\x1c\x02\x60\x26\x3f\ +\xf8\x8d\x18\x7e\x6c\x43\xbf\x8e\xf1\xba\xa6\x2d\x80\x20\x7c\xe0\ +\x4d\xf3\xee\x35\x2d\xeb\xbf\x38\x38\x38\xa5\xb0\xb8\x08\x42\xc5\ +\x6b\x6f\xff\x8f\xdb\x16\xbd\xf9\xea\xcb\xdf\xfa\xfd\x0b\x2f\xfc\ +\xcc\xe1\x72\xfe\xde\x20\x6a\x9e\x49\x75\x98\x54\x05\xa7\x1c\xe4\ +\x5f\x06\x80\x7f\xb1\xf2\xa4\x6a\xba\xb9\x3a\xbf\xb0\x70\xd3\x2f\ +\xfe\xe7\xb1\x0b\xde\x7b\xfb\x6d\xdb\x9c\x53\x67\xdd\xc1\x2d\xb2\ +\x5c\xd7\x75\x71\x24\x1a\x2d\x27\x94\x5e\xba\x74\xf1\x22\xe4\xe6\ +\xe4\x60\xe9\xe2\x45\x10\x05\xc1\x72\xbb\x1d\x7d\x76\x9b\x88\xf6\ +\x96\x26\x50\xf6\xcf\xef\xd9\x97\x49\x0a\x85\xb8\x39\x31\x2f\x09\ +\x01\x18\x2c\x80\x03\xd1\x91\x91\xdc\x8b\x57\x5e\xe4\x3e\x7b\xd9\ +\x99\x18\x18\x38\x8a\xeb\xaf\x59\xe3\xa9\xae\xad\xfb\x5d\xba\xcf\ +\xdb\x5c\x52\x5c\x32\xb3\x7c\x6a\x49\xc6\xe0\xe0\x51\x74\xf7\x74\ +\xc2\xb2\x08\x74\x5d\xef\xca\x09\xa4\x6b\xb1\x78\x02\x96\xf9\xcd\ +\xd2\xe7\x04\x00\xe0\x13\x3b\x97\x10\x0e\xd3\x10\x21\x12\x13\x4e\ +\x87\xed\x8d\x0f\x36\x7e\xb4\x76\xc1\xdc\xb9\xa7\x1a\x5c\x43\x5e\ +\x5e\x0e\x9e\x7f\xea\xc9\x42\x5f\x7a\x5a\xa1\x2f\xcd\x07\x49\x12\ +\x11\x89\x44\x10\x8f\xc7\xd0\xd6\xde\x09\x55\xd7\xca\x07\x43\xc3\ +\x33\x14\x45\xad\x31\x4c\xd3\xa3\xaa\xea\xed\x84\xb2\x66\x46\xc9\ +\xab\xdf\x04\x00\x32\x3e\x0b\x9d\x3a\x6f\xe2\x2c\x44\x18\x87\xa9\ +\x89\x20\x12\x01\x11\x4d\x04\xfb\x83\x3f\x7f\xe8\xde\xbb\xef\xbc\ +\xec\x92\x8b\x21\x08\x02\x06\x83\x83\xe8\xed\xeb\x41\x24\x12\x06\ +\xc0\xe1\x72\xbb\xe1\x4f\x0f\x20\x23\x90\x89\x23\x8d\x8d\x78\xe4\ +\xb1\x9f\x77\x35\xb7\xb6\xfd\xb9\xac\xb4\xf4\xe2\x39\xb3\x66\x95\ +\xec\x3d\x78\x20\xd2\xdd\xdd\xbd\x82\x09\xac\xe2\xff\x03\x00\x03\ +\x35\x0b\x0d\x55\xec\x96\x65\xa6\xc6\x94\xe1\x69\x25\xc5\xc5\x1b\ +\x9f\xf8\xc5\xe3\x05\x36\x9b\x84\xfd\x07\xf6\x22\x1a\x8b\x41\x14\ +\x45\x30\xc6\x40\x19\x05\x25\x00\x07\x81\xcb\xe9\x44\x59\x69\x39\ +\xba\xbb\xfb\xb0\x69\xcb\x56\x9c\xb7\xfc\x1c\xcc\x9c\x31\x03\x1f\ +\x6f\xde\x82\x9f\x3c\xfc\xc8\x16\x0b\xd6\x72\x42\xfe\x6f\x21\x9d\ +\x0a\xe0\xb4\x85\x27\xdc\xc0\x39\x4a\x65\x59\xfc\x50\x96\xe4\x58\ +\x42\x51\x5a\xed\x76\xf9\x94\x5f\x3f\xfe\xf3\xa9\x93\xf2\x72\xb0\ +\x7d\xc7\x56\x70\x00\xa2\x28\x80\x52\x0a\x51\x14\x41\x29\x05\xe7\ +\x00\xa1\x00\x01\x01\x63\x0c\xa5\x25\x53\xc1\x2d\x82\x9a\x9a\x6a\ +\x94\x14\x97\xc0\xe3\xf5\x61\xcd\x0d\x37\x0e\x84\x42\xa1\x95\x94\ +\xd2\xbd\xa9\x16\x91\xd1\x6c\x71\x82\xa5\x63\x06\xa5\xbe\x7d\x5c\ +\x0c\x1c\x97\x94\x38\x07\x21\xd6\xea\xef\x7e\x67\x5d\xc9\xa5\x2b\ +\x2f\x42\x55\x75\xcd\x2c\x5d\x37\x50\x56\x56\x8a\xed\x3b\xb6\x00\ +\x04\x90\x44\x11\xa2\x20\x21\x10\x48\x07\xe7\x04\xa2\x28\xc2\xe1\ +\xb0\x63\x20\x38\x08\x5d\xd3\x40\x28\x45\x77\x4f\x17\x72\x73\xf2\ +\x90\x96\xe6\x43\x43\x63\x33\x5e\x79\xfd\x8d\xa1\xa3\x3d\xbd\xbf\ +\x71\xd9\xbc\xd5\x38\x2e\x71\x70\x58\xa3\xe8\x53\x6c\x27\xe0\xcc\ +\x84\xc1\x4d\xf0\xe3\xc0\xa5\x00\x30\x15\x7b\xca\x45\xcb\xe2\x70\ +\xfb\x70\xce\x05\xe7\x2e\x87\x65\x9a\x70\x38\x24\x14\x15\x94\xa1\ +\xbb\xbb\x0b\xb1\x58\x0c\x92\x24\x41\x92\x24\xf8\x7c\x7e\xec\xaa\ +\xd8\x83\x86\x86\xc6\x18\x21\x94\xce\x9e\x7d\xaa\x7d\xe5\x05\xe7\ +\xa3\xbb\xb7\x1b\xaa\xa6\xc0\xb4\x4c\x98\xa6\x01\xcd\x30\xf0\xd3\ +\x9f\x3d\xda\x19\x8d\x8c\xac\xef\xef\xe9\xf9\xd8\x3b\xd5\x07\xd3\ +\x34\x47\x0d\x27\x00\x81\x05\xcb\x52\x40\x04\x79\x14\x48\x52\x28\ +\x61\x27\xec\xfc\x84\x00\x44\x9b\x76\x3c\x7d\xec\x9a\x61\xa6\x7f\ +\xb4\x69\x33\xe6\xcf\x9b\x07\x51\x90\xc1\x04\x01\x83\x43\x83\x60\ +\x4c\x80\x20\x08\xf0\xfb\x03\xd8\xb9\xb3\x12\xbf\x7f\xe9\x95\xbf\ +\x18\xba\x71\x7f\x47\x5b\x3b\xdb\xb0\x31\xeb\x01\x59\x92\xaf\xba\ +\x70\xc5\x72\x34\xb7\xb5\x80\x50\x02\x45\x51\xe0\x72\x39\x90\x96\ +\xe6\xad\x57\x55\x6d\x77\x5e\xfe\x24\x18\xd0\xc1\x49\xb2\xc5\xa0\ +\x1c\x04\x04\xb0\x08\xbe\xd0\xda\x09\x24\xc5\x57\xa5\x53\xb2\x53\ +\xb4\xbc\x34\x37\x21\x49\xe2\x0d\xbf\x7c\xe2\xa9\xc7\xd6\xdd\x72\ +\x6b\xc3\x1b\x6f\xbe\xc3\x19\x13\xa0\xa9\x2a\x44\x51\x80\x2c\xc9\ +\x70\x3a\x9c\xf8\x6c\x77\xa5\xa6\x26\xcc\x7b\x1c\x36\x47\x9d\xd3\ +\x69\xaf\xa6\x84\x3c\x74\xa8\xaa\x3a\x2a\x8a\x32\x64\x59\x06\x63\ +\x0c\xa6\x65\xc2\x9f\xee\x47\xfe\xa4\x49\x53\x15\x45\x29\x74\x39\ +\x1c\xe0\xe3\xfe\xbe\xae\xa4\x00\xa0\x94\xa6\x28\x1b\x5d\x0f\x71\ +\xc3\xb8\x37\x1c\x0c\x5e\xb1\xb3\xb2\xa2\x5b\x51\x12\x20\x8c\x80\ +\x09\x02\x98\x20\x40\x96\x65\x80\x13\xcb\xe2\xb2\x6e\x1a\x16\x26\ +\xe5\x17\x42\xa0\x84\x31\x41\x10\x65\x9b\x1d\x82\xc0\x20\x30\x06\ +\xca\x08\x04\x81\x61\xfa\xb4\x69\x45\x19\x81\xc0\x8b\x23\x09\xe5\ +\x21\x70\x2c\xc1\xd7\x69\x67\xbe\x08\x80\x65\xf1\x14\x35\x2d\x0e\ +\x70\x13\xa6\xa1\x41\x74\x39\xea\x54\x4d\xeb\x56\x14\x05\x76\x9b\ +\x1d\x8c\x51\x58\x96\x09\x4a\x19\x2e\xbf\x6c\xa5\xcd\xe1\xe6\xcf\ +\xc6\x95\x91\xe2\x91\x68\xac\x44\xb0\xc9\xf7\xcf\x9f\x37\x57\x16\ +\x45\x06\xce\x39\x18\x63\x90\x44\x19\x4a\x22\x81\xe9\xe5\x53\xf1\ +\xd0\xfd\xf7\xcd\xbf\xe5\x96\x9b\x1f\x60\xa2\xf0\xa8\x05\x78\x09\ +\xfd\xa7\x58\x93\x22\x29\x31\xd0\xd8\xd9\x79\xc2\x0d\x96\x65\x82\ +\x70\x0b\xba\x61\xce\xf7\x7a\xe4\x6c\x45\x51\x90\xee\x4b\x47\x24\ +\x32\x0c\x4a\x29\x86\x42\x41\x5c\xb2\xf2\x22\x08\x82\xb8\xe2\x9d\ +\xf7\xde\xaf\x13\x04\x01\xab\x2e\xbe\x48\x5a\x75\xe9\x25\x68\x6d\ +\x6f\x01\x21\xa3\xa9\x54\x92\x6d\x88\x84\xc2\x18\x1a\x1a\xc2\xec\ +\xd9\xb3\x21\xcb\x36\xbc\xa8\xe9\xbd\x04\x64\xd8\x12\x08\xb8\x6a\ +\xf8\x08\x48\x84\x72\x9e\xec\x5a\xbf\x1a\xa2\xd4\x5e\x68\xa2\xfc\ +\x0b\xe2\x22\x82\x74\xd7\x8c\xf2\xf2\x5b\xaf\xbe\x62\x55\x20\x1a\ +\x8d\x22\xdf\x37\x09\x2e\x97\x07\xba\xae\x41\xd1\x12\xe8\xe8\x6a\ +\xc3\x85\x2b\xce\xc3\x95\x97\x5f\x26\x51\xca\xa0\xe9\x1a\x5a\x3b\ +\x5b\xa0\xa8\x09\x08\x82\x00\x41\x60\x00\xe7\xd8\xbc\xed\x53\x38\ +\x6c\x4e\x3e\x1c\x89\x90\xca\xfd\xfb\xa0\x6b\xc6\x21\xd9\x66\xe7\ +\x9a\xa5\xcf\x72\xd9\xed\x2f\x6a\x9a\xd6\x1c\x57\xf4\x83\x36\x51\ +\xfc\x98\x10\x1c\xc4\x57\xe8\xbd\x53\x00\x58\x13\x00\xd0\x75\x3d\ +\x23\xbf\xa0\xe0\xee\x7b\xee\xba\x43\x96\x25\x11\x6d\xed\x6d\x08\ +\x04\xfc\x28\x2a\x2c\x42\x5b\x47\x2b\x00\x20\x9e\x88\xa3\xa9\xe5\ +\x08\x1c\x0e\x07\x08\x21\xd0\x0c\xed\x58\x11\x23\x84\xc0\xe3\xf6\ +\x62\xff\xfe\xcf\xf9\xcb\xaf\xbc\x46\xd2\xbc\x69\x44\x7e\x4f\xd6\ +\xc2\xe1\x70\x9b\x2c\x09\x1b\x0d\xa2\x01\x86\x79\xe1\x8d\x37\xad\ +\x9f\xbb\xf2\xa2\x0b\xe6\xee\xaa\xac\xbc\xfa\xe9\x67\x9e\xbb\x36\ +\x34\x1c\xba\x88\x31\xd6\x71\x32\x4f\xa4\xc4\x00\x99\x40\x05\xc6\ +\xda\x07\x07\x07\x3f\x6c\x38\xd2\x88\xac\xac\x2c\x80\x53\xbc\xf7\ +\xfe\x87\x38\x7a\x74\x00\x25\x53\x4a\x61\xb3\xd9\x20\x08\xa3\x95\ +\x58\xd5\x54\xe8\x86\x06\x4a\x46\x93\x80\x20\x88\xf0\x7a\xd3\xd0\ +\xd8\xd8\x82\x3f\xbc\xfc\x1a\xb9\xe7\x87\x77\xf2\xf7\xfe\xf2\x67\ +\x04\x02\x7e\x33\x38\x38\x70\xa7\xa2\xc6\x1b\xc2\xc1\x70\x71\x76\ +\x20\xf3\xba\xf3\xce\x3d\x1b\x99\x19\x7e\x2c\x3c\x6d\x1e\xdc\x2e\ +\xe7\x88\x61\x58\xf1\xd1\xfd\xfc\xf2\x56\x23\xb5\x0e\xd0\x09\x12\ +\x02\xa5\x96\xaa\xe9\x8f\xbd\xfe\xd6\x3b\x67\x1c\x6e\x38\x12\xd8\ +\xbb\x6f\xff\xa1\xc6\xe6\x96\xcd\x9f\xee\xf8\x6c\xf5\xba\x9b\xd6\ +\xe6\x2d\x5c\x38\x0f\xd1\x58\x0c\x9a\xa6\x26\x2b\x37\x01\xa3\x14\ +\x82\x28\xc2\x34\x2d\x1c\xed\x3d\x8a\xbf\xbc\xf3\x37\xd8\xed\x0e\ +\x7e\xd9\xca\x8b\x49\x34\x3a\x82\xf5\x6b\x6f\xb0\xd7\xd7\x1f\x7e\ +\x2e\x33\x2b\xab\x76\xca\xe4\xc2\x29\xa5\xc5\xc5\x93\x63\xf1\x28\ +\xaa\xaa\xab\x31\x30\x10\x44\x73\x7b\xfb\x41\x59\x90\x07\x81\xd1\ +\xce\xe2\xcb\x24\xa5\x17\x72\xb9\xdd\x13\xde\x64\x59\x16\xd2\x7c\ +\xfe\x6f\xb9\xbc\xe9\x79\x92\x4d\x78\x9d\x89\xac\x37\xa6\xe9\x73\ +\x5d\xa2\xf4\xd6\xcd\x6b\xaf\x9f\x72\xc6\x19\x4b\x60\xb3\xc9\x10\ +\x45\x09\xba\xa1\x43\x51\x14\x84\xc3\x11\x0c\x05\x87\xd0\xdd\xdd\ +\x05\xb7\x3b\x0d\x6f\xbf\xfb\x37\xdc\x7b\xd7\x1d\x30\x2d\x1d\x3e\ +\x6f\x3a\x46\x62\x09\x64\x66\x04\xe0\x4f\xf7\x01\x20\x88\xc6\xa2\ +\x30\x0c\x03\x9f\x7f\x5e\x85\xbb\xef\xbf\xff\x20\xb3\x84\xeb\x89\ +\x44\x6a\x0c\x5d\x4f\x23\x84\x7c\x97\x10\x32\x48\x18\x79\xe1\xf8\ +\x38\x4d\x01\xf0\x65\x9d\x61\x76\x6e\x2e\x72\xf2\xa7\xc0\x82\x01\ +\x8b\x5b\xd0\x09\x85\x4c\xe8\x1f\xd6\xae\x59\x7d\x83\xdf\xef\x81\ +\xdd\xee\xc4\x27\x5b\x3e\xc5\xde\x7d\x07\x3a\x25\x51\xe8\x32\x0c\ +\x23\xe7\x9a\xd5\x57\x15\x4d\x2f\x2f\x43\x76\x4e\x36\x1e\xff\xf5\ +\x53\xb0\x49\x12\x7f\xf4\x91\x87\x09\xa3\x14\xc1\x50\x10\x3d\x3d\ +\x5d\x88\x44\xc2\x20\x84\xc0\xe5\xf2\xc0\xef\xf7\xc3\x9f\xee\x47\ +\x43\x43\x23\x9e\x78\xfa\x99\xde\xea\xda\xfa\x57\xa6\x96\x96\x5c\ +\x31\x6f\xce\x9c\xe2\x3d\x7b\xf7\x0d\x75\x74\x77\x5e\x42\x29\xdd\ +\xf5\x85\x14\xfa\x2a\x42\x4c\x03\x94\x73\x30\x5d\x95\x32\xf3\xf3\ +\x17\x4f\x9f\x3e\x0d\xb2\x28\xa0\xbb\xa7\x0f\x55\x55\xd5\x35\x8a\ +\x1a\x5f\x13\xec\x0f\xd7\x78\xd3\x7c\x97\x6e\xde\xba\xe3\x95\xc9\ +\x45\x45\xee\x4d\x5b\xb7\xa3\xa7\xb7\x97\xaf\x5b\xbb\x96\xa8\x6a\ +\x02\x7b\xf7\xef\x41\x2c\x16\x85\x24\x49\xc9\x40\xa7\x18\x1e\x1e\ +\x42\x28\x3c\x84\xde\xbe\x1e\x94\x14\x97\xe2\x81\xfb\xee\xc9\xd9\ +\xf8\xc9\xe6\xbb\xce\x39\x73\x19\x66\x4e\x9f\x81\x6d\x3b\x3e\x4d\ +\xbf\xeb\xbe\x1f\xdf\x09\x60\x35\x21\x44\x9f\x30\x88\x4f\x2a\x9c\ +\x03\xba\x09\x62\x18\x60\xdc\x72\x85\x42\xa1\x9c\x6d\x3b\x3e\xc3\ +\x48\x4c\x41\x53\x4b\x2b\xa2\x91\xf0\xdb\xfd\x5d\x9d\x35\x47\xfb\ +\xfa\xe6\x38\x3d\xde\x5f\x0d\x0e\x05\xd9\x93\xcf\xfe\x16\x2f\xbf\ +\xfa\x1a\xbe\x7b\xf3\x7a\xb2\xfc\x9c\x65\xd8\xf1\xd9\x76\x28\x89\ +\x04\x64\x9b\x0d\x82\x20\x42\x92\x46\xdb\x0d\x41\x14\x21\x89\x22\ +\x0c\x43\x47\x53\xcb\x11\x78\xd3\x3c\xb8\xfa\x8a\xcb\xd0\xdb\xdb\ +\x8d\xbe\xfe\x3e\xe4\xe5\xe6\x22\xc3\x9f\xb1\x8a\x9b\x38\x95\x82\ +\x61\x4c\x4f\x1e\x03\x84\xc0\x34\x4d\x04\xb2\xb3\x10\xc8\xca\x81\ +\x19\x27\xa0\x82\x0a\x58\x16\x74\x4a\x0b\x89\x65\xad\xf1\xb8\xdc\ +\x17\x26\x14\xcd\x46\x4c\xf3\x0e\xdd\xd4\x76\x26\x54\xed\xb6\xbb\ +\xef\xba\xf3\xc9\xab\xae\x58\x85\x0d\x1b\x3f\x42\x76\x76\x36\x5f\ +\xb4\x60\x3e\xd9\xb2\x7d\x13\xe2\xf1\x38\x98\x20\x40\x12\x45\xf8\ +\xd3\xd3\x01\x42\x21\x89\x22\x6c\x36\x19\xc1\xd0\x10\x54\x55\x05\ +\x63\x14\x36\xd9\x86\xcc\x40\x36\xfa\xfb\xfb\xd1\xdb\x7b\x14\xaf\ +\xbf\xfd\xce\x48\x63\x63\xd3\x2f\xa9\x85\x47\x41\xa0\x4e\x48\xa1\ +\xf2\x19\x33\x4e\x0c\x60\x42\x46\x0f\x26\xb8\x05\xd3\x30\x00\x08\ +\x20\x82\x08\x95\x5b\x60\x26\x0f\xa9\x89\xe8\x6f\xd2\xb2\x32\x1f\ +\x53\x14\x53\x82\xc5\x74\x8b\x58\xa4\xa0\x30\x7b\xf9\xc2\xf9\xf3\ +\xc0\xb9\x89\xa2\xc9\x93\x30\xb9\x60\x0a\x69\xeb\x68\x45\x42\x49\ +\x40\x14\x45\xc8\xb2\x04\x8f\xc7\x8b\x7d\x07\x0e\xe1\x50\x55\x4d\ +\x1c\x84\xf0\xf9\x73\xe7\x3a\xcf\x5d\x7e\x16\x82\xc1\x41\x24\xd4\ +\xf8\x68\x0b\xce\x0d\x50\xc6\xf0\xc4\x33\xcf\xc5\xfa\x06\x06\x56\ +\xd9\xec\xf6\x2d\xe0\xa9\xb5\x2d\x75\x1e\x48\xf6\xe6\x13\x01\x38\ +\xe6\x0d\xcb\x9a\x4c\x4c\x73\x9d\xdb\xee\x38\x47\x14\x58\x41\xc4\ +\xb2\xfe\x3c\x10\x8a\x7c\x9f\x5b\x44\xa3\xd4\x84\x8d\x70\x39\x1e\ +\x8f\xcf\xdc\x55\x51\xc1\x97\x2e\x59\x44\x04\x26\x82\x32\x82\x60\ +\x70\x30\x59\x1b\x18\xd2\xd3\x03\xa8\xae\xa9\xc1\xb3\xcf\xbf\xf4\ +\x96\x69\x18\x0f\x80\x70\xb2\x6b\x67\xc5\x23\x7e\xbf\xff\xf2\xc5\ +\x8b\xe6\xa3\xb5\xad\x09\x94\x31\x28\x6a\x02\x6e\x8f\x1b\x69\x5e\ +\x4f\x6f\x30\x18\xda\x49\x2d\x02\x4e\x48\x4a\xc7\xf0\x95\x62\x80\ +\x10\x02\x41\x10\x00\xf0\xd9\x3e\xbf\xb3\xe6\x07\xb7\xdf\xfe\xa3\ +\x77\xdf\xf8\xd3\xe2\xb7\x5e\x7d\x25\x6f\xfa\x8c\x69\x57\x8f\x84\ +\x43\xc5\xd9\x59\x5e\x98\xa3\x9e\x3d\x65\x70\x30\xb8\xf3\xe9\xdf\ +\xbe\xf0\xcc\x8d\x37\xdf\xba\xfb\x9d\xbf\x7e\x70\x2c\xbd\x0a\x8c\ +\x41\x92\x24\x88\x82\x88\x77\xff\xfa\x61\xaf\x65\xe1\x71\xa7\xc3\ +\x79\xd8\xe9\x70\xd4\x83\x92\x87\x5f\x7b\xe3\xad\x4e\x49\x94\x60\ +\xb3\xdb\x41\xe9\xe8\x10\xe3\x76\x3b\x41\x08\x09\x28\x8a\x9a\x0e\ +\x90\x13\x8e\xac\x4e\x0a\x80\x11\x0a\x43\xd5\xd0\xd1\xd4\x84\xf6\ +\xa6\xa6\xde\xa2\xa2\x02\xb2\x66\xf5\xd5\x08\x85\x87\xa0\x6a\x2a\ +\x4a\x4a\x4a\x72\x75\xcb\x3a\x8b\x51\x0a\xdd\xb0\x96\x7a\xfd\x19\ +\x7f\xbb\xf2\xf2\x55\xd7\xdb\x6c\xb6\xbc\xa1\x50\x70\x7d\x73\x73\ +\x73\xd0\xb2\x2c\x50\xca\xc0\x04\x06\xca\x18\x64\x59\x86\x24\xcb\ +\x84\x31\x80\x1b\x1c\xba\x61\x80\x50\x6a\xa3\x94\xca\x92\x24\x43\ +\x14\x45\x08\x02\x03\x63\x0c\x96\xc5\x71\xea\xcc\x99\x69\x99\x19\ +\xfe\x37\x15\x35\xf1\x53\x80\x9f\x9e\x62\xdf\x83\x0f\x3e\x78\xec\ +\xc5\x73\xcf\x3f\x3f\x01\x04\x8a\x51\xe4\x14\x43\xfd\xfd\x5a\x66\ +\x56\xe6\xaa\xa2\x82\xc2\x9c\xae\xee\x4e\x0c\x0d\x05\x41\x29\x43\ +\x53\x6b\xfb\x92\xe1\x70\xf8\x42\x7f\x46\xc6\x6d\xb7\xac\xbf\x31\ +\xe7\xea\x2b\x57\xc1\x26\x4a\xe5\xd5\xb5\x75\x73\x1c\x2e\x27\xce\ +\x3d\xfb\xec\x80\xa2\xc6\xa1\x6a\x1a\x08\x21\xc8\xca\xcc\x42\xba\ +\xcf\xe7\xfa\x64\xd3\x96\x6c\x43\x33\x2b\x54\x43\x4d\xe3\xa6\xf5\ +\xf0\xbd\x77\xdd\x39\xaf\x78\xca\x64\xf4\x0f\xf4\x41\x10\x04\xc8\ +\x36\x19\x4a\x42\x45\x9a\xc7\x83\x33\x97\x9d\x5e\x30\x29\x37\xef\ +\xcc\x86\xc6\xc6\xa5\x9a\x6e\xfc\x96\x32\x6a\x12\x42\x52\x63\x60\ +\xa2\x32\xa6\xe9\xda\x4c\xd3\xe2\x9a\xc7\xe7\xeb\x70\x3a\x1d\xce\ +\xbe\xfe\x01\x77\x7b\x47\x07\x4e\x9b\x37\x1b\x94\x32\x94\x4d\x2d\ +\xc7\x82\xd3\xe6\x05\x3a\x3a\xbb\xce\x1e\x89\x44\x60\x99\x3a\xb6\ +\x7f\xba\x0d\x17\x5d\xb0\x02\x7b\x0e\x1c\x5c\x52\x55\x53\x6b\x1e\ +\x3d\x7a\x14\x7e\xbf\x1f\x23\x23\x91\xd1\x91\x34\x38\x88\xf3\xcf\ +\x3d\x17\xaa\x6a\x5c\xf2\xfe\x87\x1b\x56\x80\x00\x57\x5e\xbe\x4a\ +\xba\xe0\xfc\x73\xd1\xd8\x72\x04\x8c\x09\xa3\x99\xc8\x66\xc7\xc8\ +\xf0\x20\x06\x07\xfb\x51\x56\x56\x86\xd9\xb3\x66\xe0\xdd\xf7\xde\ +\x6f\xb2\xcc\x98\x41\x93\x45\x37\x05\x80\x7e\x3c\x02\x8b\x9f\x92\ +\x93\x9d\xb3\xa1\x20\x7f\x92\x58\x55\x5b\xbb\x37\x38\x12\x71\xad\ +\xbd\xfa\x9a\x92\xb3\x96\x9d\x8e\xb6\xf6\x56\xb4\x77\x74\xc0\x34\ +\x0d\x38\x9d\x4e\xe4\xe4\xe4\xa2\xb0\x20\x0f\xfb\xf6\xef\x03\xa3\ +\x02\xb6\xed\xf8\x14\x5d\xdd\xdd\xb8\xe1\x9a\x6f\x53\x42\x38\x6c\ +\x36\x3b\x9c\x2e\x17\x74\x5d\x87\xaa\x2a\x68\xef\x6c\xc5\xa5\x97\ +\x5c\x80\xd5\xdf\xba\x42\xa2\x84\x40\xd7\x75\x34\xb6\x1c\x49\xb6\ +\xe0\x0c\xa2\x20\x82\x5b\x1c\x87\xaa\x6b\xa1\x26\x14\x18\x26\x47\ +\xc5\x9e\x7d\x08\x0e\x87\x36\x4a\x92\x68\x8d\x75\x0d\x29\x75\x60\ +\xda\xc2\xd4\x73\x21\x25\x16\x7f\xf0\xf1\x87\x1f\xfe\xc9\xb2\x33\ +\x96\x62\xdf\xfe\x03\xe8\xed\xed\xc5\x39\x67\x2f\x43\x65\x65\x05\ +\x5a\xdb\x5a\xe1\xf1\xb8\x21\xcb\x76\x78\x3c\x1e\x70\x58\xf0\x7a\ +\xbc\xc8\xca\xca\xc6\xee\xdd\x7b\xf0\xd2\x9f\xde\xc0\xf7\xbe\xb3\ +\x0e\x8b\xe6\xcf\x43\xfd\xe1\x7a\x4c\x9f\x3e\x03\x4e\x87\x1d\xad\ +\x9d\x2d\x20\x20\xc7\x12\x83\xdd\x3e\xda\x82\x1b\xc6\x68\x71\x65\ +\x8c\x01\x00\xfc\xe9\x7e\xec\xdd\x77\x10\x0f\x3c\xf8\xb3\x06\xca\ +\x68\xa5\xdf\x97\xbe\x28\x16\x8b\xe5\x25\x74\x75\x29\x65\xec\xd0\ +\x84\x69\x54\xb2\xfe\xe1\x02\xd3\xb2\x6c\x7e\x8f\x77\xde\xf4\x53\ +\xa6\x21\x38\x34\x00\x45\x8d\x62\xc1\x69\x73\xd0\xd2\xd2\x84\x8e\ +\xce\x0e\xf8\x7c\x3e\x7c\x5e\x55\xab\x56\x55\x1f\xee\x5d\xb0\x60\ +\x6e\xce\xc5\x2b\x57\xc8\x86\xa6\xc1\x30\x74\xb8\x3d\x6e\x74\x76\ +\x76\x19\xb2\x24\x11\xaf\xc7\xcb\x08\x11\xf0\xee\x5f\xdf\xc7\x39\ +\x67\x9f\x85\x92\xc9\xa5\xe8\xee\xe9\x82\x69\x9a\x20\x94\x40\xd3\ +\xd4\xd1\xf9\x9b\x8d\xc6\x1a\x63\x0c\x4e\x87\x13\xb5\x75\x87\xf1\ +\xe4\x6f\x9e\xeb\x6f\x6b\x6e\xba\x21\x3c\x14\xac\x04\x20\x65\x64\ +\x64\xd8\xb2\xb3\xb3\xe3\xda\xb8\x74\x9f\x1a\x03\xe3\x1a\x3d\x4b\ +\x37\x02\xb9\x85\x05\xc5\x4e\xa7\x13\x96\x65\xc0\x32\x2d\x48\xb2\ +\x8c\xae\xee\x6e\xe4\xe6\xe6\x62\xf3\xb6\xcf\xf8\xee\x8a\xbd\x8f\ +\x30\x51\xfc\xe3\x87\x1f\x7e\x72\x1d\x40\x7e\xba\xfe\xa6\xeb\x48\ +\x34\x3a\x82\xbc\xbc\x6c\x3e\x65\x72\x81\xf9\xd4\xb3\xcf\x0b\x35\ +\xb5\x75\xa8\xa8\xdc\xb3\xff\x50\x6d\xdd\x8e\x8d\x9f\x6c\xb9\xea\ +\x87\x3f\xf8\xcf\x49\x73\x66\xcf\x44\x2c\x1e\x83\xaa\xa9\xe0\xdc\ +\x02\x25\x04\x84\x32\x48\xa2\x00\xdd\x30\xd1\xdb\xd3\x87\x4d\x9b\ +\xb6\xa1\xb9\xb1\x69\x6f\xd2\x78\x19\x80\x3e\x30\x30\x10\x19\x18\ +\x18\x48\xcd\x92\xe3\xb3\xd0\xb3\x2f\x3c\x7f\x6c\x92\xa1\x8c\x92\ +\x78\x22\x5e\xb6\x73\x77\x45\x79\x4b\x4b\x9b\x54\x54\x58\x80\xdc\ +\xec\x1c\xb4\x75\xb4\x21\xe0\xf7\xe3\xe3\x4d\xdb\x95\xd0\x51\xe5\ +\x4a\x66\x93\xfb\x15\x62\x1c\x20\xa6\xf9\xfd\x2b\x2e\xbd\x58\xd4\ +\x74\x0d\x92\x24\x11\x91\x09\x4c\xd3\x34\xba\x7d\xc7\x2e\x44\x63\ +\xb1\xc3\x03\x3d\x5d\xff\xde\xd6\xd6\xb2\xe5\x60\x75\xcd\x9c\x0c\ +\x7f\x20\xd7\xeb\xf5\x42\x12\x24\xc8\x92\x0c\x0e\x02\x4d\xd5\x10\ +\x1c\x1c\x46\x5b\x6b\x1b\x1a\x8f\x34\xa2\xb0\xb0\x10\x0d\x8d\xcd\ +\xfa\xd0\x50\x70\xb3\xa6\xaa\x11\x00\xd2\x44\x79\x26\xc5\x03\x82\ +\x94\xf2\x32\x4c\x09\xbd\xa5\xfe\xc8\x91\x7b\xab\x6b\xea\xd7\x1e\ +\xaa\xaa\x7a\xe8\xbf\x1f\x7a\xc0\x95\xe6\xf5\xc0\xe9\x74\x61\x6a\ +\x69\xb1\xdc\x70\xa4\xe9\x7b\x54\x93\xdf\x30\xe2\x89\x6b\xa7\x4f\ +\x2b\xb7\x4b\xd2\x68\x53\x16\x1d\x89\x21\x91\x88\x91\xd3\x97\x2e\ +\xc4\xe2\x05\x0b\xf0\xc7\xd7\xdf\xcc\x33\x34\x3d\xdf\xb2\xcc\xea\ +\xf0\x70\xa4\x71\x78\x38\x3c\xaf\xae\xa6\x06\x76\x9b\x03\xef\x7e\ +\xb0\x91\xd7\xd5\x1f\xee\xd2\x54\x35\x2c\x49\x62\xe6\xf5\xd7\xae\ +\xc9\x2c\x29\x9e\x0c\x9f\xcf\x87\x45\x0b\xe6\x4f\x6f\x69\x6a\x5a\ +\x17\x8d\x44\x7e\x9c\xf4\x02\x05\xa0\x27\xd5\x3c\x01\x40\x77\x5b\ +\x7b\x0a\x3a\xce\x39\x7c\x99\x99\x43\x2e\x97\xfd\x97\x47\x9a\x9a\ +\x66\xb5\xb6\xb6\x5c\x9f\x9f\x9f\x87\xa1\xd0\x10\xd6\xdf\xf4\x6f\ +\x34\xe0\xf7\x3f\xda\xd7\x7f\xf4\x47\x05\x93\x26\x39\xaf\xbb\xe6\ +\xdb\x88\x44\x23\x90\x24\x09\xc3\xa1\x2e\x44\xc2\x61\xf8\xbc\x69\ +\x20\x8c\x21\x1a\x8b\x76\x72\xf0\x08\xe7\x98\x52\x90\x5f\x50\x5a\ +\x52\x3c\x05\x5e\xb7\x0b\x5d\xdd\xbd\x68\x6e\x6e\xe9\x38\x5c\x5d\ +\x7d\x9b\xaa\x24\xda\x6d\x2e\xd7\xa9\x1f\x6f\xda\xfa\x7c\x61\x7e\ +\xbe\x7d\xcf\xfe\x03\x38\x50\x55\xa5\x10\x46\xda\x29\xa5\x6e\xcb\ +\x3a\xd6\x03\x59\x18\x57\x8c\x53\x00\xf4\x75\x77\x9f\x50\x07\x5c\ +\x69\x69\x20\x20\xe7\x4d\x2b\x2b\x5f\x69\x59\x1c\x5e\x8f\x17\x09\ +\x25\x81\x78\x3c\x86\xf5\xeb\xae\x67\x84\x13\xaf\xdd\x61\xc3\xd0\ +\x70\x08\x20\x1c\xa6\x6e\x62\xcf\xbe\x03\x48\xf3\xf9\xe1\xf6\x78\ +\x50\xd7\xd0\x84\xe0\xc0\x40\x95\xae\xaa\xfd\xb2\xcd\x56\xa4\xea\ +\x6a\x76\xe5\xbe\xfd\x58\xb6\x74\x09\xea\x1a\x1a\xd1\xd1\xd1\xb1\ +\x21\x16\x8d\xf4\x01\xb0\x47\x87\x43\x87\xea\x6b\x6b\x7f\xf7\xab\ +\xa7\x9f\xbd\xad\xbf\xbf\x7f\x6b\x6f\x47\xc7\xaf\xc3\xc3\xa1\x4a\ +\xcb\xb2\xa4\xe4\x8e\x5b\x48\x1d\xd9\xf9\x49\x27\xb2\xa2\xa9\x65\ +\x67\x95\x97\x97\xbf\x75\xcb\x4d\x6b\x03\xaa\xa6\x60\x24\x1a\xc1\ +\xd2\x25\x8b\x61\x5a\x16\x54\x55\x81\x28\x8a\x90\x24\x11\xb2\x6c\ +\x43\x38\x12\xc1\xcb\x7f\x7c\x9d\x6f\xd8\xf0\x49\x2d\x63\x4c\x73\ +\x7b\xbc\x93\x2c\x6e\xc6\x1a\xeb\xeb\xd6\x85\x06\x07\x6b\x00\xb8\ +\xbc\x3e\xdf\x54\x5f\x20\xb0\xd2\x6e\x77\x2c\x14\x25\x39\xb7\xe5\ +\x48\xfd\x7d\xd1\xc8\xc8\xa1\x24\x45\x34\x49\x96\x65\xd1\x66\x4b\ +\x8f\x45\x22\x2d\xe0\x3c\x9a\xa4\x8d\x95\xa4\x8d\x31\x8e\x42\x3a\ +\x00\xeb\x8b\x26\x32\x92\xa4\x97\x61\x68\xfa\xaa\x69\x65\x65\x81\ +\x65\xcb\xce\xc0\x86\x8d\x1f\x40\x14\x24\x6c\xdd\xfa\x19\x64\xbb\ +\x8c\x39\xb3\x66\x82\x51\x86\xa1\xa1\x61\x84\x86\x42\xd8\x55\xb1\ +\x17\x1b\x3e\xda\xd4\xd6\xda\x74\xe4\x46\xd3\x30\xa3\x6e\xaf\xb7\ +\x18\xe0\x8e\x70\x28\xd4\x01\xc0\x03\xc0\x0a\x87\x42\xf5\xe1\x50\ +\xa8\x86\x50\x4a\xed\x0e\x67\xba\x9a\x48\xf0\xe4\xee\x26\x00\x58\ +\x9a\xaa\x26\x34\x55\x1d\x48\x52\x84\x25\xaf\x8d\x71\x7e\xcc\x0b\ +\x63\xeb\x84\x23\x25\x49\xee\x86\x1d\x80\xed\x68\x4f\xf7\x1f\xb6\ +\x6c\xdb\x76\xc6\xf4\xe9\xd3\xe6\x9e\xb1\x64\x31\x2a\xf7\xec\xc3\ +\x4b\xaf\xbc\xa8\x0c\x87\x86\x1b\x26\x4f\x29\x2a\x5f\xb2\x68\x81\ +\x2c\x8b\x14\xc1\x60\x10\x36\xbb\x0b\x5e\xb7\x5b\x55\x13\x09\x37\ +\x00\x29\x34\x38\xd0\x03\x40\x03\xe0\x4e\x1a\xa1\x8d\x71\x97\x5b\ +\x16\x89\x47\x47\x42\x18\x6b\xb6\x92\x61\x97\x34\xcc\x3a\xce\x58\ +\x63\x1c\x90\x63\x01\x3c\x11\x00\x96\x54\x5b\x52\x1d\xba\xa6\x8e\ +\x1c\xae\xae\x7a\xe0\x17\xff\xfb\xc4\xc3\x35\x75\x87\xe7\x54\x54\ +\x54\x0e\xd4\x55\x57\x3d\x17\x8d\x84\x6b\xda\x5a\x5b\xcf\xcf\xc9\ +\xc9\xbe\x69\xe9\xc2\xd3\xe0\x76\xbb\x90\x96\x96\x8e\x5d\x95\x7b\ +\x8b\x99\x28\x15\x9a\xba\xd6\x99\xfc\x7e\x0d\xf8\xc7\x04\x95\x34\ +\x52\xc5\x3f\xba\xe1\xf1\xbc\x1d\x1f\xa0\xe3\x01\x8c\x81\x30\x70\ +\xdc\x49\xd7\x97\x51\x68\x4c\xed\xaa\xa2\x74\xb5\x34\xd4\xff\xf8\ +\xf5\x60\x70\x4d\x6c\x24\x52\x1d\x8d\x84\x5b\x00\x38\xb8\xa5\xb7\ +\xb7\xb7\x77\x44\x16\x2d\x38\xcd\x63\x58\x04\xbb\xf7\xec\x47\x2c\ +\x16\x8f\x3b\x9d\x4e\x4f\x64\x58\x1b\x3b\xe0\x34\xc6\x81\x18\xd3\ +\x44\xf2\x1a\x19\xf7\xbc\x31\xc3\x38\x52\x3d\x30\xf6\xff\xc4\x86\ +\x4e\x10\xc4\x74\x8c\x3e\x00\x9c\xc9\xd5\x0e\x40\x20\x84\x50\xce\ +\xb9\x33\x49\x09\x81\x09\x4c\x28\x98\x5c\x7c\x6b\x7e\x61\xe1\xe9\ +\xd1\x91\x91\x96\xce\xce\xae\x5d\xd1\x70\xa8\x52\x55\x94\x16\xcb\ +\x34\xe3\x00\x94\x71\x1a\x4f\x1a\x1e\x4f\x02\x1a\x33\x7c\x6c\x1d\ +\xcb\x30\xe3\x81\x9c\x54\xbe\x28\x0b\x8d\xc5\x81\x3c\x8e\x4e\x32\ +\x46\xab\xa1\x38\x4e\x09\x21\x44\xe4\x9c\x0b\x49\x6e\xc6\xc7\xd1\ +\xc5\x38\x6e\xc7\x95\xe4\x6a\xe2\x1b\x94\x93\xa5\xd1\xb1\x6c\x34\ +\xde\xe8\x31\x10\x0c\x27\xfe\x76\x38\xe6\xee\xb1\x80\x1d\xbf\x7e\ +\xf3\x3f\xd3\x7f\x05\x00\x13\x01\x1a\x1b\x43\xe9\xb8\xf7\x8e\x07\ +\x31\xc6\xe3\x7f\xb9\xfc\x1d\x74\x4a\x51\x78\x72\xbc\x11\xfc\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0a\x0e\ +\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\ +\x09\x97\x49\x44\x41\x54\x68\xde\xd5\x9a\x5b\x6c\x1c\xd5\x19\xc7\ +\x7f\x73\xdd\x5d\xaf\xb3\xbb\xb1\xb1\x63\x3b\x0e\x4e\x22\x20\x45\ +\x95\x02\x45\x2a\x2f\x11\xbc\x05\x04\xa8\x0f\x5c\x84\x04\x14\x52\ +\xc4\xa5\x84\x70\xa9\x5a\x95\x42\x2b\x55\x2a\x94\xaa\x55\x2f\x38\ +\x6d\x69\xd3\x56\x08\x42\x20\x6d\xa9\x8a\x92\x0a\x1a\xca\xed\x01\ +\x4a\x5b\xab\xe2\x96\x12\xaa\xc4\x24\x36\xc4\x80\xbd\xbb\xb6\x77\ +\xbd\xb3\x33\xb3\x3b\x97\xd3\x87\xd9\x71\x76\xed\xbd\x1a\xd3\xaa\ +\x47\x5e\xcd\x65\xc7\xe7\xfc\xfe\xdf\xff\xfb\xce\x9c\x19\x5b\x12\ +\x42\xf0\xbf\x6a\xd2\x0f\xa4\x08\x9b\xd9\x85\xc1\xc5\x58\xf4\x11\ +\x41\x47\xa6\x0b\x19\x1d\x97\x37\x28\x72\x80\x7f\xb0\x4f\xec\x17\ +\x4e\xc3\x3e\xea\x09\x90\x24\x49\x05\xa4\x4f\x8d\xfc\x06\x52\x6c\ +\xe5\x3b\x68\x5c\x83\x4c\x4a\x8d\xa8\x8c\xac\x1d\xe1\x8c\xbe\x33\ +\xa0\x04\xef\x15\xde\xe3\x7d\xeb\x7d\xdc\xbc\x0b\x82\x3c\x51\x9e\ +\xc7\xe6\xab\xe2\x0e\x31\xd5\x52\x40\x05\xfe\x0b\xc0\xe9\x9f\x8a\ +\x88\x1d\x7c\x9e\x73\xb8\x9c\x18\xb1\xde\xb5\xbd\xdc\xf4\x99\x9b\ +\xb8\x70\xdd\x85\xa8\xb2\x7a\x6a\x34\x1f\x5c\x5c\x5e\x99\x7d\x85\ +\x47\x5e\x7f\x84\x59\x63\x16\x6c\x0a\x14\xb8\x5e\x7c\x5b\x1c\x6c\ +\x25\x40\x03\x6e\x17\x42\x8c\x96\x4a\xa5\xf0\x6c\xf8\xb3\x54\x7f\ +\x83\xf3\x4b\x2f\x93\x10\x42\xf0\x87\x89\xa7\xd8\xf1\xd2\x0e\xbc\ +\xa8\xc7\x25\x23\x97\x70\xc5\x99\x57\x10\x51\x22\x08\x04\x8e\xeb\ +\x80\x38\x15\x32\x4d\xd5\x90\x24\x89\x92\x57\xe2\xe9\x13\x4f\x73\ +\xe8\xd8\x21\x30\xb1\xd1\xb9\x51\xdc\x26\x7e\x17\x76\xad\x36\x1a\ +\xb2\x54\x2a\x93\x9d\x9d\x05\x24\x24\x49\x42\x92\x40\x92\xa4\xca\ +\x71\xbd\xfd\x53\xdb\x7a\xfb\x87\x26\x0f\x71\xf3\x6b\x37\xe3\xa9\ +\x1e\x17\x8c\x5c\xc0\xf6\x33\xb6\x53\x10\x05\x16\xdc\x05\x8c\x5c\ +\x8e\x73\xbb\x3f\x47\x97\x1a\x03\xc0\x72\x2d\xde\xce\xbf\x49\x22\ +\x95\xc2\x43\x62\xfb\xc8\x76\x0c\xcf\xe0\xd5\x63\xaf\x46\x71\x79\ +\x42\x7a\x52\x8a\xf2\x45\xf6\x0a\x21\x44\x23\x01\x80\xa8\x82\xac\ +\x0f\x5d\x0f\x78\x71\x5b\x89\x3c\xc0\x8c\x35\xcd\xed\x7f\xdb\x89\ +\x1d\xb1\x39\x6b\xf8\x2c\xb6\x6d\xd8\x46\xc6\xc9\xa0\xca\xa0\x4b\ +\x82\x6c\x61\x9a\x6d\x67\xde\x49\x6f\xac\x0f\x80\x59\x3b\xc3\x4b\ +\xaf\xff\x09\x2d\xe9\xe0\xfa\x12\x25\x01\xdb\x86\xb7\x31\x63\xcd\ +\x70\x6c\xe6\x98\xc2\x2c\xbb\xb9\x81\x67\x81\x8c\xdc\xcc\x76\x49\ +\xaa\x85\x5f\xfa\x09\x81\x6b\x3e\xa1\x88\xca\xb1\xef\xfb\xdc\xf3\ +\xc6\x3d\xe4\xc9\x43\x04\xb6\x0e\x6d\x25\xe3\x65\xc8\x7b\x69\x8a\ +\x7e\x1a\xcb\x4f\xb3\x60\x4c\x23\x84\x7f\x2a\x74\xbe\x4f\xc1\x9c\ +\xa6\xe4\xa7\xb1\x44\x9a\xa2\x97\x26\xef\x67\xd8\x3a\xbc\x15\x34\ +\x20\x42\x82\xcf\xf2\x3d\x49\x92\xe4\x86\x0e\x84\x71\xac\x27\xa0\ +\x5e\xa4\xab\x23\x5e\xfd\x9d\x69\x9b\xbc\x3c\xf9\x32\xa8\xd0\x33\ +\xd8\x43\xd9\x2f\x93\xf7\x32\xc4\x2b\x97\x2b\xb2\xc0\xb4\xb2\xf8\ +\xbe\xb7\x38\xb6\xef\x7b\x94\xac\x2c\x9e\xd0\x70\x08\x1c\x30\x7d\ +\xf0\x44\xd0\xc7\xdc\xc7\x73\x60\x71\x35\xdb\xf9\x5a\x23\x01\xa2\ +\x36\xba\xd4\x87\x6f\xb4\x0d\x0b\xd7\xf7\x79\xfc\xe8\x5e\x8a\x4e\ +\x11\x06\x40\x97\x75\x32\x6e\x9a\x24\x20\x0b\xd0\x24\xd0\x7c\x81\ +\x6d\xce\xd5\x3a\x20\x7c\x6c\x73\x0e\xdf\x57\x70\x85\x44\xc9\x07\ +\xcb\x03\x53\x80\xae\xea\x81\x0b\x2a\x09\xae\xe0\xeb\x4d\x6a\x80\ +\x86\xf0\x4b\xa3\xde\x68\xeb\xfa\x3e\xcf\x7c\xf8\x0c\x24\x82\xfe\ +\xa6\xfd\x69\x16\xfe\x99\xa5\xd7\xeb\x22\x21\x6b\xc4\x14\x88\xc9\ +\x50\x48\x97\xa9\x9e\x0d\x85\x10\x7c\x30\x91\xa1\x60\xe6\xb1\x7d\ +\x30\x3d\x58\xf0\x1c\xf2\x9a\xc9\xdc\x06\x17\x22\x40\x12\x98\xe5\ +\xa2\x26\x02\x1a\xc0\xb7\xe9\x02\x42\xe0\x38\x0e\xe3\xe5\xf1\xc0\ +\xcf\x6e\x60\x06\x6e\x5b\x7b\x07\x77\x5f\xf4\x95\x4a\xdf\x81\x5b\ +\x12\xd0\xbf\x66\x68\x71\xe4\xfe\x35\x43\x1c\xd8\xf9\xaf\xc5\x54\ +\x10\x80\xf0\xe1\xa7\x2f\x8c\xf2\x70\x6e\x14\x27\x01\x94\x00\x9b\ +\x75\x6a\x13\xfe\x9a\xc2\xa4\x43\x17\x00\x4a\xb6\x0d\x2e\xb0\x16\ +\xf0\x00\x07\x92\xd1\x14\xa7\xf7\x8c\x34\x33\x1e\x59\x52\x18\x4a\ +\x2d\xbf\x26\xa1\xa6\x50\x2c\xc0\x27\x70\x41\x23\xd2\xb4\x88\x5b\ +\xc2\x37\x12\x04\x88\xca\x0c\xa4\x2a\x6a\x20\x42\x00\x8d\xe7\xbc\ +\xb6\x9b\x04\xc1\xdd\x4b\x00\x31\xb4\xe6\x45\x5c\x05\xda\xb1\x0b\ +\x80\x2c\xcb\x28\x28\x41\x6f\x41\xe1\x91\x77\x73\x7c\x30\xf7\xfe\ +\xb2\x14\x1a\x48\x0e\x23\x4b\x0a\x00\xbe\xf0\x98\xc9\x4f\x9d\x4a\ +\x1f\x40\x08\x58\x70\x73\x41\x3f\x65\x40\x07\xe2\xc8\x4d\x8b\xb8\ +\x1e\x7c\x33\xe8\x9a\x3a\x10\x02\x59\x96\x49\x25\x52\x7c\xa4\x7c\ +\x04\x0e\xd0\x03\x7b\x4e\x8c\xf2\xf8\xe3\xa3\x74\x2b\xd0\xad\x42\ +\xb7\x0c\x56\x16\x9e\xbb\x73\x92\x81\x44\x90\x36\x99\xc2\x14\x97\ +\xff\x72\x23\x6b\xfa\xa1\xe8\x41\xc1\x03\xc3\x03\x4b\x83\xf2\xa6\ +\x20\x15\x51\x00\x83\x93\x2d\x67\x21\x9a\xc1\xb7\x10\x24\x2b\x0a\ +\xe7\x69\xe7\xf1\xae\xf7\x6e\x30\xa8\x04\x62\x33\x74\x45\x60\xad\ +\x0e\x7d\x11\xe8\x55\x20\x7d\x78\xf9\xd8\x7d\xa7\xc3\xc6\x73\x61\ +\xde\x83\x4c\x19\x32\x25\xf0\xcb\x50\xb6\x08\xea\x49\x02\x26\xf8\ +\x6b\xd3\x3b\xf1\x62\xaa\x54\x0b\x69\x00\x2f\xd5\xd9\xaa\x8a\xc2\ +\xb5\xf1\x6b\x89\x11\x0b\xf2\xd6\x05\xab\x0c\x66\xe5\x63\x94\x61\ +\xc1\x05\x47\x0b\xf3\xf5\x54\xa2\x97\x55\x98\x77\x21\x5f\xb9\xce\ +\x74\x20\x67\x81\x08\xa3\xef\x63\xb1\x87\xdf\x36\x2d\x2b\xa9\x2a\ +\x9f\xa5\x16\xf0\x8b\xf5\x11\x7e\x2f\xcb\xc4\x62\x31\x86\xfa\x87\ +\x38\xdf\x3d\x3f\x00\x54\x82\xe8\x19\x16\x2c\xd8\x01\xd0\xbc\x05\ +\xa6\x0c\xa2\x4a\x80\x90\x82\x73\x19\x13\xe6\x2c\xc8\x99\x30\x67\ +\x42\xa1\x5c\x25\x34\xc3\x61\x8a\x4c\x37\x14\x10\x16\x57\xab\x3a\ +\x58\x84\xae\xe3\x82\xae\xeb\x9c\x76\xda\x69\xec\xec\xde\x49\x54\ +\x44\x83\x59\x48\x03\xbb\x04\x39\x03\xe6\x8b\x30\x5b\x04\xc3\xaf\ +\xcc\x1a\x55\x02\x0a\x3e\x64\x8b\x30\x6b\xc0\xac\x09\x59\x03\x84\ +\x4c\x30\x7d\xba\x98\xfc\x82\x9f\x03\xf9\xd6\x45\xdc\x48\x48\x1d\ +\x78\x96\x9c\x93\x65\x99\x44\x22\xc1\xd9\x1b\xce\xe6\xba\xb7\xae\ +\xe3\xd1\xa1\x47\xf1\x25\x1f\x62\x60\x15\xc1\xf3\xc0\x91\x21\x22\ +\xe0\x37\x47\x46\x49\x45\x52\x48\x40\xbe\x9c\x63\x41\x80\x63\x40\ +\xae\x14\x14\xb2\x58\x43\x10\x00\x09\x87\x03\xfc\x9a\x77\x39\x02\ +\x98\xcd\x8b\x38\xac\x85\xa5\x42\xea\xc1\xd7\x13\x52\x71\xa1\xaf\ +\xaf\x8f\x2b\xfb\xae\xc4\x3d\xe9\xb2\x7f\xe3\x7e\x9c\x88\x03\x2a\ +\x94\x73\x90\xf5\x40\x75\xe0\xc7\x47\x47\x51\x64\x40\x04\xf7\xa9\ +\xb2\x0e\xa5\x02\x08\x15\x88\x56\x22\x1f\xc1\xe7\x49\x9e\xe0\x31\ +\x0e\x00\x27\x01\xbb\x23\x07\x3a\x85\xa7\xe2\x42\x32\x99\x64\xcb\ +\x96\x2d\x5c\xe5\x5d\x45\xf4\x64\x94\x7d\x1b\xf7\x61\x26\xcc\x60\ +\x79\x91\x01\x37\x02\x05\xa3\x52\x23\x2a\x81\x02\x05\xe8\x09\x52\ +\x8e\x38\xb0\x80\xc3\x63\x3c\xc5\x63\xfc\x1e\x18\x07\x72\x42\x08\ +\xaf\x63\x07\x3a\x81\x0f\x8f\x35\x4d\x63\x60\x60\x00\x59\x96\xd1\ +\x8f\xe9\x6c\x3a\xb2\x89\xfd\xc9\xfd\x1c\xdd\x70\x94\xd2\x48\x09\ +\x72\x40\x2f\x90\x27\x10\x15\x01\xac\xe0\x5c\xd4\x8b\x72\xce\xd4\ +\x39\x8c\xdd\x32\xf6\x67\xe6\x78\x0a\xf8\x37\x90\x15\x42\xb8\xd0\ +\xf8\x91\x72\x99\x03\x21\x2c\xd5\xc7\x4b\xf7\xeb\xc0\x87\x5b\x5d\ +\xd7\x19\x18\x18\x40\xd7\x75\x62\xb1\x18\x83\x13\x83\x64\xdf\xcc\ +\xf2\x5a\xea\x35\xde\x5e\xfb\x36\x33\xda\x0c\x72\x42\x46\x45\x45\ +\x91\x14\xe2\x56\x9c\x2d\xaf\x6f\xe1\xe2\xd2\xc5\x0c\xf6\x0d\x72\ +\xcd\xdc\x35\x93\xc0\x5b\xc0\x34\xc1\x5d\x85\x66\x02\x6a\x96\x12\ +\xcb\xc0\x9b\xac\x4e\xeb\x09\xa9\x76\xa2\xb7\xb7\x97\x68\x34\xca\ +\xe0\xe0\x20\xe9\x74\x9a\xcd\xe9\xcd\x5c\x9a\xbe\x14\xdb\xb6\x11\ +\x95\xbb\xb7\x24\x49\xa8\xaa\x4a\x32\x95\x64\xfd\xfa\xf5\x0c\x0f\ +\x0f\x03\x7c\x0c\x64\x84\x10\xe5\xea\x7e\x9b\xac\x46\xa5\xb6\x1c\ +\x68\x05\xbf\xf4\x58\x55\x55\x92\xc9\x24\xf1\x78\x9c\xfe\xfe\x7e\ +\x4c\xd3\xa4\x50\x28\x60\x18\x46\xb0\xf8\x53\x55\x14\x45\x41\xd7\ +\x75\xe2\xf1\x38\xdd\xdd\xdd\x74\x75\x75\x41\xb0\x02\x72\x97\x62\ +\xb6\x78\xa4\x6c\xdf\x81\xfa\x31\x68\x2c\x46\xd3\x34\x54\x55\xa5\ +\xab\xab\x8b\x9e\x9e\x1e\x5c\xd7\xad\x71\x40\x96\x65\x14\x45\x59\ +\xdc\xa7\xf6\x56\xd1\x86\x03\x21\x70\x75\x2a\x55\x9f\x6f\x90\x26\ +\xed\x3a\x01\x84\x60\x28\x8a\x82\xa6\x69\xac\xa4\xb5\x2c\xe2\xa5\ +\xd1\x6f\x27\x75\x5a\xc1\x37\x73\x6d\x55\x05\xd4\x8b\x7e\x08\xd0\ +\xaa\x68\x3b\x85\x17\x42\x2c\x3e\x17\x57\x3f\x1f\x57\xa7\x6c\xc7\ +\x02\x6a\x84\xb4\xe8\xa8\x1e\x60\x3b\xf0\xbe\xef\xd7\xc0\x87\xc7\ +\x35\xbf\x23\x2b\x2b\x14\xb0\x14\x80\xd5\x4b\x23\x21\xc4\x22\xac\ +\xe7\x79\x78\x9e\x87\xef\xfb\x35\x82\x16\xc7\x52\x75\x58\x71\x11\ +\xb7\x19\xf9\x4e\x5c\x09\x41\x7d\xdf\xc7\x71\x1c\x5c\xd7\xc5\xf3\ +\x3c\xca\xe5\x72\x70\xec\x05\x2f\xb9\x64\x49\x42\xd6\x74\xc6\x8f\ +\xbf\x33\x05\xa4\xeb\x89\x58\xb5\x14\x6a\xd7\x89\x10\xdc\x75\x5d\ +\x1c\xc7\xc1\x71\x1c\x6c\xdb\xc6\x34\x2d\x2c\xdb\xc2\x29\x3b\x78\ +\x15\x01\xf1\x44\x92\x7c\x3a\x6b\xde\x7a\xe3\x8e\x5f\x01\xcf\x86\ +\xcb\x87\x8e\x05\x2c\x13\xd2\x00\xae\x55\x0b\xd3\x26\x84\x2f\x97\ +\xcb\x2c\x14\x0a\xe4\x72\x39\x2c\xd3\xa4\x68\x9a\x94\xcb\x0e\xa9\ +\x54\x92\xc1\xa1\xf5\xcc\xce\x66\xbd\x5b\x6e\xfe\xd2\x4f\x8e\x1f\ +\x3f\xfe\x33\x21\xc4\x42\xbd\x3e\x9b\x2e\x25\x56\x92\x3a\xcd\x04\ +\x86\x02\x42\xf8\x5c\x2e\xcf\xd4\xd4\x49\x8a\x96\x49\x77\x57\x37\ +\xfd\xfd\xfd\x0c\xac\x5b\x87\xae\xeb\x9c\x98\x98\xf0\xef\xdc\xb5\ +\xeb\xa1\x23\x87\xdf\xf9\x91\x10\x22\xdf\x68\xbc\xf6\x56\xa3\x1d\ +\x40\xb7\x13\x7d\xd7\x75\x31\x0c\x83\xf9\xf9\x79\x0a\x45\x83\xcb\ +\x2e\xb9\xb4\x52\xcc\x2e\x86\x51\x64\x62\x72\x42\xdc\x73\xdf\x37\ +\xf6\x8c\x8d\x8d\x3d\xd0\x28\xf2\x61\x6b\xf9\xaa\xa9\x51\xfe\x7f\ +\x92\xf4\xb1\x6d\x1b\xc3\x30\x28\x14\x16\xe8\xee\x8a\xd7\xc0\x4f\ +\x4e\x4e\x70\xff\x83\xf7\xef\x7b\xf9\xf9\x17\xef\x6b\x05\xdf\x96\ +\x80\x65\x42\xda\xbd\xbe\xea\xda\x70\x5a\x0c\xa7\x4b\xcb\xb2\x29\ +\x16\x4d\x0c\xd3\x24\x99\x4c\xd6\xc0\x3f\xb4\x7b\xf4\xe0\xc1\x3f\ +\x1e\xbc\xa3\x1d\x78\xe8\xb0\x88\x3b\x81\x6e\xe6\x40\xa9\x64\x63\ +\xdb\x36\x25\xdb\x66\x70\x70\x20\x4c\x1b\x46\x77\x8f\x1e\xdc\xb7\ +\x77\xdf\xf5\x42\x88\x42\xbb\x63\x36\x2f\xe2\x55\x6a\xd5\x77\x59\ +\xd7\x75\x29\x57\x8a\x38\x95\x4a\x11\x89\x44\x99\x98\x9c\x10\xf7\ +\x7f\xf7\x81\xbd\x07\x9f\x3e\x70\x57\x27\xf0\xcd\x04\xac\x7a\xab\ +\x49\x23\xd7\xc3\x17\x82\x91\x91\x4d\x9c\x98\x98\xf0\xef\xfd\xe6\ +\xbd\x0f\xbf\xf8\x97\x17\xbe\xd5\x29\xfc\x7f\x45\x40\x98\x56\xd5\ +\x0b\x35\x21\x04\xc9\x9e\x5e\xf2\xf9\x9c\x77\xd7\x5d\xbb\x7e\x38\ +\xf6\xf7\xb1\x07\x85\x10\xc6\x4a\xfa\x6f\xfc\x40\xb3\x4a\x4b\xde\ +\x10\x3c\x5c\xd7\xc8\xb2\x8c\x16\x8b\x63\x2d\xe4\xcd\x5d\x5f\xbe\ +\xe5\xfb\x87\x0f\x1f\x7e\x68\xa5\xf0\xcd\x04\x08\x59\x96\x89\x44\ +\x22\x2b\x16\x55\x73\xad\x24\x21\x24\x19\xa1\x68\x48\x91\x2e\x3e\ +\xf8\x78\x7c\xea\xee\x9d\xb7\xee\x3e\x31\x3e\xbe\xe7\x93\xc0\x03\ +\x0d\xff\xd5\xe0\x32\x60\x23\xb5\xaf\x5c\x57\xab\x09\xe0\x43\xe0\ +\xb9\x4f\x0a\x5f\x57\x40\x45\x84\xc2\xaa\xfc\x3d\xa5\xb1\x88\x7a\ +\x0b\xb3\x55\x13\xf0\xff\xd4\xfe\x03\x04\xe4\x96\x06\x3c\x08\x04\ +\xfb\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x0a\xbb\ +\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\ +\x0a\x44\x49\x44\x41\x54\x68\xde\xd5\x99\x7b\x70\x55\xc5\x1d\xc7\ +\x3f\xe7\x71\x6f\x6e\x9e\x08\x57\x84\x60\x40\x10\x34\x4a\x10\x12\ +\xa0\xa5\x4a\xc5\x06\xa8\xb5\x3c\xfa\x1a\x8b\xf8\xea\xc4\x22\x54\ +\xf1\xed\x50\x86\xfa\x00\xb4\x3a\x2a\xe8\x28\xc5\x71\xb0\x43\x2d\ +\x23\xd4\xe2\x8c\x83\x0f\x10\x3b\x15\x0d\x93\x02\x53\x47\x0a\x04\ +\x85\xd0\xf0\x0e\xa4\x85\xdc\x80\x11\xc2\xcd\x3d\xb9\xe7\xec\xf6\ +\x0f\xb2\x67\xce\x3d\x39\xe7\x26\xb1\x76\x3a\xee\xcc\xce\x39\xfb\ +\xdb\xfd\xed\xfe\x9e\xdf\xdd\xb3\x47\x93\x52\xf2\x4d\x2e\xfa\xff\ +\x5b\x80\x9e\x96\x92\xe2\xc2\x05\xb3\x67\xcf\x9e\xe1\x12\xa4\x94\ +\xdf\x98\xfa\x78\x15\xf7\xf6\x2a\xd0\x45\x5e\x4c\x13\xe5\xe5\xe5\ +\x7f\x02\x34\xd3\xab\xdd\xd8\xb1\x63\xd7\x3b\x8e\x33\x4d\xd3\x34\ +\x74\x5d\x27\x1e\x8f\x9f\x3a\x7d\xfa\x74\x0a\x40\xd3\xb4\x0c\x4b\ +\x54\x55\x55\xf5\x19\x31\x62\x44\xae\x94\x12\xc7\x71\xd0\x34\x0d\ +\xd3\x34\x89\x46\xa3\x44\x22\x11\x84\x10\x28\x3e\xc3\x30\x5c\x3e\ +\x21\x04\x42\x08\x2c\xcb\x22\x9d\x4e\x93\x4e\xa7\x01\x30\x0c\x83\ +\x1d\x3b\x76\xac\x59\xb7\x6e\xdd\xef\x0c\xc3\x78\x5b\xad\xa7\x69\ +\x5a\x11\x50\x38\xb6\xac\x28\xf1\xd4\xec\xd2\x3e\x27\xbf\xd8\x7f\ +\x7c\xe5\x7a\xad\x44\xd3\xb4\x9b\xa3\xd1\xe8\x8e\x0c\x05\x1c\xc7\ +\x99\xe6\xf5\x0a\x10\x57\xc2\xa9\xa2\xde\x6d\xdb\x76\xdb\x4a\x70\ +\x5d\xd7\x31\x4d\x93\x48\x24\x42\x24\x12\xc1\x34\x4d\x77\x8c\xca\ +\xb5\xba\xba\x3a\xf6\xec\xd9\xe3\x2a\xe2\x38\x0e\x95\x95\x95\x00\ +\xa4\x52\xa9\x9b\x0d\xc3\x98\x09\x98\x52\x4a\x97\xef\x8a\x21\x05\ +\x4c\xb8\xfe\x17\x7d\xdf\xdb\x7f\x50\xfe\xad\xfe\xf5\x81\x83\x06\ +\x25\x39\x72\x60\x97\x7d\x49\xff\xe8\x82\x0c\x05\xc2\x8a\x9a\xcc\ +\xfb\xee\x4d\x7e\xc3\x30\x10\x42\x90\x93\x93\xe3\x0a\x1e\x8d\x46\ +\x31\x0c\x83\x68\x34\xea\xf2\x09\x21\xa8\xaf\xaf\xe7\xdd\x77\xdf\ +\xcd\x30\xca\xe4\xc9\x93\x71\x1c\x07\x29\xa5\xa1\xe6\x55\x6b\xf4\ +\xce\x6f\xe3\x89\x99\x47\xd9\xd6\xb4\x93\x6f\x4f\x98\xad\x2d\x89\ +\x8f\xc0\xfe\xe7\x9c\xcf\xca\x2e\x1d\x34\xf4\xa1\xa5\x47\x17\x9b\ +\x61\x82\xfa\x2d\x17\x44\x13\x42\xa0\xc2\xcd\x34\x4d\x0c\xc3\xc8\ +\xf0\x82\x61\x18\xae\x87\x94\x02\xba\xae\x77\x5a\xcb\x30\x0c\x6c\ +\xdb\x76\x3d\xaf\xd6\x28\x88\xb5\xf3\xd2\x9c\x46\x3e\x3b\x28\x58\ +\xf8\xca\x5b\x4c\xaf\x13\x54\x55\x55\x71\xb6\x68\xe9\x88\x86\xda\ +\x39\xd3\x37\x6c\x93\xef\x77\xf2\x80\x77\x62\xaf\x32\xde\x89\xfd\ +\x74\x35\xd6\xb6\x6d\x72\x72\x72\x5c\xc1\x75\x5d\x77\x2b\x90\xf1\ +\xee\xe5\xf5\x2a\xa5\x9e\xb1\x88\xcd\xd2\x5f\x1e\xa5\xf9\x6c\x84\ +\x79\x2b\xf2\x49\xdb\xa0\x25\x56\x63\x1d\xb3\x71\x2c\x5e\x9d\x74\ +\xdf\xb9\xf7\xc1\x07\xa3\xfe\xac\x0f\x52\xce\xbf\xb0\x0a\x97\x68\ +\x34\x4a\x5e\x5e\x9e\xfb\xae\xf2\x40\x25\xb0\x12\xde\x0f\x06\xca\ +\x03\xba\xae\x23\x84\x40\x4a\x89\xa9\x3b\xfc\xf6\xb6\xc3\x44\xa2\ +\xf9\xcc\x7d\x31\x87\x54\xbb\xce\xa4\x8a\x14\x8b\x67\xe5\xf2\x97\ +\x8d\xef\x38\xdf\x99\xf6\xfc\xdd\x8a\x37\x70\x1f\xf0\x5a\x35\xa8\ +\xcf\x1b\x42\x4a\x40\x15\x4e\xaa\x2a\xab\x7a\x43\x4b\xf5\xf9\x0d\ +\xa4\xeb\x3a\x86\x61\x20\xa5\x44\xd7\x24\x8f\xdc\x78\x90\x92\xe2\ +\xde\xcc\x7a\x0e\xce\x24\x0d\xbe\x55\x9a\x66\xc9\x5c\x93\x55\x1b\ +\x05\x1b\xb6\x17\x3b\x5e\x79\xcc\x30\xc1\xfd\xd6\xf6\x2b\x23\xa5\ +\x74\x05\x33\x0c\x83\x9c\x9c\x9c\x8c\xf0\x50\x3c\x42\x08\x4c\xd3\ +\xcc\x08\x4b\x7f\x38\xba\x4f\x21\xb8\x6f\xea\x41\xc6\x5e\x15\xe7\ +\xa6\x85\xed\x24\xbe\x34\xb9\xf2\x12\x87\x65\x0f\x08\x36\xfe\x5d\ +\x63\xf5\xe6\x12\x40\x66\x08\xa2\x07\x29\x90\x4d\x11\xbf\x80\x86\ +\x61\xb8\x02\xea\xba\x4e\x34\x1a\x75\xf9\x54\x9f\x37\x07\xfc\xf3\ +\x49\x29\x31\x4d\x13\xc7\x71\x18\x19\xff\x2b\x53\x27\xf4\x61\xd6\ +\x33\x69\x1a\x9a\x4c\x06\xf5\x93\xbc\xf2\x90\xcd\xf6\x7d\xb0\x7c\ +\xfd\x80\x40\x19\x42\x93\x38\x0c\x3a\x83\x50\x4a\xa1\x8b\x8a\x7d\ +\xe5\x19\xe5\x1d\xc5\xa3\xc2\xcc\x0f\xc5\x52\x4a\x92\xc7\xd6\xf0\ +\x93\xf1\xad\xfc\x6a\xa9\xc1\xde\xa3\x82\x0b\x7b\x49\x56\x3c\xdc\ +\xce\xd1\x13\x92\x67\xde\x1c\x80\x94\x5a\x86\xe2\xa1\x21\xe4\x87\ +\xce\x20\x9a\xbf\x4f\x29\xe3\x38\x8e\x9b\x17\x7e\x14\x52\xfc\xe5\ +\xe5\xe5\xae\xd2\x8e\xe3\x60\xdb\x36\xcd\x87\xde\xe1\xfb\x97\x6f\ +\x65\xf1\xea\x8b\xd8\x52\xfb\x2f\x0a\x72\x25\x2b\x1e\x4e\xd3\x66\ +\xc1\xa3\xab\xfa\x91\x76\x74\x20\x38\x94\x43\x3d\xe0\x38\x8e\x9b\ +\xa0\x41\xde\x38\x74\xe8\x10\xe3\xc6\x8d\xcb\x48\x50\x15\x2a\x1d\ +\x9b\x12\x8e\xe3\xb8\x5e\x91\x52\x92\x4e\xa7\x29\x2d\x2d\x65\xd8\ +\xb0\x61\x38\x8e\x43\x2a\x95\x22\x71\xe4\x43\xc6\x14\xfe\x91\x55\ +\xd5\x97\xf3\xe7\x8d\x75\xe4\x44\x60\xf9\x03\x36\xf9\x79\x70\xf7\ +\xb2\x0b\x49\xa5\xcd\x0c\xe1\x3b\xed\x4b\x5e\x42\x59\x59\x99\xf4\ +\x6a\xd9\xb7\x6f\x5f\x0a\x0a\x0a\x5c\x61\xbc\xe8\x23\xa5\xa4\x5f\ +\xbf\x7e\xe4\xe5\xe5\x65\xa0\x8f\x17\x62\xbd\xde\x53\x47\x07\x6f\ +\xd8\x14\x98\xff\xe6\xe9\xdb\xea\xd9\xb0\x7d\x00\x8b\x56\x9c\x44\ +\xd7\x24\x2f\xde\xeb\x30\x6a\x98\xc3\x9d\x2f\x5c\xc0\xe9\xd6\xdc\ +\xa0\xbc\xb3\xb7\x6d\xdb\x16\x09\xf5\x80\xd7\xca\x89\x44\x82\xe6\ +\xe6\xe6\x8c\x98\xf7\x3e\x9b\x9a\x9a\x02\x37\x3d\x7f\xa2\x07\x3d\ +\xe3\x05\x6d\xac\x79\xb4\x95\x8f\x6b\xfb\xf2\xf4\x6b\xa7\x91\x52\ +\xb2\xf0\x0e\xc1\xb8\xe1\x82\x59\x4b\x0b\x38\x75\x36\x06\xc8\x40\ +\xf4\xf3\x96\xc0\x8d\xcc\x3b\xb0\x27\xb4\x30\x63\xf8\x9f\x85\x31\ +\x8b\x57\x1f\xfa\x92\xcf\x8e\xf6\x61\xd1\x4a\x0b\xcb\x6a\xe7\xc1\ +\x19\x30\x7d\xbc\xe0\x81\xe5\x39\x34\x9e\xce\xef\x72\x53\x0d\x55\ +\xe0\xab\x0a\xdf\xdd\x1d\x3c\x37\x6a\xf3\xf2\x7d\x09\x9a\x5a\x7b\ +\x33\xef\x65\x8b\x73\x49\x8b\xdb\x6f\xd0\xb9\xe3\x87\x36\x0b\x56\ +\x68\xec\x6b\x2c\xea\x04\x22\xd9\x0c\xa5\x67\x5b\xec\xeb\xa0\x79\ +\xfb\x22\x86\xc3\x0b\x73\x4e\x80\xd1\x9b\xbb\x96\xb4\xd1\x9a\xb4\ +\x99\x7a\x8d\xce\xbc\x99\xf0\xcc\xeb\x36\x9f\xd4\xf7\x09\x34\x46\ +\xb6\x79\x43\x73\x40\x95\x8a\x8a\x0a\xe2\xf1\xb8\xdb\x0e\x8b\xe9\ +\xb0\xe2\x8e\xc3\x61\x66\xc5\x46\x8a\xfb\x5e\xc8\x8c\xc7\x2d\x5a\ +\xdb\x74\x7e\x70\x75\x01\x4f\xcf\x69\xe7\x83\xed\x85\x24\x0b\xa7\ +\x71\xdd\x75\x99\xbc\x75\x75\x75\x24\x12\x89\x0c\x70\xe8\x12\x46\ +\xbd\xe5\xd9\x67\x9f\x65\xe2\xc4\x89\x44\x22\x91\x4e\x7d\x0a\x51\ +\x54\xf5\xb7\xbd\x34\x21\x1c\xe4\x81\xb9\xe4\x89\x18\x37\x2d\x72\ +\x68\xfe\x52\x67\xd2\xd5\xfd\x59\x7a\xbf\xc1\xa9\xd4\x25\x8c\xf9\ +\xf1\x13\x8c\x0e\xe0\xb3\x2c\x8b\x37\xde\x78\x83\x4d\x9b\x36\x85\ +\x1a\x2a\x30\x07\x54\x19\x35\x6a\x94\x7b\x96\xf7\x4e\xae\x36\x2c\ +\xf5\xee\x6d\x07\xd1\x9c\x83\xbf\xa1\x48\xee\x65\xd6\x73\x92\x83\ +\xc7\x6d\xca\xaf\xb8\x80\xe7\xef\x4a\xf2\x45\xdb\x45\xb4\x17\x3f\ +\xee\x8e\xb7\x6d\x1b\xdb\xb6\xdd\xb6\x61\x18\x54\x54\x54\x64\xcd\ +\xb1\xac\xdf\x03\xde\x6f\x59\xd5\x17\x66\xf1\x30\x0f\xb4\xec\x7b\ +\x9e\x4b\x63\xdb\x98\xbb\x2c\x87\xda\xfa\x14\x43\x4a\xf2\xf9\xc3\ +\xc2\xfe\x9c\x4d\xe9\xb4\x15\x3f\x89\x94\x20\x65\xf8\x5c\xfe\x0d\ +\x34\x6b\x0e\x64\x83\xab\xae\xc2\x24\x88\x76\xfc\xf3\x55\x8c\xee\ +\xb5\x91\xf9\xaf\xe6\x51\xb3\xf3\x1c\x7d\x7b\x47\x59\xfb\x5c\x29\ +\xc9\xb6\x16\x5a\xfb\x2d\x41\xc3\xec\xf6\x5c\x61\xc7\x99\xac\x1b\ +\x99\x37\xde\x2d\xcb\x62\xf3\xe6\xcd\x9d\x3c\x11\x54\x01\xec\x96\ +\x4f\xb8\x75\xec\x26\x1e\x5b\xe9\xf0\x5e\xcd\x39\x72\x73\x74\x56\ +\x3f\x55\x42\xf2\xdc\x19\x3e\x3e\x3c\x05\xfb\xc0\x3f\x42\x11\xa7\ +\xac\xac\x8c\xa2\xa2\xa2\x4e\xf4\x0e\x99\xb4\x50\x05\x82\x8e\xd1\ +\xca\x02\x91\x48\x84\x49\x93\x26\x75\xe9\x01\x21\x04\xcd\xc7\xb6\ +\x70\x05\x1f\xf2\xda\x07\x26\x6f\x55\xb7\x63\xe8\xf0\xf6\xb2\x51\ +\x14\x9a\x27\xf8\xa2\xcf\x93\x5c\x33\xb0\xa4\x5b\xde\x54\x57\x33\ +\xdd\xf6\x40\xd8\x51\xba\x27\x88\xd3\x72\x72\x37\x97\x89\x27\xf8\ +\x68\xa7\xc6\x92\x35\x6d\x00\xac\x7d\x61\x34\xbd\xa2\x09\x9a\xf2\ +\xe7\x13\x89\x5d\x9c\xc1\xdf\x95\x22\x41\xc6\xed\x56\x12\xfb\x0f\ +\x60\xdd\x59\xec\xd4\x89\x3a\x06\x9f\xfb\x35\xb5\x47\xe0\xc1\x97\ +\x2c\x40\xe3\xf7\x8b\xaf\x62\xf0\x80\x02\x1a\xed\x9f\x12\x2d\x2c\ +\xed\xf6\x5c\xd9\x92\xb9\x5b\x1e\xc8\x96\xbc\x41\x8b\xa7\xd3\x69\ +\x0e\x6f\x5f\x4e\x6b\xe4\x0c\x77\x2e\x89\x20\xa4\xc6\xa2\xbb\x06\ +\x32\x6a\xa8\xa0\xb1\x7d\x3c\xd1\xf8\x98\x1e\x83\x80\xf7\x5d\x15\ +\xbf\x07\x42\x8f\x12\x2a\xfe\xfd\x93\x05\xb5\x85\x10\x7c\xf4\xe1\ +\xfb\x54\x54\x2e\xe0\xed\xdd\x93\x69\xb7\x35\xaa\xa6\xc7\x99\x38\ +\x6c\x0b\x47\x5a\xc7\x10\xe9\xf3\xdd\x40\x23\x84\xcd\xe5\xcf\x01\ +\xaf\x5c\x52\xca\xae\x93\xd8\x4f\xeb\xca\x03\x89\x44\x82\xcb\x87\ +\xf4\xc3\x4a\x9e\x64\xc6\x0d\x25\x14\xe9\xfd\xb9\x75\xfc\x27\x7c\ +\x7e\x76\x26\x83\xaf\xbc\xa9\x47\x61\x13\x96\x03\x61\xf2\x65\x85\ +\x51\xff\xb6\x5e\x53\x53\xe3\xf6\x7b\xeb\x89\xe3\x07\xf8\xd9\xd4\ +\xd1\x9c\x69\xda\xc5\xd9\xe6\xdd\x94\x5e\x7c\x96\x95\x35\x95\x0c\ +\x1e\x31\x81\x86\x9a\x9a\x0c\x34\x09\x83\x4e\xef\x98\xe1\xc3\x87\ +\x53\x58\x58\xd8\x29\x7c\x82\x4a\x56\x18\xf5\x2a\x60\x9a\x26\x95\ +\x95\x95\x9d\x2c\xb4\xbb\x76\x17\xe5\x97\x95\x71\xa6\xa9\x96\x33\ +\x89\xdd\xec\xd9\xd7\x40\xff\x11\x0f\x72\xfb\xd4\xab\x7b\x6c\xed\ +\xcc\xf3\x53\x26\xbd\xc7\x49\xec\x55\x22\x6c\xf1\xf6\xf6\x76\x4e\ +\x34\xec\xe4\xe2\x5c\x83\x33\xcd\x7b\xd9\xb2\xeb\x1c\x37\xcc\x58\ +\x41\x61\x61\x51\xb7\x84\xec\x0e\xcd\x2f\x5b\x97\x21\xe4\x17\x3e\ +\xdb\x62\x8f\x3d\x32\x1f\x3b\x79\x9c\x5e\x5a\x09\x27\x53\xa5\xcc\ +\xb8\xf3\x8e\xff\x2a\xde\x83\xda\x01\xe8\xa8\x65\x55\xc0\x97\xf1\ +\xa1\x13\x1f\x3a\x74\x90\xf5\x1b\x36\x72\x41\x51\x0e\x3f\xba\x71\ +\x0e\xd7\x4f\x9e\xf0\x95\x85\xcc\x46\xf3\xe6\x86\x0a\xef\x2e\x15\ +\xc8\x86\x40\x8a\x36\x7f\xde\xfd\x54\x8c\x1c\xc6\xcb\x2b\xd6\x90\ +\x9b\x9b\xfb\x95\x84\xec\xae\x22\x41\x47\x9c\xac\x39\xa0\x4a\xd8\ +\x2e\xfc\xe9\xa7\x9f\x72\xed\xb5\xdf\x63\xc6\xcc\xdb\x68\x69\x69\ +\xa1\xb9\xb9\x39\xe3\x1c\xef\xbf\x3e\x09\x8b\xdf\xb0\xaf\x3b\x75\ +\x45\x03\x60\x59\x16\x8e\xe3\xb8\xd7\x34\xfe\xfb\xd7\xac\xdf\x03\ +\x5e\x25\x2c\xcb\xa2\xa5\xa5\x85\x53\xa7\x4e\x91\x4c\x26\x19\x34\ +\x78\x18\x5b\xb7\x6e\xed\x74\x23\xed\x7d\x76\x45\x03\x3a\xd1\xbd\ +\x0a\x68\x9a\x86\x65\x59\x48\x29\x5d\x25\x3a\xae\x27\x23\x80\x00\ +\x9c\x4e\x1e\x18\x3a\x74\x28\xb1\x58\x8c\xc3\x87\x0f\x67\xb8\xd0\ +\x34\x4d\x0a\x0a\x0a\xc8\xcf\xcf\x67\xe0\xc0\x81\x81\xbb\xa7\xdf\ +\x03\xea\xeb\x2c\x2c\x39\x83\xf2\x0e\x70\x2f\x8b\x85\x10\x24\x93\ +\x49\x77\x4d\xcb\xb2\x38\x76\xec\x98\x26\xa5\x4c\x07\x7a\xa0\xb8\ +\xb8\x98\x95\x2b\x57\x02\xb0\x76\xed\xda\x8c\x85\xd3\xe9\x34\x7b\ +\xf7\xee\x0d\x8c\xcf\xa0\x78\xf5\xef\xa6\xfe\xcd\x2a\xa8\xad\xea\ +\x90\x21\x43\xdc\x7f\x6b\x42\x08\x6e\xb9\xe5\x16\xa6\x4c\x99\x02\ +\xc0\x3d\xf7\xdc\x13\x1e\x42\xea\xaf\xa2\x7a\xf7\x4e\xaa\xeb\x3a\ +\x23\x47\x8e\xfc\xda\xd0\xa5\x27\x09\xee\xfd\xb4\xf5\x7f\xe6\x66\ +\x28\xd0\xd0\xd0\xc0\xe2\xc5\x8b\x89\xc5\x62\xec\xdc\xb9\x93\x29\ +\x53\xa6\x7c\x6d\x42\x7e\x55\x3e\x80\x75\xeb\xd6\x51\x5f\x5f\x4f\ +\x2a\x95\xa2\xb1\xb1\x31\x3b\x0a\x55\x57\x57\x77\xfa\x89\xf7\xbf\ +\x16\x32\xdb\x5c\x70\xfe\x0e\xb6\xba\xba\x9a\xa0\xe2\x47\xa1\x5a\ +\x60\x94\x62\x6c\x6c\x6c\xc4\x71\x9c\x0c\x65\xc2\x62\xdb\x0f\x9b\ +\x61\xf1\xdd\xd5\x18\x3f\xad\xa5\xa5\xc5\x9f\xe0\x7b\xbc\x02\x6b\ +\x1d\xb0\x69\x00\x66\x3c\x1e\x1f\x12\x8b\xc5\x7e\x2e\xa5\x2c\x04\ +\x74\x29\xa5\x0e\xe8\x9a\xa6\xe9\x9c\xff\x76\xd0\x15\xbd\x83\x47\ +\xd7\x75\xdd\x30\x0c\xc3\xec\xa0\xe9\x9c\xdf\xea\x75\x5f\x5b\x02\ +\x42\xd3\x34\x01\x88\x0e\xb8\x74\xdb\x9a\xa6\xb9\xd5\x37\x4e\x7a\ +\xfb\x0d\xc3\x68\x6d\x6b\x6b\x7b\x73\xff\xfe\xfd\x07\x80\x76\xc0\ +\xce\xf8\x3f\x00\xee\x66\xa2\x07\x54\xc3\xf3\xcc\x56\xf5\x0e\xcf\ +\x2a\x3e\x38\x8f\xd9\xaa\x3a\x9e\xaa\xda\xb6\xaf\xed\x04\xf0\x08\ +\x40\x48\x9f\xc0\xff\x01\x1e\xbf\xd8\x70\xe6\x62\x9f\x2b\x00\x00\ +\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +\x00\x00\x44\xcc\ +\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\x06\x00\x00\x00\xc3\x3e\x61\xcb\ +\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\ +\x44\x55\x49\x44\x41\x54\x78\xda\xed\xbd\x79\x90\x5d\xd7\x79\x1f\ +\xf8\xfb\xce\x39\x77\x79\x5b\xbf\x7e\xbd\x03\x8d\x85\xd8\xb8\x00\ +\x5c\xc5\x45\xa2\x36\x92\x22\x29\x6b\x97\xbc\xd0\x5b\x79\x4b\xc6\ +\x71\x66\xc6\x56\x55\x2a\xa9\x99\xcc\x1f\x33\x16\x3c\xa9\xd4\x94\ +\x33\x1e\x27\x76\x26\x2e\x27\x29\x39\xb6\x33\x96\x1d\xc9\x1e\x2f\ +\xb2\x25\xcb\xa2\x44\xca\xda\x48\x11\xdc\x09\x10\x1b\xb1\x36\x80\ +\x46\xaf\xaf\xdf\x76\xef\x59\xbf\xf9\xe3\xbe\xd7\x78\x80\xe0\x38\ +\x9e\x84\x00\x9a\xf6\x57\x75\xfa\xae\xef\xf6\x7d\xef\xfb\x9d\x6f\ +\x3b\xdf\xf9\x0e\xf0\x77\xf4\xb7\x9a\xe4\xf5\x7e\x81\x6b\x45\xcc\ +\x8c\x7d\xfb\xf6\xd1\xbe\x7d\xfb\xe8\xa9\xa7\x9e\xa2\x8f\x7e\xf4\ +\xa3\xb4\x79\xf3\x66\xf1\xf0\xc3\x0f\xd3\xf7\x7d\xdf\xf7\xd1\x17\ +\xbe\xf0\x05\x3c\xfc\xf0\xc3\xb4\x63\xc7\x0e\x7a\xea\xa9\xa7\x40\ +\x44\x78\xfa\xe9\xa7\xaf\xf7\x6b\xbf\xe9\x44\xd7\xfb\x05\xde\x0c\ +\xda\xbf\x7f\x3f\xf6\xee\xdd\x4b\x93\x93\x93\x04\x80\x76\xee\xdc\ +\x49\x2f\xbd\xf4\x92\x08\x21\xc8\x6a\xb5\x4a\x00\x48\x08\x41\xdf\ +\xfa\xce\x2b\xc9\xf9\xf9\x85\xe4\xce\x7d\x37\xf7\xf6\xec\xdc\xea\ +\x84\x10\x9c\x65\x19\xe7\x79\x1e\x26\x27\x27\xbd\xf7\x9e\x77\xef\ +\xde\x1d\x3e\xfd\xe9\x4f\xe3\x53\x9f\xfa\x54\x20\x7a\xeb\xfd\x5c\ +\x6f\x99\x6f\xb4\x7f\xff\x7e\x00\x10\x0f\x3d\xf4\x10\x49\x29\xc5\ +\xc2\xc2\x82\x7a\xe3\xf4\x7c\xf9\xf3\x5f\x7c\xfa\xce\x76\xa7\xb7\ +\xcb\x79\xbf\xc5\x39\xb7\xcd\xfb\xb0\x99\x11\x4a\x60\xa4\x00\x88\ +\x01\x80\x41\x44\x70\x00\x69\x22\x6a\x29\x25\xe7\xa4\x94\x67\x62\ +\xa5\xe6\x1a\x8d\xfa\xeb\x3f\xf7\x0f\x7e\xe8\x88\x20\xb6\xf5\x7a\ +\xdd\x2f\x2e\x2e\x06\x00\xfc\x83\x3f\xf8\x83\x7c\xbd\xbf\xf3\x7f\ +\x0b\xda\xf0\x00\xf8\xec\x67\x3f\x4b\x69\x9a\xd2\xf8\xf8\xb8\xea\ +\xf5\x7a\xea\xff\xfa\x37\xff\xf1\xe6\xf3\xf3\x0b\xef\x36\xda\xde\ +\x6d\x9d\xbf\x99\x08\x82\x88\x02\x11\xc2\xec\xa6\x19\xb5\x6b\xe7\ +\xf6\x74\xfb\xb6\xcd\x69\xad\x5a\x55\xa5\x52\x2a\x4b\x69\x22\x9d\ +\x0f\x9c\x67\x99\xef\x66\x79\x58\x5e\x59\xb5\x27\x4e\x9c\xd1\xc7\ +\x4f\x9c\xd2\xad\x76\x17\xcc\x2c\x01\xea\x45\x91\x7a\x35\x89\xa3\ +\x17\xee\xdc\x77\xf3\x57\x7f\xea\x47\x3f\xb6\x18\x42\x70\xab\xab\ +\xab\xe1\x89\x27\x9e\xd8\xd0\x92\x61\xc3\xbe\xf9\x67\x3f\xfb\x59\ +\x4a\x92\x44\x8c\x8f\x8f\x47\xbf\xf1\x3b\x7f\x34\xf9\xe2\xcb\x87\ +\x1f\xeb\xf6\x7a\x8f\x46\x51\xbc\xaf\x54\x4a\xd3\x76\xbb\x75\xf6\ +\xc1\x07\xee\xa9\xbe\xfb\x9d\xf7\x8f\xde\xb9\xef\xb6\xd1\x3d\xbb\ +\x6f\x1a\x2d\xa5\x49\xc4\x7c\xf9\xf7\x26\x22\x06\x30\xd4\x9b\x8b\ +\x5d\x66\x60\x71\x69\x39\x3f\xf8\xfa\xb1\xb5\x17\x5e\x3e\xd8\xfe\ +\xd2\x97\xbf\xd6\x3c\x3f\xbf\xc8\xcc\x2c\xa2\x48\xbe\x50\xad\x54\ +\xfe\xe2\x7b\x3f\xfc\xc8\xd7\xde\xf9\xf6\xbb\xbb\xb3\xb3\xb3\xfe\ +\x33\x9f\xf9\x4c\xe8\x4b\xa1\x0d\x45\x1b\x0e\x00\x9f\xfd\xec\x67\ +\x09\x80\x98\x9c\x9c\x8c\xfe\xed\x6f\xfe\xc1\xd6\x83\xaf\x1f\x7b\ +\xc2\xf9\xf0\xa1\x5a\xad\x36\x51\xad\x54\x46\x1b\xa3\xf5\xf8\x7b\ +\x1e\x7b\x4f\xfc\xd0\xbb\xef\xf7\x53\x93\x13\xa5\x81\x7c\x07\x20\ +\x2e\xff\xda\x03\x24\x10\x88\x60\x88\xc8\x0f\xae\x06\x66\x01\x66\ +\x39\x8c\x8a\xe0\x43\x78\xe5\xe0\xe1\xd5\x3f\xfc\x93\x3f\x9f\xff\ +\xf3\x2f\xff\x65\xdb\x87\x90\x00\x68\x55\xca\xe5\xdf\xff\xe0\x63\ +\xef\xfa\xc3\x07\xde\x76\x5b\x7b\x6e\x6e\xce\x7d\xf2\x93\x9f\xdc\ +\x50\x12\x61\xc3\xbc\xe9\xfe\xfd\xfb\xf1\x93\x3f\xf9\x93\xe2\xc4\ +\x89\x13\xd1\x7f\xf8\x9d\x3f\xde\xf4\xd2\x2b\x87\x7f\x0a\x44\xef\ +\x6f\x8c\x8d\x6d\xae\x54\x2a\xd5\x38\x52\xfc\xd8\x23\xef\x4a\x3e\ +\xf4\xfe\xf7\xa6\xd5\x4a\x99\x00\xe2\x82\x0f\x84\xcb\xb7\x57\xf9\ +\x11\x88\x9c\x52\xa2\x03\x2e\x60\xe1\x9c\x1f\x61\x66\xc1\xeb\x08\ +\x60\x62\x66\x06\x10\x00\xb8\x37\x4e\x9c\x5e\xf9\xd5\x5f\xff\xcd\ +\x93\x2f\xbd\x72\xc8\x7a\x1f\x12\x66\xe8\x72\x29\xfd\xfd\x1f\xfb\ +\xc1\x0f\xff\xee\xdb\xee\xba\xb5\xfb\xd8\x63\x8f\xf9\xbe\x64\xb9\ +\xe1\x69\x43\x00\xe0\xa9\xa7\x9e\xa2\xc5\xc5\x45\xe9\x59\x94\x7f\ +\xe9\x5f\xff\xd6\x27\x72\x6d\x7e\x72\xac\x31\x76\x53\x6d\xa4\x36\ +\x92\x44\x8a\x2b\x95\x32\xff\xc8\x13\x1f\x29\xdf\xbe\xf7\xe6\x84\ +\x88\x98\xd0\x17\xed\x44\xc5\x17\x24\x82\x14\xa4\x85\x20\xdd\xef\ +\xe9\x04\x86\x60\x40\x30\x40\x52\x50\x26\x88\x1c\x50\x00\x80\x43\ +\x50\x81\x59\x86\xc0\x91\xf3\xa1\x0a\x66\x30\x73\xa1\x2b\x98\x09\ +\x60\xe3\x9d\xef\x7d\xfa\xb7\xfe\xd3\xe1\x3f\xfc\xfc\x97\x9a\x3e\ +\x84\x92\xf7\xa1\x44\x44\x0b\x93\x13\x63\xff\xfa\x17\xf7\xff\xa3\ +\x6f\x1f\x3a\x74\xc8\xfc\xcc\xcf\xfc\xcc\x0d\x2f\x0d\x6e\xf8\x38\ +\xc0\x2f\xff\xf2\x2f\x8b\xd1\xd1\xd1\xf8\xd3\xbf\xf3\x27\xb7\xfd\ +\xe1\x9f\x7e\xf5\x7f\xaf\xd5\x46\x7e\x74\x7a\x66\xfa\xa6\x7a\xad\ +\x16\x97\xcb\x25\x5f\x2e\x95\xfd\xf7\x7e\xec\xf1\xd2\xbe\x5b\xf7\ +\xc4\xcc\x1c\x38\x04\x66\x66\x66\x30\x87\xc0\x41\x0a\x6a\x2b\x25\ +\x16\xa4\xa0\x35\x41\xe8\x11\x28\x23\x20\x23\x81\x9e\x20\x74\x05\ +\xa1\x0d\x40\x33\xd8\x32\xb3\x05\x07\xc7\x80\x26\x20\x27\xa0\xc7\ +\xcc\xda\x3a\x5f\x0e\x21\x70\xd1\x98\xbd\xf3\xd2\x07\x8e\xef\xbe\ +\x63\x6f\xfd\xec\xb9\xf3\xa7\x2f\xcc\x2f\xb4\xfb\xc0\xaa\x75\xda\ +\xbd\xef\xf9\xb3\x2f\x7f\x7d\x57\x92\x94\x5e\x72\xba\xa3\x6f\xbb\ +\xed\x36\xbe\x91\xe3\x09\x37\x2c\x3c\x99\x19\x4f\x3f\xfd\xb4\x74\ +\xce\x25\xff\xdb\x3f\xff\x37\x1f\xec\xe5\xe6\xe7\x66\xa6\xa7\x6f\ +\x2e\x97\xcb\x51\x9a\xc4\x3e\x49\x92\x10\x27\xb1\xdf\xbc\x69\x4a\ +\xfc\xf0\xf7\x7d\xa8\x21\x04\x31\x11\xf5\xf5\x3d\x41\x08\xb8\x52\ +\x12\x9f\x11\x92\x4c\x5f\xcf\xf3\xfa\xd7\x25\xf0\xd5\xbe\xf8\x25\ +\x89\xcf\x54\x88\xff\x62\x9b\x1b\x37\xe9\xac\x1f\x67\x66\x30\x18\ +\x21\x30\x02\x07\xe2\x10\x68\x61\x61\x69\xe9\x17\xff\xd5\xaf\xbf\ +\xbc\xba\xb2\xda\xed\xf6\x32\xe9\x7d\xa8\x7a\x1f\x2a\x0c\x5e\xdd\ +\x32\x3b\xf3\xcf\xfe\x8f\x9f\xff\x47\xaf\x28\xa5\xec\x7d\xf7\xdd\ +\x77\x43\xaa\x84\x1b\x12\x00\xcc\x8c\x27\x9f\x7c\x52\xbd\x76\xf8\ +\x8d\xda\x6f\xfc\x3f\x7f\xf4\x73\x95\x4a\xf5\xfb\x27\x27\x26\x36\ +\xa7\x69\x12\xd2\x24\xf1\x69\x9a\xf8\x38\x49\x42\x12\xab\xb0\xef\ +\xb6\x3d\xe9\xdb\xef\xbb\xab\x2a\x88\x00\x2a\x44\x3f\x81\x20\x04\ +\xe9\x38\x56\x0b\xb1\x92\x2d\x21\xc8\x61\x9d\xbf\x74\xb5\x6f\xcd\ +\x28\xd4\xc2\xd0\x21\xa8\x60\x38\x10\x7c\x88\x8d\xf5\x0d\x6b\xfd\ +\x98\x67\x4e\x98\x19\xdc\x07\x81\x73\x0e\x9f\xfe\xed\x3f\x58\xed\ +\x65\x19\x2d\x2e\x2c\x9c\xbc\x70\xe1\xc2\x7c\xa6\x75\xe2\x5d\xa8\ +\xba\x10\xa2\x7a\xad\xfa\xeb\xbf\xfe\x2f\x7f\xfe\x0f\xca\xe5\xb2\ +\xbd\xfd\xf6\xdb\xc3\xf5\xfe\x6d\xaf\xa4\x1b\x4e\x05\xec\xdf\xbf\ +\x1f\x5a\x6b\xf5\xf5\x67\x5e\x1a\xff\xbd\xdf\xff\xe2\xff\x3a\x39\ +\x35\xf5\x43\xe3\xe3\xe3\x13\x95\x72\xd9\x55\xca\x65\x5f\x29\x97\ +\x5d\xa9\x54\xf2\xe5\x24\xf1\x69\x5a\x0a\xd5\x4a\x19\xb3\x9b\xa7\ +\x62\x0e\xcc\x0c\x98\x48\x8a\x0b\x52\x8a\x65\x21\x68\x95\x80\x4c\ +\x10\x5a\xcc\x6c\x99\xd9\x15\xdb\x60\xb0\xbe\xcf\xa6\x7f\xde\x31\ +\xb3\x0d\x21\x58\xe6\x60\xfb\xd7\x6c\x08\xc5\x79\x80\x73\x21\xd0\ +\xb4\xce\xa7\xce\xfb\x72\xf0\x81\x43\x08\x08\x81\x39\xcb\x73\xff\ +\xc6\x89\xb3\x3d\x29\x04\x4a\xe5\x72\xa3\x31\x36\xb6\xad\x5a\xa9\ +\x8e\x28\xa5\xa4\x31\x26\xef\x75\xb3\xb7\x7f\xe1\xcb\xdf\x28\x3f\ +\xf4\xce\xb7\xbd\xfc\xf0\xc3\x0f\x85\x3f\xfe\xe3\x3f\xbe\xa1\x24\ +\xc1\x0d\x05\x00\x66\x86\xd6\x5a\xfd\xd1\x17\x9e\xde\xf4\xe5\xa7\ +\x9e\xf9\xf9\x4d\x9b\x37\x7f\x78\x74\xa4\x5e\xae\x94\xcb\xae\x5c\ +\x29\xfb\x72\xa9\xec\x4b\xa5\xc4\x97\xd2\x52\x88\x93\x24\x38\xd3\ +\xfb\x56\x73\x75\xe1\xab\xbb\x77\xee\xdc\x2e\x84\x28\x17\x7a\x1c\ +\xda\xf9\x10\x79\xef\x05\x83\x8d\xb5\x3e\xd1\xd6\x55\x8c\x75\x15\ +\x25\x69\x89\x99\x5d\x08\x61\xb8\xd9\xc1\xf6\x12\x48\x2e\x01\xa6\ +\x7f\xde\x86\x10\xac\x36\x6e\xd4\x3a\x5f\x19\xd8\x02\x21\x04\x3e\ +\x7d\xfa\x7c\xb6\xba\xd6\x36\x42\x48\x16\x52\xb0\x10\x02\x2a\x8a\ +\xd2\x34\x4d\xeb\xb5\x5a\x6d\x4a\x45\x4a\xb5\xda\xed\xed\x5f\x7c\ +\xf2\x9b\x33\xef\x7e\xf0\xbe\xe7\xde\xfb\x9e\x77\xf9\x2f\x7d\xe9\ +\x4b\x37\x0c\x08\xd4\xf5\x7e\x81\x01\xf5\x75\xbe\xfa\x8b\xa7\x9e\ +\x99\xfa\xd6\xb3\x2f\x7d\x6a\x76\xcb\x96\xc7\x46\x6a\xd5\xb4\x94\ +\xa6\xae\x54\x2a\xf9\x34\x4d\x7c\x12\xc7\x21\x8e\xe3\x10\x45\x2a\ +\x34\x57\x2e\xfc\xde\xea\xe2\xb9\x83\x51\xa4\xfc\x33\xdf\xfe\xfa\ +\x85\x07\xde\xf1\xde\x7f\x16\x29\xa9\x2c\xf9\x09\x00\xdc\x77\x00\ +\xa6\x89\xa8\x2b\x04\x65\x91\x14\xab\x56\x22\x03\x80\xbf\xce\x32\ +\x67\xbe\x2a\x7f\x28\xcb\x4d\x23\x30\x02\xfa\xd7\x9b\xcd\x96\x3b\ +\x3d\x37\xdf\x49\xe2\x98\x84\x14\x24\x95\x80\x92\x12\x52\x4a\x96\ +\x42\x40\x08\x01\x21\xe4\x28\x11\xe1\xfc\x85\xf9\x87\xff\xc5\xaf\ +\xfe\xa6\xf8\xa5\x7f\xf6\x4f\x7e\x91\x99\xf3\x1b\xc5\x4d\xbc\x21\ +\x00\xc0\xcc\xf8\xe2\x17\xbf\xa8\x0e\xbc\x74\x68\xf4\xa9\xaf\x3f\ +\xf7\xbf\x6c\xd9\xba\xed\xd1\x5a\xad\x9a\x94\xd2\xd4\x95\x4b\x25\ +\x57\x4a\x93\x90\x24\x49\x88\xe3\x38\x28\xa5\x82\x73\xf9\xcb\xed\ +\x95\x0b\xaf\xa6\x69\x12\x88\x88\x57\x9a\xbd\xda\x2b\xaf\x1d\x5d\ +\xde\x77\xeb\xf6\x33\xe3\x8d\x91\x05\x66\x56\xce\x87\x9a\x52\xa2\ +\xa5\xa4\xe8\x01\x05\xd3\x9d\x73\x18\xec\xff\x97\xbc\xd3\x30\x79\ +\x1f\x4a\xce\xf9\x2c\x04\x56\x0c\xe6\x85\x85\x15\x7d\xea\xec\x85\ +\x9e\x14\x02\x88\x23\x92\x5e\x90\x14\x82\x85\x10\x4c\x42\xb2\x20\ +\x09\x22\xc1\x82\x04\x33\x87\x2a\x40\x9b\x16\x16\x16\x1f\xf9\xa7\ +\x9f\xfa\x97\xab\x91\x12\xff\xf6\xc0\x81\x03\xfa\x46\x30\x0c\x6f\ +\x08\x00\x5c\xb8\x70\x41\x2c\x2d\xaf\x95\xff\xe0\xf3\x4f\x7e\x72\ +\xcb\xec\xd6\x0f\xd7\x6a\xd5\xb4\x5c\x2a\xf9\x52\xa9\xe4\x4a\xa5\ +\x24\x24\x71\xe2\x93\x38\xe6\x28\x52\x01\x84\xe5\xa5\xf9\xb3\x7f\ +\x16\xc5\xb1\x97\x42\x04\x29\x05\x46\x46\x27\xef\x5f\xbc\x78\xf6\ +\x37\x3e\x7f\xe4\xb9\x63\xf7\xdc\x73\xcf\xa6\xdd\xbb\x77\xef\x48\ +\xd3\xb4\x1c\x7c\x60\xed\x21\xbc\xe7\x2a\x00\xa1\xa4\xe8\x14\x83\ +\x3e\x05\x08\x98\x99\xae\x00\x03\x0f\x18\xdf\xbf\x3e\x38\x89\x6e\ +\xe6\x77\x6b\xeb\xcb\xed\x76\x37\xbf\x30\xbf\x94\xf7\xb2\xdc\x0b\ +\x22\x90\x94\x80\x20\x08\x41\x0c\x21\x48\x14\x4c\x87\x20\x40\x08\ +\x30\x09\x00\x04\x29\x85\x1c\x8f\xa3\xa8\x7c\x7e\xfe\xc2\xf7\xfe\ +\xd3\xfd\xff\x6a\xe9\xd7\xff\xe5\xa7\x3e\xc7\xcc\xf6\x7a\x4b\x82\ +\xeb\xee\x05\x1c\x38\x70\x80\xda\xed\x76\xfa\x3f\x7f\xea\x97\x7f\ +\x70\xac\x31\xfe\x8f\x47\xc7\xc6\xa6\x2a\xa5\x92\x2f\x97\xca\x2e\ +\x2d\x25\xbe\x94\x26\x21\x8a\xe3\x10\x49\xc5\x81\xed\x91\xf9\xb3\ +\x47\x7e\xa7\x52\x1d\xad\x8f\x8e\x4d\xdf\x2f\x55\x54\x5d\x38\x77\ +\xf4\x3f\x09\x21\x04\x07\xef\xfa\x6e\x20\x0b\x21\xb0\x7d\xfb\xf6\ +\xfa\xec\xd6\x9d\xf7\x46\x69\xe5\x31\x29\x55\x03\x00\x24\x61\xb5\ +\x56\x51\x4f\x4b\x41\xbd\xcb\x7e\x84\x21\x66\x0f\x68\x88\xf9\xa1\ +\xd7\xeb\x75\x2f\x2e\x36\xab\x4b\x6b\xe6\xc3\xd6\x3a\xd9\xbf\x80\ +\x81\x5b\xc8\x5c\xdc\xef\x43\x20\xef\x3d\x79\xe7\xc8\x68\x23\xb4\ +\xd1\x22\xcb\xb4\xec\x66\x99\xea\xf5\x7a\xb2\xd7\xeb\xa9\x3c\x37\ +\x34\x3f\x3f\x7f\x64\x74\xb4\xfa\x4f\x7e\xfe\x7f\xfa\x99\xe7\x1f\ +\x7e\xf8\x61\x77\x3d\x83\x45\xd7\x55\x02\x30\x33\x3d\xfd\xf4\xd3\ +\xd1\x2f\xfe\xca\x7f\xb8\xab\x52\xa9\xfe\xfd\xc6\xd8\xd8\x64\xa9\ +\x94\xae\xf7\xfc\x34\x4d\x43\x14\xc7\x3e\x8a\x14\x2b\x21\x19\x10\ +\xa5\x9b\x76\xdf\xfd\x49\xa9\xa2\x31\x22\x42\xaf\xbd\xfc\xbb\x04\ +\xf6\x04\xf6\x42\x4a\x0c\xe2\x00\x51\x52\x2a\x67\xbe\xf4\x3d\xa7\ +\xcf\x37\xdf\x06\x34\x29\x8a\x54\x3b\x4d\x12\x19\x45\xaa\xb4\xd2\ +\x94\xf7\x34\xaa\xf4\x87\x52\x4a\x29\x0a\x92\x00\xd8\x7b\xef\x43\ +\x08\xc1\x39\xe7\xb2\x2c\x33\x59\x96\xe5\xad\x56\x2b\x9b\x9f\x9f\ +\xef\x18\x63\x02\x33\x23\x29\xd7\x8f\xd4\xc7\x67\xff\xbe\x20\x39\ +\xce\xe8\x03\x07\x40\x08\xa1\x1f\x66\x16\x5c\x74\x78\x80\x80\x00\ +\x41\x60\x22\x30\x78\x00\x18\x02\x48\x4e\xcf\x4c\xef\x9e\x9b\x9b\ +\xfb\x47\xbf\xf7\xff\x7e\xe9\x1f\xdf\x72\xcb\x2d\x17\x51\x84\x98\ +\xff\x76\x01\x80\x99\xf1\xec\xb3\xcf\xca\x3f\xfa\xc2\x57\x27\x9b\ +\x6b\xed\xff\x61\xfb\xf6\x9b\xf6\xa4\x69\x1a\x4a\x69\xc9\x95\x4a\ +\xa9\x4f\x93\xc4\xf7\x0d\x3e\x56\x52\xf5\x2d\x6c\x35\x5b\xf8\xf8\ +\x02\x0c\x36\xed\xd5\x0b\xaf\x4a\x29\x59\x08\x01\x22\x42\xb9\x36\ +\xb6\x29\x49\x2a\x9b\x93\x4a\xfd\xdd\x42\xa8\xd9\xc1\xff\xf2\xde\ +\x73\xb7\x97\xb9\x10\xdc\xc9\xd6\xf2\xd9\xdf\x0c\x4e\xf7\xfe\xba\ +\x77\x1b\x6c\x99\x99\xa4\x94\x28\xd7\xa7\xf6\x54\x6a\x13\x7f\x8f\ +\xb9\xf8\xcd\x08\x05\x63\x09\x0c\x21\x05\xd8\x07\x08\x41\x60\x80\ +\xd5\x20\x20\x45\x14\xd0\x1f\x41\x60\x06\x02\xf3\x40\x70\xa8\xe9\ +\xa9\xa9\x7b\xbf\xf9\xed\xe7\xff\xc1\x4b\x2f\xbf\xfc\x7f\x1e\x38\ +\x70\x20\xbf\x5e\xf6\x80\xf8\xaf\x7f\xc4\xff\x3f\xfa\xdc\xe7\x3e\ +\x27\xd6\xd6\xd6\xe2\x6f\x3e\xf3\xe2\xc7\x37\x6d\xde\xfc\xf6\x34\ +\x49\x42\x29\x4d\x7c\x9a\x26\x21\x49\xe2\x10\x27\x49\x9f\xf9\x92\ +\x85\x1a\x30\xb9\xb0\xac\x01\x40\x90\x88\xcb\xb5\xc6\xb8\xe8\x5b\ +\xdb\xe5\xda\xd8\xf4\xe8\xf8\xd6\x9f\x2d\xd7\xc6\x7f\x48\x0a\x35\ +\x4b\xfd\xa0\x90\x10\x82\x89\x04\x13\x11\x23\xb8\xd3\xec\x4d\x8f\ +\xa8\x00\x91\x2c\x2c\xf6\xef\xda\x1f\x34\x39\xb0\xe8\xa5\x64\xdd\ +\x59\x3e\x9a\xf7\x9a\xbf\x4b\xe0\x25\xd1\x67\x70\xd1\x04\x08\x04\ +\x21\x25\x44\xff\xb9\x42\x08\x96\x4a\xb1\x54\x8a\xe3\x38\x0a\x49\ +\x12\x87\x52\x9a\x86\x52\x9a\xfa\x52\x9a\x84\x34\x4d\x7c\xad\x56\ +\x1b\xad\x8d\xd4\x1f\xfd\xe7\xbf\xf4\xef\xdf\xb5\xb4\xb4\x24\xff\ +\x0a\xcf\xe3\x4d\xa7\xeb\x22\x01\xf6\xef\xdf\x8f\x99\x99\x19\xf9\ +\xaf\x7e\xed\xb7\x6f\xa9\xd7\x1b\x1f\xab\x56\xaa\xd5\x24\x4d\x43\ +\x92\x26\x3e\x89\x93\x90\x44\x71\x50\xaa\xcf\x7c\x29\x21\x0b\x6e\ +\xae\x33\x9f\x88\x00\xe6\xcc\x5b\xd3\x2a\x24\x80\xa4\xfa\xf8\x96\ +\x1f\x27\x21\x62\x02\xf1\x65\x96\x0d\xf5\x7b\x2b\x87\x05\xdd\x6b\ +\x7e\x5b\x4a\x19\x70\xc9\xf6\xe9\x4b\xf2\x4b\x1f\xe8\xef\x33\xfa\ +\x91\x40\xa0\x10\xf1\xd5\xc6\xec\x3b\xa2\xb8\xfc\x00\x83\x7b\x44\ +\x02\x20\x66\x02\xd1\x65\x8c\x13\x02\x60\x86\x60\x06\x15\xa2\x03\ +\x54\xf4\xfa\x10\x98\xc9\x87\x40\x21\x04\xef\x03\x23\x04\xa6\xc9\ +\xa9\xa9\xdd\xa7\x4f\x9d\xf8\xa1\x2f\x7d\xe5\xdb\x2f\x25\x49\xb2\ +\x82\xeb\xa0\x0a\xae\x0b\x00\xf6\xee\xdd\x2b\xce\x5d\xb8\x58\x3a\ +\x37\xbf\xf8\x03\xbb\x76\xef\xb9\x35\x89\xe3\x90\x24\x71\xc1\xfc\ +\x24\x2a\x7a\xbe\x92\x2c\x94\x82\x20\x62\xe7\xcc\x2b\x56\x77\x0f\ +\x56\x46\x26\x7e\x44\x90\x80\x35\xdd\xaf\x75\x5a\x8b\xdf\x0c\x5e\ +\xf7\x84\x10\x48\x2b\x23\x0d\x21\xd4\x24\x10\x9a\xce\x66\xcf\x5a\ +\xdd\x3d\x1a\xbc\x6d\x31\x7b\x23\x84\x8c\xa2\xb4\xba\xdd\xf4\x9a\ +\x87\x39\xb8\x5c\x4a\x09\x00\x3c\xc4\xf4\xcb\xba\xde\x10\x43\x99\ +\x99\x11\x42\x80\x94\x12\x49\x5a\x7d\x1f\x48\x34\xfa\x9f\x28\x46\ +\x0a\x18\xdc\x8f\x40\xaf\x7b\x14\x0c\x02\x53\xf1\x39\x21\x25\x2b\ +\xf4\xcf\x15\x03\x55\x14\x82\xc7\x00\x08\x40\x90\x53\x53\x33\x77\ +\x7f\xed\x5b\xcf\x7d\xe8\xa1\x77\xdd\xf3\x7b\xfb\xf7\xef\x37\xd7\ +\x3a\xa9\xe4\x9a\x03\x60\xff\xfe\xfd\x98\x9c\x9c\x54\xff\xfc\x97\ +\xfe\xdd\xdb\x26\x27\xa7\x1e\x4c\xe2\x44\x26\x49\xe2\x25\xf1\x85\ +\xe0\xed\x42\xab\xd9\x3e\x28\xd8\x9e\xde\xb4\x6d\xd7\x27\x9c\xc9\ +\x17\x92\xb4\x7c\x77\xd6\x59\xf9\xba\xce\x3b\x8b\xb5\xd1\x29\x66\ +\xf6\x4b\x3a\x5b\x7b\xc9\xe9\xee\x8a\xec\x1b\x7e\x1c\x6c\x27\x78\ +\xfd\xed\xce\xca\xdc\x9f\x30\x7b\x4b\x43\x22\x3a\x04\x82\xe9\xea\ +\x55\xe0\x92\xff\x7f\xe5\x16\x00\xa2\xa4\x3a\x1d\x95\x46\xdf\x09\ +\x50\xb9\xb3\x72\xfa\x77\x06\xd7\xa5\x54\xa2\x3c\x3a\xfb\x03\x24\ +\xe4\x80\xf9\x97\xc6\x94\xa8\xd0\xed\x7d\x31\xc2\xcc\x5c\x18\x83\ +\x0c\x88\xc2\xf8\x23\x08\x82\x52\x92\x03\x2b\x4e\x91\x06\xe7\x3d\ +\xbc\xf7\x21\x38\x4f\x1c\x02\x8d\x8e\x8e\xce\x2e\x2d\x2d\x3c\xfc\ +\xf9\x2f\x7d\xfd\x2b\xdf\xf3\xc8\xdb\x2f\xe0\x1a\x4b\x81\x6b\x1e\ +\x0a\xfe\xd4\xa7\x3e\x25\x56\x9b\xad\xf2\x57\xfe\xf2\x99\x1f\xde\ +\xba\x75\xfb\x23\xa5\x34\x25\x20\x9c\x38\x7b\xea\xe8\xef\xf5\xda\ +\xcb\x2f\x5a\xd3\x3d\xf7\x81\xf7\xbf\x6f\x76\xd7\x4d\xb3\x0b\x87\ +\x5e\x3d\xf0\x94\x77\xe6\x50\xaf\xbd\x7c\x76\x6c\x72\xdb\xbd\x24\ +\xc8\xac\xcc\x1f\xff\xf7\xce\xe6\xcd\x21\xdd\xcd\x04\x76\x36\x6f\ +\x1f\x01\xd8\x0f\x74\xf7\xc0\x30\xa4\x21\xbd\x2c\x84\x80\x52\x6a\ +\xfd\xdc\xe0\x7a\x5a\x19\xbf\x2d\xa9\x8c\xff\x43\x21\xa2\x1d\x24\ +\x44\xe4\x75\xeb\xeb\x83\xeb\x49\x75\xe2\x4e\x15\x57\x3e\x34\x3c\ +\xd2\x08\x2a\x92\x4b\x86\x81\xc4\x5c\x6c\xfb\xb9\x27\x05\x3a\x30\ +\xf8\x0c\x68\xac\x51\x8f\xf6\xde\xb2\xb3\xb6\xb8\xb4\x62\x9c\xf3\ +\x85\x41\x08\x26\xe6\x40\x4a\x29\x71\xf2\xd4\xe9\x85\x4f\x7c\xe4\ +\xb1\x23\x3b\x76\xec\xf0\xd7\x72\xf8\xf8\x9a\x1a\x81\xfb\xf7\xef\ +\x47\xbd\x5e\x97\x9f\xfe\xed\x3f\xd8\x37\x35\x31\x7d\x5f\x12\x47\ +\x14\xc5\x91\xeb\xb6\x9a\xcf\x2b\x29\x7a\x49\x1c\xb9\x07\xee\xbf\ +\x77\x7c\xe7\xce\x9d\x37\x4d\x8c\x8f\x4f\x7d\xe2\x13\x9f\x78\xbb\ +\x60\x73\x51\x08\x81\xa4\x5c\x7b\x3b\x01\x1a\x60\x5b\x18\x76\xc4\ +\x03\x0f\xa0\x90\x04\x08\x42\x88\xc1\xb9\xf5\xeb\x4a\xa9\xf5\xfb\ +\x06\x4c\x1d\x36\xf0\xe2\xb4\x52\x8b\xcb\x8d\x9f\x00\x09\x05\xa2\ +\x40\x24\x1a\x95\xc6\xf6\xbf\x97\x56\x27\xf6\x49\xa9\x64\x92\x8e\ +\x7c\x58\x90\x08\xa2\x9f\x58\x7a\xa9\x51\x00\x8a\x2d\x01\x41\x08\ +\x0a\x82\x10\x48\x50\x71\x8e\xa8\xd8\x17\xf0\x93\x13\x63\x6a\xef\ +\x2d\x3b\x2a\x23\x23\x15\x71\xc7\xde\x3d\x69\x12\xc7\x2e\x89\x63\ +\x1f\xc7\x91\x8b\xa3\xd8\x8f\x8e\x8e\x6e\xf3\x81\x1f\xfc\xfc\x17\ +\xbf\x36\xfa\xd0\x43\x0f\x5d\x53\x9e\x5c\x6b\x2f\x40\x2c\x2e\x2e\ +\xc6\x8b\xcb\xcb\xf7\x8d\x4f\x4e\xec\x8a\xa2\x28\x44\x4a\xf5\x3a\ +\xed\x95\xe3\x49\xac\xec\xf4\xf4\x94\x7c\xcf\xbb\xde\x75\x77\x1c\ +\x47\x51\x1c\x47\x71\xa3\xd1\x98\xfa\xd8\xc7\x3e\xf6\xee\x46\xa3\ +\x11\x11\x78\x8d\xd9\xcf\x0f\xac\xf5\x81\xf8\xef\x33\x95\xfb\xd6\ +\xfa\xe0\x1c\x2b\xa5\x58\x0c\x42\xb3\x97\xae\xf3\x30\x48\x84\x10\ +\x48\x2a\x13\x1f\x10\x82\x20\x25\x1c\xb1\x79\x4a\x4a\xe1\x65\x14\ +\xdd\x1c\x97\x46\x7f\xb8\xd2\xd8\xf2\x03\x24\xe5\x08\x49\xf2\x24\ +\x85\x13\x52\x7a\x21\x85\x17\x92\xfa\x4d\x5c\xb6\x25\x29\x3c\x09\ +\x1a\xba\x4e\x61\x72\xa2\xa1\xf6\xec\xda\x52\x8e\xe3\x98\xe2\x38\ +\xe2\xad\x5b\x66\x92\x1d\x3b\xb6\xa8\x38\x89\x6c\x1c\xc7\x2e\x8a\ +\x94\x8b\xa2\x08\x53\x53\x53\xbb\x9e\x3d\xf0\xd2\xdb\x56\x57\x57\ +\xaf\xa9\x54\xbe\xa6\x00\x78\xec\xb1\xc7\xe8\x4f\xbe\xf8\xd4\x64\ +\xad\x3a\x72\x67\x9a\x24\x71\x1c\x45\xb6\xd7\x6d\x3d\x23\x25\xe5\ +\x71\xa4\xec\x07\xde\xff\xd8\x6d\xe5\x72\xa9\x1a\x45\x51\xac\x94\ +\x8a\x95\x52\xf1\xc8\xc8\xc8\xd4\x8e\x1d\x3b\xc6\x5a\x2b\xe7\x7e\ +\x5f\x77\x9b\xaf\x0e\x89\xf3\xcb\x18\x3a\xcc\xf8\x61\x70\x0c\x83\ +\x65\x58\xf4\x4b\x95\x94\xca\xf5\xcd\x1f\x57\x51\x7c\xb7\x10\x14\ +\x08\x98\x13\x42\xb0\x20\x0a\x92\x28\x08\x01\x21\x55\x74\xa7\x14\ +\xe4\xfb\x2d\x08\x42\x7f\x5f\x78\x41\xc2\x4b\x22\x2f\x88\xbc\x10\ +\xc5\x76\xe8\x5e\x2f\x05\xf9\xc9\xb1\x51\xb5\x73\xfb\x6c\x35\x56\ +\x11\xa2\x48\x21\x8e\x14\xc5\x71\xc4\xf7\xdc\x71\x4b\xb5\x31\x5a\ +\x47\x1c\x29\x17\x45\xca\x47\x4a\xba\x7a\x7d\x74\x53\xb7\x97\xdd\ +\x2e\xa5\x8a\xfa\x89\xaf\xd7\x84\xae\x99\x11\xb8\x7f\xff\x7e\x9c\ +\x3d\x7b\x56\x1d\x3a\xfc\xc6\xbe\xc9\xa9\x99\x4d\x4a\x29\xa7\x22\ +\xe5\x3b\x17\x57\x8f\x46\x91\x32\x5b\xb7\x6c\x49\x6f\xba\x69\xfb\ +\x6e\xa5\x94\xe8\xbb\x7b\x4c\x44\x7c\xee\xdc\xb9\xd7\x0e\x1e\x3c\ +\x78\x41\x08\xc1\xec\x0d\xfa\x56\xfc\x7a\xcf\x1f\x12\xeb\x3c\xec\ +\x26\xf6\x7b\xfe\xfa\xf1\x95\xfb\x49\x6d\xf2\x51\x21\xe2\x7b\x81\ +\x62\x6c\xc0\xea\xe6\x7f\x8a\xca\x8d\x9f\x04\x06\xb9\x81\x7d\x6f\ +\x60\xb0\x61\xe0\x52\xd8\xbe\x7f\xb5\x1f\x42\x1e\x18\x7f\x03\x3b\ +\x80\x99\x21\x08\x34\x3d\x35\x9e\x28\x25\xa1\x94\x24\xa9\x24\x64\ +\x11\x28\x22\x29\x25\xdd\x7d\xc7\x2d\x95\xaf\x7d\xe3\xb9\x35\x17\ +\x39\xf6\xde\xcb\x4a\xa9\x34\x52\x2a\x95\xb6\xfc\xce\xef\x7f\x61\ +\xf6\xfe\x3b\x77\x9d\x00\xe0\x71\x0d\xe8\x9a\x49\x80\xbd\x7b\xf7\ +\x8a\xb1\xb1\xb1\xa8\xdd\xe9\xdd\x32\x32\x52\x9f\x51\x4a\xfa\x28\ +\x52\x4e\x2a\x91\x47\x4a\xba\xc7\x1e\x7b\x64\x6f\x1c\xc7\xa9\x52\ +\x2a\x96\x52\x46\x4a\xa9\xd8\x39\xd7\xfb\xca\x57\xbe\xf2\xc2\x80\ +\xb9\xfd\x9e\xbe\x2e\xce\x87\x0d\xc1\x61\xa9\x30\x24\x11\xd6\x03\ +\x39\xa5\xda\xd4\xbd\x71\x5a\x1d\x5f\xbf\x57\xaa\x11\x92\xc2\x0f\ +\x1a\xd8\xae\xb0\xeb\xfe\x21\x11\x56\x48\x90\x17\x42\x14\xed\x32\ +\xb1\xde\xbf\x7f\x70\x5e\x0e\x9f\x97\x41\x48\x11\x48\x50\x10\x92\ +\x02\x04\xf9\xb3\xe7\x2e\xae\x0a\x21\x82\x54\x12\x4a\x29\x28\xa5\ +\x10\x47\x11\xe2\x48\x61\xdb\xd6\x4d\xa5\xb1\xb1\x3a\xa2\x38\x72\ +\x51\x14\x79\x19\xa9\x30\x35\x35\x35\x7b\x76\xee\xfc\x6d\xdb\xb7\ +\x6f\x17\xd7\x2a\x30\x74\xcd\x00\x90\x24\x09\xfd\xf9\x57\xbe\x39\ +\x5e\xad\x56\xb6\xc4\x49\x5c\x8a\x94\x72\x4a\x0a\x1d\x9c\x59\x9b\ +\x9a\x9c\x8c\x76\xee\xd8\x71\x9b\x52\x2a\xea\x03\x20\x91\x52\xc6\ +\x87\x0e\x1d\x7a\xc6\x7b\xef\x87\x98\xbf\xde\xf3\x07\x51\xbe\x61\ +\x03\xef\xaf\xd0\xf9\x50\x51\x92\x46\x69\xe5\x83\x49\x65\xec\x7d\ +\xeb\xc6\x20\xdb\xa3\x14\xf4\x57\x24\xe1\x62\x91\x31\x0c\xeb\x6d\ +\xef\x04\xb1\x7d\x4e\x0a\x51\x88\xf9\x75\xd1\xde\xdf\xef\x8b\xf6\ +\xf5\x7d\xea\xab\x02\x41\x85\x3a\x18\x52\x0f\x42\x90\x37\xc6\xe8\ +\xb9\xf3\x0b\x2b\x85\x14\x10\x88\x94\x82\x52\x92\x06\x40\xb8\x63\ +\xdf\xcd\xd5\x81\x0a\x50\x52\xb8\x6a\xad\x36\x69\x8d\xdb\x56\xad\ +\x56\xd5\xe7\x3e\xf7\xb9\x6b\xa2\x06\xae\x09\x00\x98\x19\x8d\x46\ +\x43\xbc\x7e\xe4\x8d\xed\xe5\x72\xa9\x22\xa5\x70\x44\x68\xad\x2e\ +\x2f\x3c\x09\xb0\x7e\xfb\x03\xf7\xcd\xc6\x71\x54\x96\x52\xc6\x52\ +\xca\x58\x29\x15\x6b\xad\x97\x0f\x1c\x38\x70\x6a\x58\xc7\xf7\x7b\ +\xfc\x70\xcf\xc7\x15\xcc\xff\xae\xf3\xa5\xea\xf8\xde\xb4\x3a\xf1\ +\x88\x20\xe1\x09\x58\x1b\x3c\xcf\x65\xcd\x67\x09\x68\x22\xd8\x97\ +\x04\x91\x8b\x92\xda\xe6\xb4\x36\xfd\xfd\x32\x2e\xbd\x67\x88\xf1\ +\x4e\x14\xad\xd8\x27\xe1\x05\x91\x2b\x18\x4f\xa1\x0f\x84\x40\x24\ +\x82\x10\xe4\x04\x91\x13\x03\xe9\x41\xe4\x89\xc8\x2d\x2d\xad\xb6\ +\xb2\x4c\x67\x4a\x4a\x92\x52\x92\x92\x8a\xa2\x48\x89\x28\x52\xd8\ +\xb1\x6d\x73\x79\xb4\x5e\x63\x15\x29\xa7\x94\x72\xe5\x52\xa9\xc6\ +\xec\x47\xff\xe2\xab\xdf\x1e\xe9\xf5\x7a\x6f\x1d\x00\x7c\xee\x73\ +\x9f\xa3\x4e\xa7\xa3\xda\x9d\xee\xb6\x76\xbb\xb5\x24\x48\x98\xd5\ +\x95\xc5\x67\x2f\x5e\x3c\x7f\x58\x29\x11\x76\xed\xda\xb9\x4d\x4a\ +\x19\x0d\x00\x20\x84\x88\xe7\xe6\xe6\x5e\x1d\x72\xdd\xd6\x7b\xf6\ +\xba\x11\x37\x24\xf6\x87\x99\x3f\x7c\x4e\xaa\x28\x8a\xd2\x91\x8f\ +\x48\xa9\xa6\x09\xfe\x25\x15\xc7\x77\x4b\x15\x45\x03\x1b\x21\x8a\ +\x4b\xef\x00\xb8\xe9\xf5\xda\xa7\x09\xa1\x2b\x85\x50\xfd\x1e\xee\ +\x48\x92\xa3\x7e\xaf\x26\x22\x47\x34\x90\x02\x22\x08\x49\x5e\x08\ +\xe1\xa8\xcf\x64\x21\x2e\x31\xfe\xd2\x71\x01\x1c\x12\xe4\x4e\x9e\ +\x9e\xbb\x28\x85\x80\x54\x82\x94\x92\xa4\x64\x61\x17\x44\x51\x44\ +\x7b\x6f\xd9\x55\x89\x94\xb4\x52\x0a\x17\x45\x91\x2a\x57\x2a\xe9\ +\xa1\xc3\xc7\xb6\x28\xa5\xae\x09\x6f\xae\x95\x11\x48\x00\x64\x9e\ +\xeb\x6d\x49\x12\x3b\x9d\x75\x4f\x2d\x2d\xcc\x1f\x2f\x97\xe2\xa0\ +\xa4\xf4\xd3\x53\x93\x3b\x85\x94\x4a\x0a\x21\x88\x48\x00\x08\x07\ +\x0e\x1c\x78\xfd\xca\xc1\x99\x81\x61\x77\x85\x55\xcf\x57\x06\x76\ +\x06\x79\x01\xe0\xa0\xbd\x69\x7f\x56\x48\x59\x56\x71\xe5\x03\x00\ +\x59\xa5\x92\x8a\x90\xf1\x98\x8c\xcb\xef\x22\x12\x23\x71\x52\xf9\ +\x10\x50\x19\x7e\xd7\x75\xe3\x8b\x07\xc3\x02\xdc\x37\xfb\xfa\xc9\ +\xe4\xdc\x1f\x0b\x1c\x36\x02\xd1\x1f\x1d\x04\x11\x02\x87\xfe\x08\ +\x44\xf1\xcd\x5b\xed\x6e\xa7\xd9\xea\xb4\xa6\x27\xc7\xc6\xfb\xdf\ +\x0f\x00\x82\x97\x01\x5b\x66\x67\xca\x52\xca\x65\x25\x25\x79\xe1\ +\x51\xaf\xd7\xeb\xad\x66\x73\x6a\x76\x76\x96\x0a\xe3\xf2\xcd\x15\ +\x04\xd7\x04\x65\x0f\x3e\xf8\x20\x8e\x1c\x3f\x5d\xf2\x21\xd4\x09\ +\xc0\xd9\xb9\x33\x2f\x82\xc8\x0b\x29\xfd\xad\xb7\xdd\x52\x4f\x92\ +\xb4\x2e\x88\x94\x10\x22\x12\x42\xc4\x5a\xeb\xa5\x76\xbb\xad\x07\ +\x3d\x7f\xd8\xe2\x1f\x0e\xe6\x5c\x8d\xf9\x43\xc6\x20\x84\x10\xf0\ +\xa6\x73\x02\xc1\x2f\xb1\x37\xdf\xe2\x60\xbe\x21\xe3\x74\x3c\x2e\ +\xd5\x1e\x17\x52\x4e\x8a\xcb\x7d\xf6\xa2\xb7\x0f\xb5\x7e\xef\xf7\ +\xeb\x46\xa1\x1c\xe8\x7f\x14\x7e\xbf\xc0\xba\x81\x48\x02\xfd\xcf\ +\x23\x14\x06\x24\xd6\x9f\x27\x04\xf9\xf3\x17\x16\x16\xa4\x14\xa4\ +\x94\x14\x52\x4a\x92\x52\x90\x94\x02\xb5\x4a\x59\x8d\x35\xea\x24\ +\xa5\x70\x42\x0a\x97\x26\x49\xe4\x43\xa8\x1b\x63\xae\x09\x6f\xae\ +\xc9\x3f\x79\xf5\xd5\x57\xc5\x73\x2f\x1c\x9c\x24\x08\x45\x44\x30\ +\xc6\xf4\x0a\x3d\x0b\xde\x34\x3d\x5d\xed\x0f\xab\x12\x15\x7f\x44\ +\xa7\xd3\x39\x3b\xc4\xe0\x75\xd1\x0f\x00\x73\x73\x73\x95\x21\x63\ +\x0f\x43\xaa\xe1\x32\x55\x30\x94\x1d\xc4\x2a\x4a\xc6\xc0\xee\xb4\ +\x14\x64\x93\xb4\xf6\x21\x21\x44\x2a\x07\x56\x3e\x0d\xb5\xbe\xf1\ +\xb7\x6e\x04\xd2\x90\x51\x47\xc2\x0b\x92\x7d\xef\x40\xae\x9f\x2b\ +\xae\x4b\x2f\x45\x71\x2d\xf8\x10\x9c\xb5\x2c\xfa\xc7\x04\xe1\x89\ +\x84\x5f\x58\x5a\x5d\x31\xc6\x69\x29\x04\xf5\x53\x51\x48\x4a\x41\ +\x42\x4a\x6c\xd9\x3c\x1d\x2b\xa9\x1c\x07\x6e\x2d\x2e\x2e\x9c\x71\ +\xde\xd7\x4b\xa5\x92\xfc\x85\x5f\xf8\x85\x37\xdd\x0e\xb8\x26\x00\ +\x18\x1d\x1d\xc5\xc2\xe2\xca\x14\xfa\x2a\x47\x10\xa1\xc8\xe7\x93\ +\xbe\x5e\x1f\x29\x01\x1c\x00\xf6\x83\x1c\xfd\x6e\xb7\xbb\x84\xfe\ +\x88\xdd\x80\x91\x03\xcb\xfe\xdc\xb9\x73\x63\xaf\xbe\xfa\xea\x3e\ +\x66\xa6\x2b\x74\x3f\xae\xc2\x7c\x08\x21\x10\xbc\x3e\x1b\xa7\xb5\ +\x87\x54\x94\x3e\xd8\x0f\xd3\x3a\x41\xe4\x48\xac\xeb\x6f\x27\x04\ +\xb9\x81\xfe\x26\x42\xd1\x8a\xfd\xa5\x76\x6b\x75\x11\x6c\x5f\x00\ +\xbb\x37\x04\x91\x13\x04\x77\xb9\xee\x87\x23\x82\xd7\x3a\x17\x2f\ +\xbd\xf0\xec\x64\x9a\x26\x56\x12\x3c\x11\x9c\x94\xfd\xfb\xc1\x6e\ +\xb5\xd9\x5a\x11\x52\x0a\x29\x84\x94\x42\x50\xf1\x7e\xc4\x33\xd3\ +\x13\x36\xcf\x7b\xa7\x9d\x33\x4b\x04\xf2\x1c\x42\xe9\xf9\x17\x0f\ +\xc6\x1f\xf9\xc8\x47\xde\x74\xde\xbc\xe9\x00\x60\x66\x2c\x2e\x2e\ +\x8a\x4c\xe7\x0d\x10\x44\x7f\x96\x6e\x10\x44\x2c\xa5\xe0\x4a\xa5\ +\x52\x02\xe0\xfb\xf9\xfa\x36\x84\xa0\xbb\xdd\x6e\x73\x98\x99\xc3\ +\x3a\x7f\xd7\xae\x5d\xcb\x0b\x0b\x8b\x3b\x9e\x7b\xee\xc0\x27\x2e\ +\x5e\xbc\xd8\xb8\x62\xb0\x87\xaf\x50\x1b\xf8\xe6\x37\xbf\xb9\xf5\ +\xd8\x91\x43\x09\x98\xa5\xa0\x4b\xee\x9c\x18\xb8\x6e\x43\x4d\x8a\ +\x41\x64\xaf\x90\x06\x08\xa1\xf9\x85\x3f\xf9\xbd\xd3\x5f\xfd\x8b\ +\x3f\x3e\x7a\xfa\x8d\x83\xcf\x77\xd7\x16\xbe\x18\xbc\x79\x4e\x10\ +\x19\x29\xc8\x1b\x6d\x68\x65\x69\x29\x99\x3b\x73\xb2\x7e\xe8\xb5\ +\x97\xa6\x5f\x3c\xf0\xed\xad\x95\x6a\x2d\x17\x24\x1c\x51\xe1\x35\ +\x10\x68\x5d\xd2\xac\xac\xae\xad\x14\x7c\x17\x7d\x81\x57\x24\x93\ +\x4e\x8c\x37\xd2\x0b\xe7\xe7\x9e\xef\x75\x3a\xe7\x85\x20\x96\x82\ +\x70\xec\xc4\xe9\x72\xbb\xdd\x7e\xd3\x25\xc0\x35\x31\x02\x1b\x8d\ +\x06\x82\x0f\x25\xf4\x93\x2f\x88\x04\x20\x88\x05\x11\x27\x49\x12\ +\x85\x10\x2c\x8a\xba\x3d\x83\x94\xba\xcb\xf4\x3e\x80\xf5\x38\xc0\ +\xec\xec\x6c\xe7\xcc\x99\x33\xcf\x4f\x4c\x8c\xcb\x43\x87\x0e\xbd\ +\xeb\xe8\xd1\xa3\xba\x5e\xaf\x9f\xab\xd5\x6a\x2d\x21\x44\xc8\xb2\ +\xac\x92\x65\x59\x8d\x84\xda\x96\x96\x2a\xef\x48\xd2\xea\xea\xab\ +\xaf\xbe\x76\x66\x65\xad\x7b\x47\xad\x36\x62\x47\x1b\x63\xdd\x52\ +\xb9\x6c\x93\x38\xf5\x71\x92\x38\x81\xf0\x4c\xa9\x52\xdb\x02\xd0\ +\x94\xf7\x5e\xe8\x3c\x53\xdd\x6e\x27\x5e\x5d\x59\x2e\x9f\x3d\x7d\ +\xa2\xbc\xba\xb2\x72\x71\x6a\x6a\xaa\xfd\xc2\x0b\x2f\xbc\xd7\x39\ +\x57\x66\x66\x1a\x9b\x98\x1e\x4b\xd2\xf2\x64\x1c\x47\xbe\x54\xaa\ +\x98\x72\xa5\x92\x4f\x4c\x4d\x37\xcb\xd5\xda\xea\x8e\x9d\xbb\x3b\ +\xfd\x40\x21\x11\x03\x21\x14\x06\x22\x11\x68\x71\x79\x65\x49\xf4\ +\xd3\x80\x07\x52\x8d\x88\x38\x52\x2a\x54\xcb\x25\x77\xf6\xfc\x85\ +\x53\x42\x88\x58\x08\x11\xb2\x5c\xab\xdd\xbb\x77\xbf\xe9\xbc\xb9\ +\x26\x00\xc8\xb2\x8c\xbc\x0f\xa5\xfe\x14\x7d\x26\x81\x40\x42\x04\ +\x22\xc1\xce\x5a\xcd\xcc\x9a\x99\x45\x08\x81\x88\x88\xa4\x94\x62\ +\x48\x84\x5f\x69\xe8\xf1\xec\xec\xec\x9a\xf7\x5e\x3c\xfe\xf8\xe3\ +\x7f\x7a\xe6\xcc\x99\x89\xe5\xe5\xe5\x99\xe5\xe5\xe5\xcd\x21\x04\ +\x99\xa6\x69\xa7\x56\xab\xad\xec\xbe\xe5\x8e\xb1\x4d\x9b\xb6\x1d\ +\x97\x4a\x84\x13\x27\xde\xa8\x6f\xdf\xbe\xe3\x68\xb3\xb9\x92\xbe\ +\xfa\xe2\x33\x7f\xe9\x43\x18\xd3\x5a\x47\xb5\x91\xc6\xed\xde\xfb\ +\x0f\x2c\x5c\x3c\x7f\x6c\x7c\x62\x7a\x32\x8e\x93\x4a\x1c\x27\x36\ +\x2d\x95\x4c\xbd\x3e\xda\x9b\xdd\xb2\xfd\xc8\x3d\x77\xdf\xf1\xe4\ +\xc4\xf4\xd6\x5d\x24\xe4\x1a\x40\x6d\x22\x31\x0a\xd0\x02\x80\x85\ +\xfe\x54\x71\xf4\x73\x3e\x71\xe2\xc4\xb1\xaa\x24\xe1\x18\x01\xe0\ +\x62\xb8\x50\x50\x91\x25\x14\x00\xe8\xdc\x38\xe7\xbc\x11\x42\x28\ +\x00\x4c\x20\x26\x10\x0b\x22\xd3\x18\x1b\x8d\xce\x5d\xb8\x68\x40\ +\x21\x90\x90\x30\xc6\x44\x17\x2f\x5e\x7c\x6b\x00\x40\x08\x41\x81\ +\x39\xa5\x22\x3f\x8b\x89\x0b\x87\x4a\x10\x85\x6e\xb7\xdb\x1e\x48\ +\x80\x3e\x83\x29\x4d\xd3\xf2\x20\x5f\x7e\xc0\xfc\xfe\x73\x58\x08\ +\x81\x5d\xbb\x76\x75\xbe\xf1\x8d\x6f\x6c\xba\xed\xb6\xdb\xd6\x76\ +\xee\xdc\xb9\xb0\x7b\xf7\xee\x05\x00\x03\x55\xc1\x42\xaa\xa8\x3a\ +\x3a\xfd\x6e\x02\x59\x00\xd8\xb5\x6b\x77\x7e\xf0\xb5\x97\x97\xf7\ +\xec\xde\xf1\xd4\x83\x0f\xbe\xa3\x29\x84\xa0\xa4\x32\xf6\xb8\xee\ +\x35\x7f\x25\x2e\xd5\x1f\x20\x88\x11\xab\xdb\x7f\x1c\xa5\xb5\x77\ +\x09\x12\x9b\x19\x80\xd1\x79\xfb\x68\xaf\xb3\x3a\x33\xbb\xf3\x3e\ +\x21\xa3\x7d\xfd\xd0\x6c\xff\x0f\x7b\xe6\xa2\x87\x17\x1e\x20\xe3\ +\xd4\xc9\x13\x95\xed\x3b\x76\xb4\x84\x28\x92\x7f\x03\x73\x9f\xbd\ +\x00\x33\x0b\xc1\xc5\xa4\x63\xad\x4d\x37\x4d\x93\x1a\x98\x03\x83\ +\x03\x8a\xe1\x65\xdd\x68\x8c\xc6\x24\xa0\xfb\x89\xc6\xb0\xd6\x46\ +\x27\x4e\x9c\x78\x6b\x18\x81\x05\x91\x47\x51\xaf\x05\x7d\xd4\x07\ +\x12\x02\xdd\x6e\xb7\x17\x42\xd0\x21\x04\xd3\x6f\xba\x54\x2a\x55\ +\xaf\x70\xf9\xd6\xad\xfe\x81\x14\x98\x98\x98\xe8\xcd\xcd\xcd\x95\ +\x87\xad\xfd\xbe\x48\x05\x81\x2d\x10\xce\xd3\xba\xa1\x27\xf2\x5e\ +\xa7\xf9\xca\xd2\xc2\x85\x2e\x11\x21\x30\x33\x09\x99\x80\x83\x31\ +\xbd\xd5\x6f\x30\xbb\xa3\x71\xa9\x76\xaf\xd3\x9d\x6f\x82\xb0\x06\ +\xe2\x73\x5f\xfe\xf3\x3f\xfa\xcb\xdb\xef\x7a\xdb\xb8\x8c\x92\x9b\ +\x49\x90\xa5\xbe\x91\xd8\x7f\xa6\x27\x51\x3c\x9b\x44\xa1\xef\xbd\ +\xf7\x41\x45\xca\x42\x08\x07\x12\x03\x23\xd1\x93\x20\x0f\x22\xcb\ +\xe0\x95\x10\xfc\xa2\xb6\xb6\x1b\x98\x6d\x60\x0e\x00\x07\x30\x02\ +\x08\x6e\xa4\x56\x2d\x8a\x5b\x14\x99\xe4\x41\x48\x11\xea\xf5\xfa\ +\x9b\xce\x95\x6b\x02\x80\x52\xa9\x14\xa4\x14\xdd\xfe\x21\x63\x90\ +\xe4\x49\xc4\x6b\x6b\xad\xae\x2f\x18\x9f\xf7\x81\xa0\xd3\x34\x6d\ +\x0c\xc7\xfc\x87\x3d\x81\xc1\xf1\xed\xb7\xdf\xbe\x7a\xf2\xe4\xc9\ +\xd1\x61\x49\x31\x0c\x84\xac\xb5\xf4\xa4\xf7\xfa\x59\x0e\xee\x90\ +\xd5\xed\x3f\xbb\xeb\xce\xdb\x4f\xbe\xf6\xda\x6b\x33\x42\x08\x96\ +\x42\xb0\xcb\x9a\x7f\x2e\xa5\xe4\x24\xad\x4e\x48\x21\x54\x70\xf9\ +\x2b\x60\xb7\x06\xf6\x27\x57\x97\x97\xcb\x9b\x37\x6f\xee\x04\xa7\ +\x5f\x11\x84\x81\x61\x68\x84\xa0\x4c\x10\xbc\x00\xb9\xe2\x3c\xbc\ +\x24\xf8\xb9\xb3\xa7\xd2\xed\xdb\xb6\xb7\x05\xc8\x4b\x14\xe7\x64\ +\x91\x40\xe2\x8b\xfb\xd1\x5e\x9a\x3f\xfd\x67\xf3\xe7\xde\xf8\xb3\ +\x48\x89\x39\x02\xd6\xc0\x6c\x0b\xcd\xc0\x81\x19\xa1\x52\x29\xc7\ +\x44\x82\xa9\x5f\x88\xa4\x5c\x4a\xf5\xf8\xf8\xf8\x9b\x3e\x22\xf4\ +\xa6\xab\x80\x5f\xf8\x85\x5f\xc0\x3d\xf7\xdc\x03\xa9\x44\x66\x0c\ +\x06\x39\x94\xfd\xb4\x3a\xc2\xc9\x93\x27\x57\x8c\x31\xbd\x38\x8a\ +\xd4\x50\x30\x47\xde\x74\xd3\x4d\x63\x67\xce\x9c\x59\xbe\x72\x18\ +\x77\xb8\x55\xab\x55\xbd\xbc\xbc\x1c\x4f\x4d\x4d\x99\x61\x09\xa1\ +\xe2\xb4\x9a\x96\x6b\xb7\x2a\x15\xef\xe4\x10\xd6\x94\xaa\xbd\x43\ +\x94\xeb\xa3\xf7\xbd\xfd\x3d\xa9\xe5\xc8\x8c\x8e\x36\xba\x00\x82\ +\xc9\x5a\x7f\xc1\xec\x7b\x44\x91\xf3\x36\x5f\x02\x00\x6f\xf5\xf1\ +\xb3\xa7\x4f\x56\x6f\xbf\xfd\xf6\xb6\xd3\x9d\x36\x38\xb4\x01\x52\ +\x56\x67\x4b\x52\x45\xf5\xb8\x54\x7b\x8c\x86\x22\x7f\x0c\x86\x36\ +\x06\x69\x29\xed\x39\xa3\x4f\x91\x90\x0d\x08\x31\x8e\x10\x32\xaf\ +\xf5\x05\xe7\x5d\xaf\xd5\x5c\x3e\xe1\x9d\x33\x60\x86\x20\xca\x01\ +\xee\x12\x51\xc6\xcc\x25\x66\x0e\x21\x84\xd8\x39\x5f\x48\x48\x14\ +\xc9\xa6\x23\xb5\xaa\x1e\x1f\x1f\x7f\xb3\xd9\xf3\xe6\x03\x60\xff\ +\xfe\xfd\x78\xf6\xd9\x67\x39\x56\xaa\x9b\x73\x3f\x40\x2a\x30\xf8\ +\x01\xc9\x39\x1b\xd6\xd6\xd6\xce\x8f\x35\x1a\xd3\x03\x7d\x9f\xe7\ +\x79\x13\x45\xba\xd5\x65\x63\xfe\x43\x92\x00\x44\x84\x07\x1e\x78\ +\x60\xe9\xe9\xa7\x9f\xde\xf4\xd8\x63\x8f\x9d\xef\x7f\x96\x2a\x23\ +\xe3\xb7\x44\x71\xe9\x76\x42\x11\x72\x15\x52\xd4\xfb\xb9\x79\x7e\ +\xf3\xe6\xad\xdd\xc3\x87\x0f\x8d\x8c\x8d\x4d\xda\xe2\x9a\x4c\x9c\ +\xc9\x57\x6d\xf0\xc7\x06\x92\xe4\x9b\xdf\x78\x5a\xdc\x7c\xf3\xcd\ +\xdf\x18\x18\xeb\xde\x66\xf3\x21\x04\x30\x33\x64\x54\xd9\x22\x88\ +\x1c\xaf\xe7\x00\x32\xce\x9d\x3d\x53\x9e\x9d\xdd\xd2\x16\x24\x42\ +\xb7\xbd\xfa\xb2\x73\xd6\x25\x69\x79\x3c\x04\x16\xdd\x4e\x73\xc9\ +\x39\x17\x42\x08\x7d\x0c\x17\xe0\x0e\x21\x68\xa0\x88\x0d\x30\x23\ +\xf2\x9e\xeb\xb9\xb1\x11\xd6\x7b\x06\xf3\xe4\xc4\xb8\xfd\xfc\xe7\ +\x3f\xff\xa6\x03\xe0\x9a\xa8\x00\x63\x0c\x47\x2a\xca\x18\x4c\x81\ +\x99\xc0\x10\xa1\x5f\x7e\x85\x01\x2c\x2c\x2c\xce\x7b\xef\xf3\x95\ +\x95\x95\x53\xcf\x3f\xff\xfc\x53\x5f\xf8\xc2\x17\x9e\x3c\x7d\xfa\ +\xf4\xca\x80\xd9\x03\x1a\x66\xfe\x00\x0c\x51\x14\x85\x3c\xcf\x65\ +\x14\x27\xe5\x52\xa5\x36\x19\xc5\xe9\xbe\x22\x3b\x9b\x1d\x09\x38\ +\x08\x2a\xb6\xc4\x0e\x02\x6e\x6a\x7a\xaa\x33\x3f\x7f\x4e\x11\xb1\ +\x8b\x93\xf2\xae\x28\x49\xab\x44\x60\x29\x25\x8c\x31\xa2\x54\xaa\ +\x8e\x6f\x9a\xdd\x3e\xae\xa2\x64\x44\x45\x71\xa2\x54\x5c\x4e\x4a\ +\xb5\xe9\x52\xa5\xbe\x2d\x8a\xd3\x5d\x28\x82\x44\x9e\x08\x1e\x04\ +\xdf\xe9\xb4\x45\xad\x56\xcb\x41\xe0\x91\xb1\xa9\xfb\x85\x10\x94\ +\x67\xdd\x95\xca\x48\xe3\xae\xa9\xd9\x1d\x1f\x9d\x9c\xd9\x76\xff\ +\xe0\xdd\xcb\xe5\xb2\x12\x42\x54\x8a\xc2\x14\x41\x83\xb0\x1c\x42\ +\x30\x8c\xb0\xb2\xd6\x5c\x6b\x63\x30\x85\x81\x99\x37\x4f\x4f\xda\ +\x4f\x7e\xf2\x93\x1b\x5f\x05\x00\x40\xbb\xdd\x46\xa3\x51\x5f\xba\ +\xb8\xb4\x4c\x3e\x04\x19\x02\x13\x87\x62\xb2\x0e\x43\xd0\xa1\xd7\ +\x0f\x9f\x3b\x73\xfa\xd4\xdc\xda\xda\x5a\xa6\x94\xba\x2c\x9b\x67\ +\x78\x44\xf0\x6a\x52\xe0\xa1\x87\x1e\x9a\x7f\xf5\xb5\xd7\xef\x7e\ +\xe4\xb1\xef\xb9\x09\xc5\x2f\xe8\xe9\x52\xb9\x98\x70\xe5\x64\xf0\ +\xc9\x89\x89\xde\xa1\x83\xaf\x8d\xce\x6e\x9e\xf5\x50\xd1\x56\xa9\ +\xea\x5b\x98\xc3\x45\xa7\xf3\x13\xdf\xfc\xf6\x33\xb5\xc7\xdf\xff\ +\xe1\x1d\x04\x2a\x15\x05\x85\x78\x50\x0a\x00\x0c\x78\x6f\xf5\x61\ +\x21\xd5\x4e\x80\xca\x20\xc6\xf9\xf3\xe7\xd3\x4d\x9b\x36\x75\x84\ +\x20\x0f\x26\x10\xa9\x89\xf1\xa9\xd9\xc7\x03\x73\x20\xa0\xcc\xcc\ +\xb0\x1c\xb2\xc1\x1b\x6c\xdf\xbe\x7d\xa2\x5f\x7c\x02\x21\x04\xcf\ +\x21\x18\x41\x7c\x86\x43\xd0\x4b\xcb\x2b\x6b\xfd\x81\x25\x26\x21\ +\x3b\xb3\x9b\xa7\xec\xe7\x3e\xf7\xb9\x37\x9d\x37\xd7\x44\x02\x74\ +\x3a\x9d\xf0\xe1\xc7\xdf\x3d\x07\xe6\x00\x86\x08\xcc\x92\x99\x45\ +\x60\x08\x0e\x8c\x56\xb3\xa9\x97\x97\x97\xf3\x2b\xe3\xfe\x43\xb3\ +\x74\x86\x03\x43\xc3\xe0\xa0\x91\xd1\x89\x9d\x53\x33\x9b\x6e\x25\ +\x60\x30\x1e\x3f\xb0\xfc\xed\x60\xfc\x7e\x30\x4e\xdf\x8f\xff\x87\ +\xed\x3b\x76\xae\x9d\x3a\x75\x22\xd5\xc6\xd0\x52\xab\x15\xe7\xd6\ +\x6d\xea\xe5\xe6\xdd\x77\xdc\x75\xef\xdb\x84\x90\x31\xf5\x87\x71\ +\x05\x09\x37\x18\xe7\x97\xa2\xa8\x3b\x68\xf2\xee\x77\x88\xc8\x12\ +\x09\xd7\x6c\xae\xca\xf1\xb1\xf1\x5e\x11\xf9\x1b\xfc\x7f\x21\xa5\ +\x10\x31\x0a\x8f\xc1\x67\x59\xe7\xec\x00\xb0\x53\x53\x53\x33\xfd\ +\x98\x47\xdf\xeb\x61\xeb\x43\xd0\xde\x7b\xd3\x5c\x6d\x9a\x62\xa6\ +\x11\x71\x92\xc4\xcb\x52\xca\xf0\xc4\x13\x4f\xbc\x35\x24\xc0\xe4\ +\xe4\x24\x6b\xad\xad\x92\x6a\x3e\x84\x50\x09\x21\x48\x1f\x58\x38\ +\x1f\x08\x60\x62\x22\x22\x12\x97\x7d\xd9\x01\xf3\xd7\x87\x76\x71\ +\x79\x5f\x16\x42\x70\xa9\x5c\x1b\x4f\xd2\xf2\x2d\x7b\xf7\xde\xde\ +\x3a\xf2\xfa\xa1\x91\xdb\xf6\xdd\xbe\xb6\x2e\x21\xfa\xc5\xa0\x06\ +\x75\x02\xfb\x0f\x05\x01\x18\xa9\xd5\xdc\x91\xa3\x87\x47\x9a\x3e\ +\x94\x2b\xa5\xd4\xcc\x2d\x5c\x1c\xe1\x5e\xd7\xde\x7f\xcf\xbd\x8b\ +\x83\x1e\x4f\xc3\x7f\x8a\xf9\xdf\x88\xe3\x74\xb7\xb3\x66\xc1\xda\ +\xfc\x60\xb3\xd9\xba\x7b\x62\x62\xb2\x47\x34\x18\x3e\xbe\x54\x7d\ +\x16\x28\x7a\x96\x0b\xbe\x9d\xf7\x3a\xab\x44\x44\x42\x08\x1e\x1b\ +\x1b\xdb\x1e\x42\x30\x85\x04\xe0\xe0\xbd\x77\xde\x7b\xdb\xe9\x74\ +\xdb\x9d\x4e\xd7\x31\x23\x62\xe6\x90\xc4\xd1\xea\xe4\xe4\xa4\xbf\ +\x16\xd3\xc6\xaf\x89\x04\x78\xf8\xe1\x87\xd9\x7b\xef\xa3\x38\x9a\ +\xf3\x81\x55\x08\xac\x82\x0f\x92\x39\x08\xc7\x2c\x8a\x29\x53\x3c\ +\x08\x04\x01\xfd\x5e\x3f\xb4\x7f\xf9\x4b\x8b\x02\x2c\xde\xbb\x4c\ +\x10\xbc\x52\xd2\xf9\xe0\xc3\xfa\x70\x2e\xa1\x18\xaa\x1d\x6c\xfb\ +\x43\xb3\x62\x7d\x2b\x5c\x3a\xda\x08\xbd\x4e\x9b\x6a\xa5\x52\xe6\ +\x9d\x0d\x5a\x88\x88\x08\xfd\x7b\xd6\x87\x72\x9d\x10\x58\x1f\xf6\ +\x85\x80\x4f\x4b\x95\x9b\x6d\xde\x3d\x7b\xe0\x3b\xdf\x7c\x65\x66\ +\xd3\x4c\x73\xfd\xff\xf5\x3f\x4b\x02\x83\xc1\x24\xdb\x6e\x2e\xbf\ +\x3c\x08\x20\x95\xcb\xe5\x28\x4d\xd3\xa9\x10\x82\xf6\x3e\x68\x1f\ +\xbc\x0e\x21\x18\xef\xbd\x9b\x5f\x58\x58\x0c\x08\xc4\xcc\xf0\xde\ +\xf3\x68\x7d\x64\x99\xaf\x51\x52\xe0\x35\x01\x00\x11\xa1\x5c\x2e\ +\xfb\x72\x29\x9d\xf3\x3e\x28\xe7\x59\xf9\xc0\x91\x75\x41\x7a\x1b\ +\x0a\xc7\x97\x06\x89\x15\xb8\xaa\xae\x1f\x8e\x05\xf4\x9f\xc9\x49\ +\x5a\xaa\x03\x45\x70\x66\xd7\xee\x3d\xcd\x63\x47\x8f\x94\x09\x70\ +\x04\xf2\x04\x0c\x32\x79\x1c\x81\xae\x68\xf0\xb9\x73\x62\x62\x62\ +\xa2\x53\xab\x94\x7b\xb5\x6a\xb5\xd7\xb3\x36\x22\xba\xfc\x3e\xc1\ +\xe4\x89\xc9\x09\x14\x81\x1d\x02\x39\xa9\x54\xad\x97\xbb\xbb\xcb\ +\xa5\x74\x29\xef\x76\x5e\x04\x90\x0f\xae\x01\xe4\x88\x8b\xe7\x67\ +\xdd\xce\xc1\x3c\xeb\x0e\x24\x12\x9c\x73\xee\xd4\xa9\x53\x4f\x67\ +\x59\x76\x21\x04\xaf\x83\xf7\xd6\x3a\x67\x9c\x73\xf6\xcc\x99\xb9\ +\x25\x30\x11\x23\xb0\xf3\xde\xef\xbb\xed\xe6\x65\x29\xe5\x35\x01\ +\xc0\xb5\x9c\x1b\x18\x6e\xbb\x79\xe7\xd1\x6f\x3e\xfb\xe2\xc7\xbd\ +\xf7\xb1\xb5\x56\x15\x15\x37\xbd\x74\xd6\x89\x10\x47\x45\x9c\x98\ +\x99\xd0\x77\x01\xaf\xa0\xf5\x1f\x64\x00\x8c\xb4\x54\x9e\x25\x82\ +\x03\x01\x95\x4a\xc5\x65\x59\x56\x2e\x98\x3e\x28\xde\x30\x54\x27\ +\x78\xa8\x3e\x60\x3f\x1a\xe8\x93\x38\xd2\xa5\xb4\xa4\x93\x28\x32\ +\x3e\x04\x10\x91\xef\x9b\x7e\xc5\xfd\xcc\x03\xb3\x1c\x03\x7d\xc2\ +\xcc\x58\x58\xb8\xb8\xe5\xbd\x0f\x3f\x7a\xb1\xd5\x5c\x3e\x0d\xe6\ +\x97\xd2\x4a\xed\x4e\x22\x08\x14\xd1\x5f\xee\x75\x3b\xc7\x5a\x6b\ +\xcb\xe7\x87\xde\x9b\xac\xb5\xe1\xb9\xe7\x9e\x3b\xec\x9c\x3b\xba\ +\x63\xe7\xae\xcd\xdb\xb7\x6d\xdb\x9b\x96\xd2\x19\x6b\x5c\x38\x72\ +\xe4\xf8\x6a\x08\xac\x42\x00\xe2\x28\x5a\x7c\xdf\x7b\xdf\xde\x3b\ +\x74\xe8\xd0\x5b\x0f\x00\x3f\xfc\xfd\x1f\x58\xfc\xce\x0b\xaf\x9e\ +\x75\xce\x8f\x3a\x1f\x62\xeb\x7d\xe4\x7c\x10\x2e\x30\x05\x1f\xc8\ +\xfb\x40\x4a\xc9\x75\xe6\x5f\x45\x0a\xac\x1b\x80\x52\xaa\x48\x0a\ +\x99\x92\xa0\x00\x10\x04\x11\xb6\x6d\xdb\xde\x3a\x75\xf2\x44\x69\ +\xe7\xae\xdd\x6d\xa0\xc8\x3b\xb8\xdc\x16\xe8\x83\xa1\x08\x44\x86\ +\x28\x52\x56\x09\x61\x85\x94\x36\x30\x07\xea\xd7\x0b\xa6\x7e\x35\ +\x71\xee\x6f\x0b\x30\x14\xe7\xd7\xda\xcd\xa8\x52\xad\xe8\x38\x49\ +\xb7\x95\xab\x23\xbd\x6e\x7b\x6d\x51\x46\xf1\xd9\x38\x49\xb6\xb2\ +\x67\xd7\x6e\xad\x1e\xec\x75\x5a\x2d\x21\x04\x79\xef\x87\xd5\x18\ +\x01\xc5\xe8\xe0\xc1\x83\x07\xe7\x0f\x3c\xff\xd2\x52\xa5\x52\x19\ +\x9d\x99\x9e\xd9\xd2\x6c\xb5\x1c\x13\x47\xce\xf9\x50\xad\x56\xce\ +\x5e\xb8\x70\xc1\x5f\xab\x05\x29\xae\xd9\x58\xc0\xc3\x0f\x3f\xcc\ +\x71\x1c\xbb\x5a\xb5\xfc\xb2\x75\x3e\x76\x2e\x24\xd6\xfa\x58\x1b\ +\x1b\x39\xe3\xa4\x0f\x2c\x02\x80\x50\x4c\x9d\xbe\xea\x33\x2e\xe5\ +\xdf\x15\x1e\x00\x09\x58\xe2\x41\x82\x06\xdc\xf8\xc4\x78\x6f\x6d\ +\xad\x29\x09\x08\x82\x06\xa9\xda\x45\x38\x96\x86\xc7\xfc\x05\x79\ +\x00\x5e\x80\x6c\xa4\x94\x15\x24\x2c\xc0\x41\x0a\x72\x52\x0c\x7b\ +\x0d\xd4\xcf\xee\xed\x87\x74\x09\xfe\xc4\xf1\xe3\xe5\x5b\x6e\xbe\ +\x65\x55\x08\x0a\xe5\x4a\xed\xe6\xfa\xe8\xf8\x76\x6b\xf2\x15\x6f\ +\xed\xc5\x5e\xb7\x75\xd4\x3b\xa3\x27\xa7\x67\x6f\x2f\x57\x6b\x75\ +\x5c\x65\xea\x79\x08\xc5\x58\xb1\x0f\x8e\xce\x9d\xbf\x90\x3f\xf5\ +\x97\xdf\x98\xf3\x8e\xa5\x77\x9e\xac\xb3\xfe\xae\xdb\x6f\x3b\xe3\ +\x9c\xbb\x26\x93\x42\xae\x29\x00\x88\x08\x59\x96\xf9\x87\xde\x75\ +\xff\x4b\xce\x39\x69\x9d\x4b\x8d\x71\x89\x31\x2e\xca\xad\x55\xd6\ +\x38\xc1\x21\x10\xf3\xba\x1a\xe8\x17\xe7\xe6\x41\xe9\xae\xa1\x5a\ +\xc0\x80\xb5\x46\xf7\xba\xdd\x37\x20\xd8\x73\x91\xc8\xe9\x01\xf8\ +\xe9\xe9\xe9\xce\xdc\xdc\xd9\x18\x04\xcf\xb8\xd4\x40\xf0\x20\x2a\ +\xf6\x99\x1c\xc0\x1e\xa0\xf5\xeb\x81\xd9\x33\xc3\x33\xc3\x01\xf0\ +\x60\xb8\x4b\x9f\x83\x67\x82\xcf\xf2\x8c\xa3\x38\xb2\x0c\x78\xe6\ +\xe2\xff\xc5\x49\x69\x53\xa5\x52\x9d\xed\x75\x5b\x67\x88\x88\xc7\ +\xc6\xa7\x6f\x97\x52\x56\x50\xb8\x36\xc0\x90\x31\xcb\xcc\x08\x60\ +\x78\xe7\x85\x77\x81\x9c\xf3\x22\x04\x16\x81\x83\xf0\x2e\x40\x4a\ +\xb5\xf4\xc1\xc7\xdf\xd3\xc2\x55\x0c\xdf\x0d\x0f\x80\x3e\x85\x77\ +\xbf\xe3\xee\x56\xa4\xa2\x13\xc6\xda\xc4\x58\x9b\x68\x63\x13\x6b\ +\xbc\x32\xce\x09\x6b\x9d\xf0\xfd\xb0\xeb\x95\xe0\xb9\x82\x18\x00\ +\xda\x6b\x2b\x17\xbd\x73\xab\x54\x30\xcd\x11\xe0\xb6\xcc\x6e\x69\ +\x5f\x9c\xbf\x10\x13\x17\xc7\xeb\xf1\x01\xe0\x52\x23\x38\x66\xf6\ +\xd4\xdf\x47\xc1\xfc\xd0\x8f\x19\xf8\xf5\x2d\xe0\x04\xa8\xdf\xe0\ +\x5e\x7b\xf5\x95\xda\x1d\x77\xdc\xb9\x34\x78\x06\x81\x1d\xc0\x4e\ +\xca\xa8\x54\x1f\x1d\xdf\x5b\xa9\xd6\x76\xf4\xdf\xd4\x6a\x93\x75\ +\x87\x6b\x0d\x85\xbe\xa7\xc3\x81\xc9\xfa\x20\xac\xb5\xd2\x79\x2f\ +\x9c\xf3\xca\xb9\x20\x8d\x75\x5c\xab\x55\x4f\x2c\x2f\x2f\xbb\x6b\ +\xb9\x1e\xd1\x35\x05\xc0\x23\x8f\x3c\xc2\xce\x39\xb3\x65\x76\xfa\ +\x2f\x8d\x75\x89\x31\xae\xac\x8d\x4d\xb4\xb1\xb1\xd6\x26\xb2\xd6\ +\x8b\x10\x82\xf0\xbe\x5f\x9f\xbf\xdf\xf3\xd7\xb9\x3e\x34\x26\x3f\ +\x38\xd5\x69\x35\x4f\x33\xb1\x21\x62\x0f\x62\x0f\x82\x6f\x8c\x8e\ +\xf6\x16\x17\x2f\x2a\xf4\x5d\x38\x10\xf7\xb7\xf0\x24\xc8\x81\xe0\ +\x01\xf6\x4c\x21\x14\xe7\xd8\x03\x1c\x20\xe0\xd7\x5b\x3f\x27\x10\ +\x54\x1c\x7b\xf6\x41\x14\x13\x5a\x7c\xdf\xf7\xef\xbb\x7f\xfd\xff\ +\x0b\xf6\x28\x0c\x52\xd7\xed\xb6\x4e\x5a\xad\xf3\xe1\x77\x66\x66\ +\x04\x06\xbc\x73\xe4\x9c\x23\xe3\xbc\xb4\xc6\x29\xe7\xbd\x34\xce\ +\xc2\x07\xdf\xfe\xe8\xf7\xbc\xf7\x64\xaf\xd7\xbb\xa6\x05\x22\xae\ +\x79\x91\xa8\x56\xab\x15\xfe\xbb\x1f\xfb\xf8\x31\x25\xe5\x69\x6d\ +\x6c\x6a\xad\x2b\xe5\xda\xa4\xda\xb8\x48\x1b\x5d\xa8\x02\x02\x79\ +\xef\xaf\x56\xb2\xf5\xbb\xdc\x63\xad\xf3\xac\xdd\x5c\x39\xca\x8c\ +\x9c\x18\x9e\x00\xb7\x7b\xcf\xcd\xcd\x13\x27\x4e\x94\xa9\x10\xe5\ +\x9e\x40\x1e\x85\x6b\xe8\x06\xc7\x21\x20\x50\xd1\xbb\x3d\x81\x3c\ +\x33\xfb\xc1\xfe\xe0\x9e\xc1\xf3\x08\xe4\x5f\x38\x70\x60\xf4\xde\ +\xb7\xdd\xb7\x88\xbe\xca\xe8\x3f\x6b\xa0\x2e\x3c\x40\x1e\x81\x75\ +\xab\xb9\x72\xac\xd5\x5c\x5d\x1e\xbc\x6f\xdf\x05\xa4\x10\x18\x3e\ +\x38\x32\x2e\x08\x67\x9d\x34\xc6\x49\xeb\x9c\xb2\xd6\x4b\x63\x2d\ +\x1a\x8d\xc6\x91\x52\x1a\xe5\x4f\x3c\xf1\xc4\x5b\x1b\x00\x4f\x3c\ +\xf1\x44\x68\xb5\x5a\xe6\xa6\xad\xb3\x5f\x35\xc6\x25\xb9\xb6\xe5\ +\x5c\x9b\x34\xcf\x75\x9c\x69\x1b\x69\x67\xa4\xb3\x8e\x7c\x18\xac\ +\xce\x71\xf5\x9e\x3f\x7c\xac\x75\x9e\xad\xad\x2e\x1f\xb7\xce\x2c\ +\x7b\xef\x3b\xcc\x21\x2f\x97\x4b\x79\x6b\x6d\x8d\xd6\x33\x7c\xfb\ +\xea\xa0\xef\x36\x16\x3d\xbc\x70\xfb\x2e\x31\xb2\x7f\xaf\x28\x7a\ +\x7e\xbf\x91\x07\xb3\x0b\xc1\x3b\x21\xc9\xa1\x98\x4d\x5c\x34\x82\ +\x07\xd6\x25\x8a\xeb\x76\xda\xe7\x7b\xbd\x6e\x7b\xf8\xdd\xfa\x23\ +\x89\xe4\x02\x93\xb7\x85\xe8\xd7\xc6\x49\x63\xac\xb2\x36\x28\xeb\ +\xac\x70\xd6\xf5\x3e\xfe\xa1\x47\xde\xb8\xeb\xae\xbb\xae\x49\xf4\ +\xef\xba\x02\x80\x88\xa0\x94\xf2\x3f\xf1\xc3\x1f\x7e\x43\x2a\x75\ +\x5a\x6b\x5b\xca\xb5\x29\x67\xb9\x29\xe5\xb9\x8e\xb5\x76\xd2\x58\ +\x2b\x42\xf0\x22\x04\x1e\x78\x04\x97\xc5\x00\xae\x26\x19\x8c\xd1\ +\xba\xb9\xb2\x7c\x76\x75\x65\xf1\xf8\xca\xf2\xc2\xe1\x9b\xb6\x6f\ +\x7b\xee\x6b\x4f\x7f\xb5\x97\x65\xbd\x33\x59\xaf\x7b\xa6\xd7\xeb\ +\x9e\x61\xc0\x00\x05\xb3\xb8\x18\x97\xe8\x8f\xea\xb1\x67\xf0\xba\ +\x68\x2f\x0c\xc4\xbe\x98\x07\xbb\x67\x9f\x7d\xa6\x7e\xef\x7d\xf7\ +\x2f\xa0\xb0\x1b\x3c\x81\x2f\xdd\xc3\xc1\x83\xd9\x19\x9d\x2d\x77\ +\x3a\xad\xd5\x81\xa7\x32\x68\x21\x04\x78\x0f\x0e\xde\x51\x6e\xad\ +\x30\xc6\x4a\x6d\xac\x32\xd6\x45\xda\x1a\x95\x6b\xcb\x23\xb5\xda\ +\x91\x9b\xb6\xcd\x66\x7b\xf7\xee\xbd\xe6\x55\xc2\xae\x4b\x9d\xc0\ +\x27\x9e\x78\x22\x28\xa5\xf4\x9e\x5d\x5b\x9f\xd4\xd6\xc6\xda\xb8\ +\x72\x6e\x6c\x29\xd7\x36\xc9\x32\x13\xe7\xda\x2a\xef\x02\x39\xcf\ +\x83\x1e\x34\x68\x3c\xec\x22\x0e\xce\x5d\x59\xd9\x0b\x28\xbc\x84\ +\x76\xbb\xb5\xb6\xb2\xb4\xd8\xc9\xb3\xde\x9a\xd1\xd9\x5a\xaf\xd7\ +\x39\x6b\xad\x59\xe2\x10\xda\xcc\xa1\x00\x02\x8a\x1c\x7f\x66\xf6\ +\x18\x48\x08\xa0\xef\x25\xb0\x63\x66\x6f\x8c\xe1\x28\x52\xae\xf0\ +\x18\xd8\xaf\x6f\xb9\xf8\xbc\xd6\xf9\xca\xca\xca\xf2\x85\x61\x37\ +\x75\xf0\x5e\x21\x30\x02\x02\x59\xeb\xc8\x1a\x2b\x72\x63\x95\xd6\ +\x36\x32\xd6\x46\xd6\x7a\xe1\x9c\x6f\xff\xd0\xf7\x7d\xf0\xc8\xf8\ +\xf8\xf8\x35\xef\xfd\xd7\x0d\x00\x44\x84\x56\xab\x15\x7e\xfa\xc7\ +\xbf\xef\x64\x9a\xc4\xaf\x68\x63\x4a\x5a\x9b\x72\x37\xd3\x69\xa6\ +\x75\xac\x33\xa3\x32\xad\x85\x0f\x8e\xbc\x07\x85\x10\xbe\xab\xdb\ +\x0f\x24\xc3\xd5\x6a\xfc\x0e\xce\xbd\xff\xfd\xef\x9f\x7f\xf2\xc9\ +\x27\xa7\x07\xf7\x5b\xa3\x7b\xdd\x4e\x6b\xa1\xdb\x69\x9d\x0b\xcc\ +\x1e\xa2\x60\x76\x60\x76\x85\x04\xa0\x42\x1d\x14\x92\xc0\x81\xe0\ +\x9f\x7b\xee\x3b\x23\x77\xdf\x7d\xd7\x22\xfa\xc0\x60\xb0\x03\xb3\ +\xe3\x50\x78\x00\xc1\x07\xd3\x6e\x35\x17\x87\xdc\xd5\xf5\xff\xef\ +\xbd\x27\x1f\x98\x9c\x75\x42\x6b\x2b\x73\x6d\x95\xd6\x46\x69\x63\ +\x62\x63\x9c\xca\x32\x8d\x2d\x9b\xa7\x5f\x96\x82\xf3\xeb\xd1\xfb\ +\x81\xeb\x58\x29\xf4\x89\x27\x9e\x08\x9b\x36\x6d\x32\x8f\x3e\xf4\ +\x8e\x2f\x5b\xe3\x42\x96\xdb\xb2\xc9\x4d\xa5\xd7\xd3\x69\xa6\x75\ +\x94\xe7\x45\x6c\xa0\x5f\x53\x8f\xaf\xe8\x5d\xfd\xcd\x25\xe6\x0f\ +\x5f\xbf\xf2\x9e\x81\xd4\x18\x5c\x97\x52\xc6\x00\x7b\x04\xf6\x02\ +\xf0\x60\xf6\x1c\x38\x10\xb3\x27\x62\x4f\x5c\xd4\x1f\x06\xb3\xef\ +\x75\x3b\x54\xab\xd5\x34\x02\x3b\x70\xf0\x14\xd8\x33\x87\xc1\xf5\ +\x90\xf5\x3a\xcb\xce\xb9\x30\xf4\x7f\xfb\x03\x55\x9e\xbc\x0f\x70\ +\xce\x92\xb5\x8e\xb4\xb1\x4a\xe7\x5a\xe5\xda\xc4\xda\xd8\x48\x6b\ +\x23\x20\x68\xfe\x27\x7e\xe4\xe3\x67\x76\xee\xdc\x79\x5d\x7a\x3f\ +\x70\x1d\x6b\x05\x13\x11\x9e\x7a\xea\xa9\xf0\xbe\xf7\xdc\xbf\xf2\ +\xcc\x81\x57\xbe\xb6\xb6\xd6\x7e\x34\x33\x52\x47\x5a\xe7\xbd\x2c\ +\x36\x71\xaa\x5d\xa2\x63\x1f\x45\x2a\x08\x41\x24\x84\x87\x10\x82\ +\x87\xc5\xfe\xb0\x9e\x1d\xba\x36\x28\xee\xc8\x00\xf0\x9e\xf7\x3e\ +\xb2\xf8\xab\xbf\xf1\x47\xef\x2f\x35\x66\xa3\x58\xc9\xac\x5e\x2b\ +\x2d\xef\xd9\x36\xb5\x6c\x82\xb5\xde\x05\xc7\xcc\x0e\x5c\x78\x01\ +\x27\xce\x2e\x96\x5f\x7f\xe3\xc2\xf4\x72\xab\x33\xda\xe9\xea\x5a\ +\xd6\x5e\xc6\xfb\xdf\x7d\xe7\xf3\x1c\xe0\xfa\x6e\x29\x06\xeb\x05\ +\x15\xc7\x01\x81\xc3\x65\xef\xd2\x5f\x2a\x86\xbd\xf7\x70\x81\xe1\ +\xac\xa7\xdc\x18\x99\x6b\xad\x32\x63\x63\x9d\xdb\xc8\x68\xab\x7a\ +\x99\xe6\x7d\xb7\xed\x7e\x71\x7a\x7a\xda\xdc\x7e\xfb\xed\xd7\xad\ +\x64\xfc\x75\x5d\x32\xe6\xb7\x7e\xeb\xb7\xf0\xe8\xa3\x8f\xe2\x3d\ +\x0f\xde\xb7\xf0\x97\xdf\x7a\xe1\x76\x66\x54\x84\x94\x4e\x0a\x72\ +\x52\x4a\xa7\x22\x0a\x52\x4a\x2f\x95\x80\xfc\xee\xe9\xdf\xf8\xab\ +\x46\x0d\x87\x41\xf6\xb9\xaf\x1c\x7a\xe8\xc2\x6a\xfe\x70\x1c\x25\ +\x1d\x10\xf1\x5a\x27\x9f\x3e\x7e\x76\xf1\x96\x93\xe7\x16\xf6\x74\ +\x7a\x56\xa5\x49\xdc\x7e\xf1\xf5\x53\x3b\x0e\x9f\x9c\x7f\xdb\xd1\ +\x37\x56\x36\x2f\x35\xdb\x0d\x6d\x5c\x64\xad\x57\x17\x96\x5b\xbb\ +\x4f\xcd\x77\x36\x3d\x78\xcf\x8e\xd7\xfa\x16\x48\x51\xf0\xb3\xcf\ +\xee\xc0\x81\x9d\x75\x46\xeb\xdc\x0a\x21\x65\xb5\x5a\x1d\x49\x92\ +\xb4\xbc\xb6\xd6\xcc\x9d\x0b\x64\x8c\x16\xbd\x2c\x57\xbd\x9e\x8e\ +\x3a\xbd\x3c\xee\xf5\xf2\xb4\x97\xeb\xb4\x97\xe5\x52\xa9\xe8\xd8\ +\x8f\x7c\xff\x07\x8e\x5e\xb8\x70\xc1\x5d\x8b\xcc\x9f\xbf\x8a\xae\ +\xfb\x82\x11\x27\x4e\x9c\xf0\xef\x7b\xdf\xfb\xb2\x9b\xb6\x6f\xfe\ +\xe2\xc9\x93\x73\x3f\x16\x47\xaa\x9c\x45\x52\xa7\x59\xa4\xb3\x38\ +\xb2\x49\x64\x65\x12\x45\xc1\x2b\x86\x2c\x0c\xc2\xcb\x7a\xdc\x55\ +\x8e\x01\xac\x47\xdf\x90\x6b\x37\xb2\x63\x76\xe6\xc9\x87\xee\xbd\ +\xe9\xf9\x5a\xb9\x6c\x2c\x07\xb1\xd2\xec\x96\x5e\x3e\x71\xfa\x96\ +\x95\x95\xce\xc4\x17\x9f\x7e\xed\x5d\x52\xb2\xdd\x34\x31\x7a\xe8\ +\x3d\xfb\xf6\xbe\x36\xd6\xa8\xf6\xd2\x24\x72\xce\x79\x3a\xf0\xda\ +\xc9\x6d\x2f\xbe\x3e\xf7\xa0\x35\x3e\x88\x62\x3a\x01\x98\x43\x11\ +\xcf\x67\xa6\x10\x02\x39\x67\x1d\x00\xae\x8d\x8c\xd4\x09\x90\xab\ +\xab\x2b\xad\x10\x98\x6d\xf0\x64\x8c\x15\xda\x58\x95\x69\xad\x72\ +\xad\x63\x6d\x4c\xac\xb5\x51\xb9\x31\xfa\x13\x1f\x7a\xf4\xe5\xf1\ +\xf1\x71\xfb\xce\x77\xbe\xf3\xba\x2e\x18\x71\xdd\x01\xb0\x7f\xff\ +\x7e\xec\xdd\xbb\xd7\xff\xf4\x8f\x7d\xe2\xf8\x2f\xfc\x8b\x7f\x77\ +\x38\x37\x76\x57\x6c\xac\xee\x64\x5a\xc7\x49\x62\x93\x38\x77\x51\ +\x24\x83\x8c\x24\x17\x29\x5d\x9e\x86\xc5\xfd\xb0\xd8\x1f\x54\xe8\ +\x02\xc0\x83\x1a\xbf\x8d\x5a\x7a\xbe\x5e\x4d\x9b\x9b\x26\x6a\xdd\ +\x38\x56\x41\x08\x81\x99\xb1\x72\x76\xeb\xce\xc9\x67\x5b\x6d\x1d\ +\x59\x88\xc6\x68\xad\x2c\x1a\xb5\xb2\x91\x52\x04\x21\x8a\x67\x78\ +\xef\x31\x33\x31\xb2\x38\x39\x56\x3d\x46\x14\x6c\xe0\x4b\x1e\x49\ +\x60\x26\x0e\x01\xce\x39\x67\x8c\x71\x71\x9c\xa4\xcc\x81\xb5\x31\ +\x79\xb7\xdb\x35\xc6\x79\x72\xc6\x8a\x5c\x5b\x99\x6b\xa3\xf2\x5c\ +\xc7\x79\x66\x62\xad\x6d\x94\xe7\x46\x34\x46\xeb\x2f\xbf\xe7\x9d\ +\xf7\x75\xfe\xf4\x4f\xff\xf4\xba\x2f\x23\x77\x43\xac\x1a\xf6\xd9\ +\xcf\x7e\x96\x4f\x9e\x3c\xc9\xce\xf9\x8b\xc7\xde\x38\xf3\x80\x20\ +\x41\xaa\x5f\x86\x45\x49\xe1\x95\x8a\x42\xa4\x94\x97\x52\x72\xb1\ +\x06\x43\x91\x62\x35\x2c\xf2\x07\x79\x84\xb8\xbc\x10\x34\x00\xe8\ +\xe5\x56\x56\xdb\x32\x5d\x5f\x89\x94\x18\xe4\x67\x43\x10\x71\xa5\ +\x14\x87\x89\xd1\x1a\x55\x4a\xb1\x23\x42\x00\x73\x51\xcb\x3b\x04\ +\xb6\xd6\xe3\xf4\xf9\x95\x91\x6a\x39\x6e\x6d\x9d\xae\x37\xbd\xf7\ +\xbc\xbe\x7a\xa8\xf7\xa1\xdd\x6e\xb7\xba\xdd\x6e\xee\x9c\x0b\x0c\ +\xc0\x3b\xe7\x5b\xad\x56\x6e\xad\x87\x73\x56\xf4\x7a\x5a\xf6\x7a\ +\x59\xd4\xe9\x65\x71\xb7\x97\xa5\xbd\xcc\x94\x7a\x59\x1e\x5b\xef\ +\x96\x7f\xe6\x27\xbe\xff\x99\xe5\xe5\x25\xf3\xb3\x3f\xfb\xb3\xd7\ +\x7d\xcd\xa0\xeb\xe6\x05\x0c\xd3\x20\x38\xf4\xbe\xf7\xdc\xb7\xd8\ +\xa8\xd7\xbe\xae\x8d\x2e\x65\xb9\x2d\x67\xb9\x2e\xf5\x72\x9d\xf4\ +\xb4\x56\x59\x6e\xa4\xb5\x56\xf8\x00\x2a\xd6\xec\xbb\xd4\xf8\x52\ +\xef\xe4\x2b\xaf\xdd\xbc\x6d\x7c\xd9\xf9\x20\x17\x56\xba\xa9\x2f\ +\x0a\x35\xc3\x7b\x0f\xe7\x1c\x84\x10\x11\x80\xe0\x5c\xf0\xfd\x16\ +\xbc\xe7\xe0\x5c\xf0\xed\x4e\x8e\x8b\xcb\xed\xca\x2d\xdb\xa7\xce\ +\x39\x17\x9c\xf7\xec\x9c\x63\xe7\x9c\x77\xad\x56\xab\x6d\x8c\xf1\ +\x7d\x40\x40\xe7\xb9\x6b\xb5\x5a\xb9\x35\x26\x58\xe7\xc9\x68\x2b\ +\x72\xa3\x55\xa6\x4d\x94\x65\x3a\xee\xe5\x26\xc9\xb5\x89\xb2\x5c\ +\x63\xd7\x4d\xdb\xbe\xb3\x79\xf3\x8c\xbe\xd6\x21\xdf\xbf\x8a\x6e\ +\x08\x00\x00\xc5\x40\xd1\xc2\xc2\x82\xfb\x87\x7f\xef\x07\xbe\x15\ +\x18\x6b\x59\x11\x1d\x2c\xf7\xba\x3a\xed\xf5\xf2\x24\xcb\x33\xa5\ +\x8d\x15\xd6\x59\x78\x1f\x2e\x0b\x10\xf5\x99\xfd\x5d\x6a\xa1\x3f\ +\x96\xc4\x5b\xa7\x46\xe6\x17\x56\xdb\xb5\xcc\x38\x31\x0c\x1a\xad\ +\xb5\xcd\xf3\xcc\x7a\x6f\xdd\xa0\x39\x67\x9c\xb1\xda\x5f\x58\x6e\ +\x26\x95\x92\x6a\xd5\xab\x51\xcf\x7b\xeb\xbd\xb7\xde\x39\xed\x7a\ +\xbd\x5e\x3e\x98\xec\x31\xf8\xbf\x45\xb4\xcf\x93\xf3\x4c\xce\x19\ +\xca\x8d\x11\x79\x6e\x54\x96\xe9\xa8\x97\xe9\x44\x6b\x9b\x64\x79\ +\xae\x92\x38\x3e\xf6\x03\x1f\x7f\xec\x42\x96\x65\xd7\xcd\xed\xbb\ +\x92\x6e\x08\x15\x30\xa0\xbb\xee\xba\x8b\xef\xb8\x63\x5f\x38\x72\ +\xfc\xd4\xda\xca\x72\xf3\x6e\x29\xfa\x5e\x80\x20\x17\x45\xca\x29\ +\x25\x7d\x24\x65\xb1\x2c\x9b\xb8\x34\x65\x1c\xdf\x2d\xf6\x07\xc4\ +\x00\x30\xd1\x28\xf7\x4e\x9e\x5f\x1b\x17\x24\xdc\x48\x25\x32\xc3\ +\x00\x19\x24\x5f\x30\x33\x0f\xc4\xfc\xf2\x5a\x57\x1d\x3f\xbb\x3c\ +\x7e\xd7\x9e\x99\x39\x41\xf0\xde\x7b\xb6\xd6\x86\x2c\xcb\xac\x73\ +\x8e\x87\x41\xd4\xb7\x17\xc8\x39\x27\xac\xf7\x94\x67\x5a\x76\x7b\ +\x79\xd4\xe9\x66\x71\xa7\x9b\x95\x7a\x99\x2e\x75\xb3\x3c\xc9\x72\ +\xad\x3f\xf2\x3d\x0f\x7f\x75\xf7\xce\xed\xbd\xf7\xbe\xf7\xbd\xd7\ +\x5d\xf4\x0f\xe8\x86\x91\x00\x40\x61\x10\xce\xcf\xcf\xfb\x7f\xf0\ +\xe3\xdf\x7b\x2c\x8a\xe3\x23\x99\xb1\xe5\x4c\xeb\x72\x96\x9b\xb4\ +\xd7\xcb\x93\x5e\x4f\x47\xb9\xb6\xd2\x7b\x27\x9c\xf3\xe4\xbd\xbf\ +\xac\xe7\x0f\xab\x83\x7e\xaf\x2c\x82\x40\xcc\x68\x54\x93\xf6\xe9\ +\x0b\x2b\x13\xbd\xdc\x88\x2b\x24\x07\xb4\xd6\x2e\xcf\x73\x67\x8c\ +\xf1\x59\x96\x87\x93\xe7\x56\x2a\xde\x39\x23\x29\x68\xad\xf5\x60\ +\x11\x29\x3b\x50\x1f\x57\x7e\x3e\x84\x00\xeb\x19\xd6\x3a\xca\x73\ +\xa3\xb2\x3c\x57\xbd\x2c\x8f\xb3\xbe\xe5\x9f\x65\x5a\x4e\x34\x46\ +\x5f\x78\xe8\xdd\xf7\xb7\x1f\x7c\xf0\xc1\x1b\x42\xf4\x0f\xe8\x86\ +\x02\x00\x50\x44\x08\x85\x10\xe6\xa1\x77\xdd\xfb\x17\xc6\x58\x68\ +\x6d\x4a\x59\xae\xcb\xbd\x4c\x27\x59\x6e\x22\xad\x8d\xb4\xc6\x91\ +\x2b\xac\xf0\xef\xb2\x05\x06\x4c\xbf\xd2\x1e\xd8\x31\x5b\x6f\x2e\ +\x37\x7b\xe3\xdd\x9e\x8e\x06\x36\xc0\xe0\xde\xfe\x31\x1b\x63\x42\ +\xb7\x9b\xe3\xfc\xc5\x66\xbd\x51\x4d\x9a\xd6\xda\x60\x8c\x09\x43\ +\xff\x87\x43\x08\x3c\x00\xc2\xba\xe8\x77\x1e\xce\x59\xd2\xda\x88\ +\x5c\x1b\x99\x65\x3a\xce\xb5\x89\xb5\xb6\x49\x2f\xd7\x11\x80\x85\ +\xff\xf1\xa7\x7f\xf8\xf5\x13\x27\x4e\xdc\x30\xa2\x7f\x40\x37\x1c\ +\x00\x06\x06\xe1\x43\xef\xbc\x67\x69\x6c\x74\xe4\x9b\xb9\xb6\x69\ +\xae\x6d\xb9\xa7\x75\xa9\x97\xe7\x49\x37\xd7\x51\xa6\xb5\x74\xce\ +\xa1\x2f\x05\x68\xb8\xc7\x5f\x1a\x81\xf3\x97\xf5\x52\x49\x08\x3e\ +\x04\xd5\xed\x19\xe5\xbd\x87\xf3\x1e\x67\xce\x2f\x97\x9f\x79\xf5\ +\xc4\xcc\x89\x33\x8b\xd5\x2c\xd7\xc2\x7b\x8f\xdc\x38\xd1\xed\xe9\ +\x4a\x39\x91\xe6\x4a\x23\x73\xc0\xf4\xe1\xe6\x9c\x83\x75\x9e\xac\ +\xb1\x94\xe5\xb9\xec\x65\xb9\xea\xe5\x3a\xce\x33\x9b\x68\x6d\x62\ +\x9d\x1b\xba\xf5\xe6\x9d\xdf\xda\xb6\x6d\xab\xb9\x51\x0c\xbf\x61\ +\xba\xee\x71\x80\xab\xd1\x23\x8f\x3c\xc2\xbf\xfd\xdb\xbf\xed\xfe\ +\xe1\x4f\x3d\xf1\xad\x7f\xf1\xab\xbf\x75\xbb\xd6\xb6\xa4\x73\x5b\ +\xea\x25\xb9\x4e\x93\xc8\x26\x71\x64\xe3\x48\x49\x21\x84\x13\x85\ +\x35\xbf\x1e\x07\x00\x2e\xa5\x8d\x0f\x0a\x2d\x0e\x5a\xf0\x81\xfe\ +\xec\x6b\xaf\x7d\xb8\xd3\xcb\xb6\x18\xeb\xc6\x10\x41\x4a\x81\x8c\ +\x19\x8a\x9c\xc8\xa3\x48\x35\xcb\x69\x3c\x5f\xaf\xd7\x57\xd3\x58\ +\xba\xc1\x52\xb3\xc3\xea\xe5\x0a\xf1\x4f\xce\x05\x18\x67\x49\x1b\ +\x2b\xf2\x22\xe0\x13\xe5\xb9\x8e\x73\xab\x93\x5c\x1b\x95\x24\xf1\ +\xd1\x1f\xf9\xfe\x0f\x5c\x7c\xe5\x95\x57\xc2\xad\xb7\xde\x7a\xbd\ +\x7f\xda\xef\xa2\x1b\xca\x08\x1c\xa6\xbb\xee\xba\x8b\xef\xba\xeb\ +\x0e\x7e\xf5\xe0\xd1\x7c\x75\xad\xbd\x4f\x49\xe9\x95\x10\x56\x4a\ +\x69\xa3\x48\x3a\x25\x65\x88\x22\x15\x8a\xa5\xda\x2e\x31\xfe\x6a\ +\xcf\x22\x22\x7c\xe5\x99\xa3\x37\x1f\x3a\x7e\xfe\x47\xa3\x48\x2c\ +\x6f\xdb\x3c\xf6\xed\x89\xe9\xca\xe1\xea\x68\x72\x7a\xdb\xa6\xc6\ +\x8b\xe5\x5a\x7c\x6e\x6a\xba\x76\x70\xc7\xcc\xd4\x2b\xd6\x58\x79\ +\xee\x62\xf3\xdd\xab\x6b\xad\xb5\x3d\xdb\x26\xe7\xaf\xc6\xfc\x41\ +\x8e\x9f\x73\x8e\x6c\x11\xf4\x91\xdd\x2c\x53\x9d\xae\x8e\xbb\xdd\ +\xac\xd4\xcd\xf3\x52\xde\xd3\x69\x2f\xd3\xfc\xce\x07\xee\x7a\x72\ +\xdb\x96\x99\xee\xc7\x3e\xf6\xb1\x1b\xae\xf7\x03\x37\xa0\x0a\x18\ +\xd0\xfe\xfd\xfb\x71\xf4\xe8\x51\xf7\x8f\x7f\xf6\xc7\x5f\x97\x52\ +\xce\x6b\x63\x53\x63\x5c\xaa\xb5\x4b\xb4\x36\x91\xb1\x4e\x5a\x63\ +\xa5\xbb\x24\xee\xf9\x6a\xbd\x74\x60\x17\x1c\x3c\x76\xe1\xe3\xbb\ +\xb7\x8d\xfd\xee\xf7\x3f\x7e\xfb\x67\xdf\xff\xe0\x9e\x57\x93\x2a\ +\x65\x8d\x91\x78\x61\xeb\xf4\xc8\xf9\x7a\x2d\x5a\xf4\x64\xd5\x3b\ +\xee\xd8\x72\xfa\x23\x0f\xed\xfd\xf6\x03\xfb\x36\xff\xf6\x1b\x67\ +\x96\xde\x7f\xa5\x2a\xb9\xd2\xc0\xf4\x3e\xc0\x79\x47\x99\x36\x42\ +\xe7\x56\x69\x63\x23\x6d\x6d\x6c\x8d\x8f\x73\xe3\x64\xb5\x5a\x3e\ +\x78\xff\x3d\xb7\xad\x3d\xfe\xf8\xe3\xd7\x2c\xcd\xfb\x6f\x4a\x37\ +\x2c\x00\x00\xe0\xf4\xe9\xd3\xc1\x18\xa3\x77\xdd\xb4\xe5\x29\x6d\ +\x6c\xa4\x8d\x4b\xb5\x31\x71\xa6\x6d\x94\x1b\x23\x8d\x71\x54\x18\ +\x61\xdf\xad\xf3\xaf\x64\x18\x88\xfc\xcd\xdb\x26\x4f\xd5\x4a\x89\ +\x21\x80\x8d\xb5\xb1\x12\x42\x57\xe2\x38\x17\x04\xdb\x33\xba\x1a\ +\x42\x60\x29\x29\x4c\x4d\xd6\x9a\xfd\x24\x91\xab\x3e\x6b\xb0\x6f\ +\x5d\x80\xb7\x8e\x8c\x75\x42\x5b\x27\xb5\x31\x05\x08\xb4\x8b\xac\ +\x75\xfa\x7b\x3f\xf2\xd8\x4b\x6b\x6b\x6b\xd7\x75\x6d\xe0\xbf\x8e\ +\x6e\x68\x00\xec\xdf\xbf\x1f\x2b\x2b\x2b\xfe\xa7\x7e\xf4\xa3\x27\ +\xa3\x48\x9d\xd1\xd6\xa6\xd6\xf8\x92\xd1\x2e\x31\xda\x2b\xe3\x9c\ +\x0c\x2e\x88\x80\xb0\x3e\xa1\xe4\x4a\x10\x0c\x3c\x02\x02\x3b\x29\ +\xe0\xfb\x92\x82\x3d\x07\x8a\x04\xb9\x52\x1c\x1b\x25\xa4\x65\x66\ +\xd1\xff\x2c\x0b\x42\x00\x21\xfc\x55\xa0\xea\x7b\x0d\xc4\x08\xe4\ +\x3c\x0b\x67\xbd\x74\xd6\x29\x63\x5c\x6c\xad\x8f\xb5\x35\xb2\x56\ +\xad\xbc\xb6\xf7\x96\x1d\xdd\xd3\xa7\x4f\xdf\x90\xa2\x7f\x40\x37\ +\x34\x00\x80\xc2\x2d\x5c\x58\x58\xb0\x5b\x66\xa7\x9f\x33\xc6\x28\ +\xed\x4c\x62\xac\x8d\xb5\x31\x91\xb5\x41\x5a\x1f\x48\x0c\x2d\x15\ +\x3a\x48\x25\x1f\xa6\xbe\x81\xe8\x19\x97\x5c\x43\x0e\x0c\x21\x84\ +\x8f\x89\x02\x11\x17\x2b\x7b\xf6\xad\x7c\x22\x0a\xfd\x4c\xe1\x4b\ +\xf1\xff\x22\xde\x30\x20\x00\x92\x43\x08\x64\x9d\x23\xeb\xbd\xd4\ +\xc6\x29\x6b\x7d\x64\x8c\x53\xd6\x38\xfb\xbe\x87\x1e\x38\x38\x33\ +\x33\xe3\xaf\xf5\x42\x90\x7f\x53\xba\xe1\x01\x40\x44\xb8\xef\xbe\ +\xfb\xfc\xcf\xfc\xc4\xf7\x9d\x20\x12\x4b\xd6\xf8\xd8\x18\x1f\x1b\ +\xeb\x22\x6b\x9d\x0a\x21\x50\x60\x08\xe0\x52\x15\xf1\xe1\x41\xa2\ +\xa1\x21\x62\xcf\xe2\xd2\xd0\x31\xc0\x4c\xa0\x00\x80\x05\x44\x51\ +\x10\x7e\x70\x2d\x14\xf7\x0f\x7a\xfc\xe0\x3d\x86\x6b\x16\x32\x31\ +\x81\x01\xe7\xbd\x74\xc6\x4b\x6d\x6d\x64\x9d\x8b\xb4\x75\xa2\x5c\ +\x2e\x1d\x79\xdb\x9d\xb7\xf6\x3e\xf3\x99\xcf\xdc\xd0\xbd\x1f\xd8\ +\x00\x00\x00\x80\xcf\x7c\xe6\x33\x61\x75\x75\xd5\x4c\x34\x46\x5e\ +\xd4\xc6\x2a\xe3\x5c\x5c\xf4\x36\x2b\xad\xf3\xd2\x39\x4f\x81\x2e\ +\x2d\x16\x75\xb5\x46\x44\x41\x92\x1c\xa4\x93\xf7\xcb\xff\x33\x5b\ +\x80\x69\xbd\x5a\x51\x71\x4d\x92\x08\x83\x75\x08\xaf\x6c\x00\x40\ +\x24\x01\x06\xac\x63\xe1\x5c\x10\xda\x59\xe5\x7d\x50\xc6\xd8\xc8\ +\x68\xcd\xf7\xdc\x7e\xf3\xc1\xe5\xe5\x65\x77\xa3\xf7\x7e\x60\x83\ +\x00\x60\xff\xfe\xfd\xf8\xda\xd7\xbe\x16\xee\xde\x77\xd3\x31\xe7\ +\xac\x33\xc6\xc4\xc6\xba\xc8\x38\xaf\xac\x73\x32\x04\x26\x0a\x97\ +\x7a\xf0\xd5\xb2\x86\x00\x78\xd9\x9f\x79\x3c\xa8\x21\x84\xf5\x7d\ +\x62\xc2\x50\x99\x39\x25\x18\xfd\x5a\x43\x57\x79\xce\xfa\x04\xcf\ +\x10\x3c\x59\xe7\x84\xb7\x5e\x5a\xeb\x22\xad\x8d\x04\x78\x3e\x12\ +\xba\xfd\x6b\xbf\xf6\x6b\x37\x4c\xbc\xff\x3f\x47\x37\x64\x20\xe8\ +\x6a\xf4\xdc\x73\xcf\x85\xed\xdb\xb7\x3b\x01\x9e\x33\xc6\x6c\x75\ +\xd6\x45\xd6\x5a\x65\x8c\x17\xd6\x39\x11\x90\x10\x86\x98\x38\x00\ +\xc2\x80\x84\xa0\x20\xf0\xdd\x4b\xc9\x15\xc7\x54\x08\x84\xf5\x6b\ +\xcc\xfd\x15\x40\xbf\xeb\x3d\x88\x08\x90\x02\x41\x7b\x61\x9c\x93\ +\xd6\x05\x69\x83\x97\xc6\x59\x95\xe7\x3a\x92\xe4\xe7\x0e\x1d\x3a\ +\x14\x9e\x7e\xfa\xe9\xbf\x03\xc0\x7f\x4b\xfa\xf6\xb7\xbf\xcd\xcc\ +\xec\xe2\xca\xf8\xa9\x3c\xc7\x2e\x63\x5d\xe4\x5c\x90\x3e\x78\xe9\ +\x83\x27\xf6\x9e\x38\xe9\x97\xda\xbb\x22\x37\xb0\x38\x09\xaf\x86\ +\x0a\x4c\x81\x89\x05\x44\x5f\x22\x88\x7e\x89\xd6\xe2\x9a\x52\x8a\ +\xd7\xab\x8d\x5d\x8d\x98\xe1\x19\x14\x5c\xa0\xe0\xbd\xf0\xd6\x4b\ +\x93\x69\x95\xe9\x8c\xeb\x89\x3b\xff\xca\x2b\x6f\xdc\xb0\x7e\xff\ +\x95\xb4\x61\x00\x00\x80\xcf\x9d\x3b\xe7\xb7\xdf\x14\x2d\x38\xae\ +\x59\x63\x4c\xec\x82\x57\xce\x06\xe1\x1d\x28\x90\x20\xc2\xa5\x35\ +\x81\xaf\xfc\x30\x81\x42\xa4\x44\x18\x5c\x1b\x54\x23\x93\x42\x30\ +\x09\x62\xf4\x17\xa2\x02\x00\x25\x45\x20\x81\x70\xb5\xe7\x84\x10\ +\x40\xa2\xa8\xe7\xc3\x08\xe4\x98\x85\x75\x5e\x65\x3a\x8f\x83\xd5\ +\x0b\x17\x57\x2f\xea\x66\xb3\x79\xc3\x1b\x7f\x03\xda\x10\x36\xc0\ +\x80\xb4\xd6\x7e\x79\x69\xc9\x7a\xab\x57\x8d\x35\xb1\xf7\x5e\xfa\ +\xe0\x64\x80\x17\xc1\x07\x50\x5f\xec\x5f\x59\x5b\x50\x08\x01\x12\ +\xf0\x42\x5d\xaa\x3a\x5a\xd4\x2a\x46\xb1\xd4\xac\x20\x26\xbe\x94\ +\x5d\x2c\x23\xc5\xa2\xa8\x3d\x74\xd9\x33\x80\xbe\x01\x18\x40\x00\ +\x93\xf7\x10\xec\x82\x30\xd6\xca\x3c\xcf\x23\x67\x7a\xcd\xb5\xb5\ +\x35\xb7\xb4\xb4\xb4\x21\xc4\x3f\xb0\xb1\x24\x00\x16\x16\x16\x42\ +\x1c\xc7\x3e\x4a\xb3\xb6\x35\x66\xdc\x59\xa7\xbc\x0f\xc2\x5a\x16\ +\xc1\x33\x85\x7e\x81\xb6\x2b\xca\xca\x15\xfb\xa0\x10\x29\x15\x2e\ +\xa5\x90\x83\x19\xcc\x42\x08\x30\x0a\x15\x30\x58\xb2\x76\xe0\x35\ +\x0c\xac\xfe\xc1\x33\x84\x10\x08\x08\xc4\x81\xe1\x3c\xc8\xbb\x40\ +\xde\x07\xe1\x9d\x55\x46\xe7\x51\xd6\x6d\xb5\xd6\xd6\xd6\x1c\x70\ +\xed\x0a\x3c\xfc\xd7\xd2\x86\x92\x00\x00\x42\x96\x65\xd6\xe8\x6e\ +\x4b\xe7\x79\x6c\xad\x8d\x9c\xf3\xca\x07\x2f\x5d\x70\x32\x38\x2f\ +\x3c\x8a\x81\x9a\xc1\x07\x2e\x49\x04\xe9\x63\x19\x0d\x2d\x2a\x25\ +\x58\x2a\x05\x12\x02\x02\x02\x24\x2e\xad\x31\x24\x0a\xe9\xe0\xae\ +\x28\x58\x09\xe7\x82\x08\xc1\x0b\x17\x82\x08\xde\x09\xc7\x41\x5a\ +\xef\x44\x96\x65\x91\xd1\x9a\x74\xd6\xee\x84\x10\xd6\x8b\x3e\x6f\ +\x04\xda\x50\x12\x00\x00\xb2\x2c\xb3\x59\xb7\xd9\x89\x2b\x63\x91\ +\x31\x26\xb6\xce\x4b\xad\xad\xd4\xda\xc9\x3c\xf6\x42\x29\x2f\x28\ +\xa6\x20\xd8\x83\xb8\x58\x94\xa9\xf0\xfa\x42\x08\x28\xc6\x0c\x00\ +\x0c\x56\x75\xe8\x07\x7a\x42\xbf\x16\x6c\x71\x2d\x30\x93\x28\x4a\ +\x14\xa0\x88\x0b\x79\x0a\x00\x5c\xf0\xb0\xd6\x91\x31\x56\xe6\xda\ +\x4a\x6b\x9c\xb0\xd6\x46\x79\x9e\xa7\x5a\x67\x5a\x6b\x6d\xae\x65\ +\x7d\x9f\xff\x16\xb4\xd1\x00\xc0\xcc\xec\xb2\x2c\x33\x65\x9d\xdb\ +\x5c\xe7\x25\x63\x6c\xa2\x73\xad\x7b\x59\xe6\x95\x12\x0c\x62\x4a\ +\x5c\xe4\x23\x29\x83\x10\xc5\x82\x53\xdc\xaf\x2f\x68\x83\x17\x8e\ +\x95\x80\x07\x10\x40\xc1\x33\x59\xeb\x05\x73\x20\x30\xc3\x05\x16\ +\x0c\x86\xf5\x5e\x40\x80\x73\xa3\x15\xf5\xc7\x02\x9c\x0f\x64\x9d\ +\x17\x5a\x5b\xd9\xe9\xe9\x28\xcb\x4d\xac\xb5\x8d\xb3\x5c\x27\x59\ +\x96\x95\x75\xde\x6b\x6a\xad\x4d\x96\x65\x7f\x07\x80\x37\x91\x38\ +\xcb\x32\x17\xc7\xb1\xd6\xba\xe7\xf2\x4c\x57\xb2\x4c\xa7\x4a\x29\ +\x4b\x42\xb2\xf7\x4c\xb9\x76\x22\x4d\x23\x47\x80\xec\xf5\xda\xe3\ +\x79\x9e\x4f\x38\x63\xc6\x04\xe7\x77\xbc\xf6\xf2\xcb\x92\x98\x23\ +\x06\xc7\x3a\xd3\x5b\x2f\xb6\x57\x4d\x73\xee\x8c\xc9\xbd\x57\xc1\ +\xba\xfa\x77\x9e\x79\x76\x1b\x11\x19\x06\x59\xc5\x7a\xef\x6b\xaf\ +\xbe\xb6\x14\x25\xc9\x72\x5a\x2a\x2d\x25\x71\xa9\xed\x3d\x8b\xdc\ +\x68\x99\x65\x3a\xea\x76\xb3\xb4\x97\x65\x69\x96\xe7\xe5\x2c\xcb\ +\x2b\x46\x67\x17\xac\xb5\x1a\x1b\x48\xfc\x03\x1b\x0f\x00\x00\xe0\ +\x9c\x73\x99\xd5\x59\xd6\xcb\xb2\x2d\xdd\xac\xd7\x15\x82\x67\x4c\ +\xde\xd9\xda\x14\xbc\x8b\x88\xb7\x11\x30\x0e\x70\x7d\xbd\x4e\x17\ +\x00\x11\x80\xb5\x35\xf3\xe1\x7e\xee\x08\x7c\x60\x68\x57\x2c\xd8\ +\x63\x02\x03\x21\xa0\xe5\xdd\xfb\x81\xc1\x7a\x3f\xc0\xe2\xe2\xc2\ +\xc7\x80\x7e\xa9\x60\xc0\x02\x58\x66\xd0\x02\x33\x1d\xf3\x4c\x27\ +\xad\xc7\x5c\xa7\xdd\x4d\xb3\x3c\x1b\x31\x79\x77\xcd\x18\xa3\x01\ +\x6c\x18\x17\x10\xd8\x98\x00\xf0\xd6\xda\x6e\xd6\x6d\x2e\x06\x3f\ +\xf3\xbd\x6c\xb3\xbb\x4c\xee\xab\x41\x0e\x16\x8e\x2c\x0a\x41\x8a\ +\x7e\xb8\x57\xf4\xab\x44\x86\x40\x70\x6e\x3d\x02\x5c\xd4\x83\xf3\ +\x04\x26\xc0\x31\xc3\x83\x61\xd7\x17\x81\x02\x42\x00\xac\xe5\xf5\ +\x81\x03\x0e\x88\x18\x98\x09\x21\xcc\x30\xe3\x4e\x1f\x02\x9c\xf3\ +\x1c\x5c\x76\xda\x59\xfd\x54\x9e\x75\x9b\xcc\xac\xaf\xf7\x8f\xf3\ +\x37\xa5\x8d\x08\x80\xe0\xbd\x6f\xf7\xba\x9d\x95\xbc\xd7\x9a\x59\ +\x5e\x15\xd5\xd1\x7a\x1d\x71\x1c\x17\xcb\xc6\x53\xb1\x54\x1b\x89\ +\xc1\xc2\x24\x83\x5a\xbd\x04\x63\x2f\x49\x67\xdb\x97\x04\x12\x45\ +\xc1\x1f\x0b\x40\xf3\xa0\x8e\x00\xe0\x1c\x21\xef\x23\xa2\x18\x63\ +\x00\xc2\xd0\x3e\x03\xd0\xb9\xa6\x6e\xb7\xb7\xdd\xe9\x9e\x36\xc6\ +\x2c\xff\x9d\x0a\xb8\x36\xc4\xde\xfb\xcc\x5a\xbb\xba\x7c\xf1\xec\ +\x89\xe5\xe5\xe5\x5d\x17\xcb\x23\x18\x6b\x34\xb0\x69\x66\x1a\xb5\ +\x91\x1a\x22\x35\x58\x69\x14\x20\x12\x88\x22\x85\x46\x43\x15\xcb\ +\xca\x09\x82\x00\x41\x28\x09\x21\x24\xa4\x94\x88\xe3\x18\x51\x1c\ +\xf7\x81\x53\x8c\x0d\x48\x21\x11\xc5\x11\x88\x44\xb1\xd8\x21\x03\ +\xc6\x18\x2c\x2c\x2e\xe2\xe0\xc1\x83\x38\x79\xf2\x24\x7a\xdd\x2e\ +\x26\xc7\x47\x7a\x8b\x17\xcf\x3e\x67\xad\x5d\x41\x81\xa5\x0d\x45\ +\x1b\x11\x00\x40\xb1\xd4\xac\x66\xf6\xc1\xf6\x56\x10\x91\x41\x32\ +\x59\x43\xb5\x12\xa3\x56\x49\x11\x18\x30\xc6\xc1\x58\x8f\x62\xd1\ +\x10\x09\x12\x80\x77\x01\xbd\x4e\x07\xd6\x39\x44\x91\x42\x1c\x27\ +\x48\xd2\x04\x49\xec\x21\xa5\xe9\xa7\x78\x3b\x90\x10\x68\x8c\x36\ +\x50\x53\x31\x40\x80\x14\x02\xe5\x52\x8a\x5a\xad\x06\x67\x0d\xca\ +\x89\x02\xdb\x2e\xf2\xf6\x3c\xa8\x11\x07\xef\xbd\xee\xaf\x03\xb4\ +\xa1\x7a\x3f\xb0\x71\x01\xd0\x1f\xed\xeb\x2f\xb1\x14\x02\x62\x19\ +\x30\x33\x5e\xc1\xb6\xad\x9b\x90\xa6\x49\xbf\x5a\x38\xc3\x39\x86\ +\x8a\x12\x80\x04\xce\x9c\x3a\x83\x73\x27\xcf\xa2\xd5\xea\xc0\xf9\ +\x80\xc0\x97\x02\x45\x52\x16\x01\xa0\x48\x49\xdc\x79\xd7\x1d\xf8\ +\xe0\xe3\xef\xc6\xee\x3d\x7b\x30\x3a\x52\x43\xb9\x5c\x02\x33\xa3\ +\xd5\x6a\xe1\x3b\xdf\xf9\x0e\xce\x9c\x38\xd4\x2f\x2f\xb4\xf1\x69\ +\xc3\x02\x00\xeb\x2a\x99\x11\xd8\xc3\x68\x8d\x3c\xcf\xe1\x9c\x05\ +\x73\x5c\xa8\x00\x10\xd2\x58\xa1\x5c\x49\x21\x84\xc2\x59\x18\xe4\ +\xdd\x26\xf2\x5e\x07\x46\x5b\x18\xab\xa1\x8d\x83\xf3\x0e\x60\x20\ +\x8a\x22\x54\x2b\x15\x38\xb3\x07\xe3\x63\x75\x4c\x4d\x8c\x41\xa9\ +\x4b\x3f\x91\x94\x12\xa5\x52\x09\x23\x23\x35\x94\x4a\xe9\xf0\x94\ +\xf4\x1b\x37\xeb\xf3\xaf\xa1\x1b\x76\x5e\xc0\x5f\x47\xcc\x5c\xaa\ +\xd7\xeb\x93\x42\x88\x3b\x83\xf7\xa5\x28\x8e\x50\xab\x55\x51\xaf\ +\x8f\x20\x4d\x53\x08\x29\x40\x20\x08\x12\x88\x92\x18\x51\x14\xc1\ +\x1a\x8b\xf9\xf9\x8b\x68\xf7\xd5\x80\xb5\x0e\xd6\x15\xd3\xc4\x98\ +\x8b\x65\xa2\x04\x09\x58\x6b\x90\x26\x29\xa6\xa7\x67\x50\xa9\x54\ +\xd6\x57\x2f\x0f\x21\x20\xcf\x73\x2c\x2c\x2c\xe0\xdc\xb9\x73\x68\ +\x36\x57\x51\xad\x56\xcd\xf2\xf2\xca\x9f\x79\xef\x8f\x03\xc8\xae\ +\xf7\xef\xf2\x37\xa5\x8d\x2a\x01\x18\x40\x67\x79\x79\xe5\xc8\xe8\ +\xe8\xc8\x51\x06\xde\xee\x9c\x43\x9e\x6b\x68\x63\xfb\x13\x42\x71\ +\x59\xbf\x94\x4a\x61\xdb\xf6\xed\xb8\xb3\xd3\x06\x83\xb1\xbc\xb4\ +\x02\x5b\x4a\xe1\x9d\x07\x83\x21\x84\x44\x14\x45\x28\x95\x4a\xa8\ +\x55\x2b\x58\x58\xb8\x88\xa5\xa5\x45\x4c\x4c\x4c\x20\x8a\x8a\x3c\ +\x83\x7e\x11\x28\xd4\xeb\x75\x8c\x8c\x8c\xf4\xcf\xd3\x77\xd7\xaa\ +\xdb\x40\xb4\x51\x01\x20\x84\x10\x8d\xf1\xf1\xc6\x3d\xde\xfb\xbb\ +\x95\x52\x60\x06\x56\x56\x57\x71\xec\xf8\x31\xcc\x5f\x9c\x47\x12\ +\xc5\x50\x91\x42\x9a\x96\x30\x32\x32\x82\x7a\x7d\x04\xf5\x91\x51\ +\xec\xdc\xb9\x0b\x69\x92\xe2\xcc\x99\x33\x30\x5a\x43\x08\x81\x24\ +\x4d\x51\xaf\x8f\xa2\x31\x36\x86\x89\x89\x49\x4c\x4f\x4f\x63\xf3\ +\xe6\x59\x6c\xd9\xb6\x15\x2a\x52\x85\x71\x68\x0d\x96\x96\x96\x70\ +\xfc\xf8\x31\x1c\x3f\x7e\x1c\x2b\x2b\xcb\x70\xce\x21\x4d\x93\x55\ +\x66\xee\x62\x03\x7a\x00\xc0\xc6\x05\x80\x02\x30\x26\x88\x3e\xda\ +\xd3\x3a\xa9\x56\x2a\xa8\x56\x2b\x98\x9a\x9a\xc4\x96\xd9\x59\x8c\ +\x8e\xd6\x91\xa6\x29\x22\x15\x41\x29\x85\x4a\xa5\x82\x4a\xb5\x8a\ +\x6a\xa5\x86\x24\x4d\x30\xda\x68\x60\xcb\xd6\xad\xf0\xce\x23\x70\ +\x51\x4b\x68\x6c\x6c\x02\xb3\x5b\x66\x31\x3e\x3e\x81\x28\x8e\xc1\ +\x21\xc0\x68\x8d\xb3\x67\xcf\xa0\xd7\xeb\xa1\xb9\xda\xc4\x89\x93\ +\x27\xf0\xfc\x81\x03\x78\xe5\x95\x57\x30\x77\x6e\x0e\x8d\x46\x23\ +\x7f\xed\xb5\x43\xff\xc1\x7b\x7f\x1e\x40\x8e\xbf\xf3\x02\xae\x19\ +\x05\x00\x3d\x10\xbd\xce\xcc\x37\x3b\xe7\xd0\x6a\xb5\x31\x37\x77\ +\x0e\xbd\x5e\x86\xd1\xfa\x08\xca\xe5\x32\xd2\x34\x41\x9a\xa6\x18\ +\x19\xa9\xa3\x5e\xaf\x23\x1f\xc9\xe1\xac\xc3\xc9\x53\x27\xb1\xb4\ +\xb0\x84\x5e\x9e\xa3\xd3\xe9\xa0\x5a\xad\xe2\x23\x1f\xf9\x28\x66\ +\x36\x6d\x46\xb5\x52\x85\x75\x16\x79\x9e\x21\xcb\x33\x68\xad\xd7\ +\x6d\x84\x10\x02\xb4\x31\xe8\xf6\xba\xc8\xb2\x1c\x21\x70\x34\x35\ +\x35\x39\x32\x37\x77\x2e\xc6\xc6\x1b\x5a\x07\xb0\x71\x01\xe0\x42\ +\x08\x17\x97\x97\x57\x7f\x7f\xac\x51\xdf\x9b\xe5\xf9\x9e\x34\x78\ +\x94\xcb\x25\x6c\x99\xdd\x84\x99\x99\x19\xd4\xaa\x55\x44\x51\x84\ +\x28\x8a\x8b\xde\x5f\xad\x42\x0a\x89\xc3\xaf\xbf\x8e\x23\xaf\x1f\ +\xc6\xe2\xe2\x02\x9a\x6b\x6d\x74\xba\x3d\x4c\x4c\x4e\x60\x71\x69\ +\x09\xbd\x6e\x0f\xa3\xa3\x0d\x54\x6b\x35\x44\x51\xb4\x5e\x12\xce\ +\x5a\x8b\xd5\xd5\x55\x18\x6b\x71\xf4\xe8\x51\x54\x2a\x55\x24\x71\ +\x8c\x76\xbb\x2d\x27\x27\x27\x7f\x5a\x4a\x79\xc0\x7b\x7f\x18\x85\ +\x11\xb8\xa1\xa4\xc0\x46\x05\x00\x50\x94\x82\x63\x06\xba\x45\xa1\ +\x26\x8d\x66\x73\x0d\xf3\xf3\x0b\x90\x52\x01\x20\x8c\xd4\xaa\x10\ +\x52\x0e\xd5\x0b\x00\xac\x35\x10\x82\x90\x24\x29\x46\x46\x08\x23\ +\xf5\x3a\xc6\xc6\xc6\xb0\xb4\xb8\x88\xe3\xc7\x8f\x21\x8a\x14\x2a\ +\xd5\x2a\x4a\x69\x09\xbd\xac\x87\xd5\xd5\x15\xac\xae\xae\x62\x65\ +\x79\x19\x73\x73\x67\x91\xf5\x7a\x28\xa5\x29\x2a\xd5\x2a\x72\xad\ +\xa1\xb5\x2e\x03\x88\xf0\x77\x12\xe0\xda\xbe\xb7\x10\x62\x7a\x7c\ +\x7c\xec\xa3\x59\xd6\xbb\x7b\x90\xe3\xd7\xe9\xf6\x70\xfe\xc2\x05\ +\xe4\x5a\xa3\xb9\xda\x44\x7d\xb4\x8e\x4a\xa5\x82\x7a\xbd\x50\x01\ +\xb5\xda\x08\x66\x36\x6d\x42\x14\x27\x70\xd6\x22\xee\x1b\x7f\x13\ +\x13\x93\x18\x9f\x98\xc4\xd8\x58\xe1\xf7\x13\x01\x9d\x6e\x1b\x79\ +\x9e\x83\x48\x60\x74\x74\x14\x49\x9c\xc0\x58\x87\x73\xe7\x2e\x20\ +\x8a\xa2\x41\x79\x5a\x94\xcb\xd5\x3f\x0c\x61\x7e\x0e\x40\x0f\x1b\ +\xac\xf7\x03\x1b\x17\x00\x02\x40\x95\x08\xf7\x7a\xef\x91\xc4\x31\ +\x2a\x95\x32\x36\xcf\xcc\x60\xcb\x96\x2d\x98\x99\x99\x42\x63\xb4\ +\x81\x52\x39\x45\x12\x27\xa8\x54\xab\x28\x97\x2b\xa8\x54\xaa\x05\ +\x43\x1b\xe3\x58\x5e\x5a\x42\xbb\xdb\xc5\x85\xf9\x79\x9c\x38\x79\ +\x12\x49\x9c\xe0\x1d\x0f\x3e\x88\xd9\xd9\x59\x34\x1a\x63\x20\x22\ +\x68\x9d\x23\xcb\x32\xf4\x7a\x3d\x18\x63\x60\xb4\xc6\x5a\x6b\x0d\ +\xab\xcd\x26\x7a\xbd\x2e\xa6\xa7\xa7\xbb\x47\x8f\x1e\x7f\xde\x39\ +\xb7\x80\x62\x2d\x82\x0d\x47\x1b\x15\x00\x9e\x88\xd6\xac\x75\x4f\ +\xc7\x71\xbc\x0b\x04\xb2\xc6\xa2\xd9\x5c\x03\x09\x42\xaf\xd7\x45\ +\xad\xba\x88\x52\xb9\x8c\x72\xa9\x70\x03\x47\xea\x75\x54\xca\x15\ +\x2c\xaf\x2c\xe3\xf0\xe1\xa3\x98\x9b\x9b\xc3\xea\x6a\x13\x9d\x6e\ +\x07\x1c\x18\x7b\xf7\xee\xc3\x23\x8f\x3e\x0a\xa5\x14\x5a\xad\x35\ +\x78\xef\x10\x42\xb1\x66\x60\x1c\x45\xa8\xd5\x46\x30\x36\x3e\x81\ +\x7a\xbd\x8e\x28\x52\xf0\x3e\xe0\xc2\x85\x0b\xe5\xad\x5b\xb7\xdc\ +\x7e\xf2\xe4\xa9\xe7\x9c\x73\x27\x51\x0c\x2a\x6e\x28\x29\xb0\x61\ +\x01\xe0\xbd\x5f\x6c\xb5\xda\x4f\xd5\xeb\xb5\x3b\xad\xb5\x0f\x30\ +\x02\xd2\x72\x09\x33\x33\x33\xd8\x32\xbb\x19\x8d\xd1\x51\xa4\x49\ +\x0a\x15\x47\xa8\xf6\x25\x40\x9e\xe7\x78\xe3\xf8\x71\x1c\x3d\x72\ +\x18\x6b\xad\x36\x7a\xbd\x0c\xda\x18\x28\x29\xb1\xb2\xb2\x82\xd7\ +\x5e\x7d\x15\x5b\xb6\x6c\xc1\xe6\xcd\x9b\x51\xaf\xd7\xa1\xb5\xc6\ +\xda\xda\x1a\x9a\xcd\x26\x96\x96\x16\x71\xfe\xfc\x1c\xba\x9d\x0e\ +\x88\x08\x51\x14\xa1\xd7\xeb\x51\xaf\xd7\xfd\x11\x21\xc4\x93\x00\ +\x5e\x05\xd0\xbd\xde\x3f\xcc\xdf\x94\x36\x2a\x00\x48\x08\x91\x48\ +\x29\xab\x52\xca\xcd\x5a\x6b\x18\xe3\xd0\x6c\xae\xe2\xec\x59\x09\ +\xad\x0d\x26\xc6\xc6\x50\xa9\x94\x91\xa4\x09\x2a\x95\x0a\xaa\xd5\ +\x2a\x88\x8a\xa1\xdf\x91\xda\x08\xa4\x54\x18\x6b\x8c\xa1\x54\x2e\ +\x63\x6a\x6a\x0a\x37\xdf\xbc\x07\x9b\x37\x6f\x86\x35\xa6\x6f\x34\ +\x06\x48\xa9\xd0\x68\x34\x50\xad\xd6\xfa\x00\x32\x38\x7f\xee\x3c\ +\xaa\xd5\x1a\x94\x54\x20\x22\xa4\x69\xc9\xa2\x08\x02\x6d\xa8\x9e\ +\x3f\xa0\x8d\x0a\x00\x05\x60\xba\xd1\xa8\xff\x54\xab\xd5\xda\x22\ +\x84\x00\xd6\xb3\x79\x08\x51\xa4\x50\x2a\x97\x50\x1f\x19\x41\xb9\ +\x52\xc1\x68\xa3\x8e\x5a\xad\x8e\x52\x5a\xc2\xe4\xc4\x04\x76\xef\ +\xbe\x19\xc6\xe8\xc2\x13\x18\x6d\x60\x72\x62\x02\x3b\x77\xed\xc2\ +\xd6\x6d\xdb\x50\x2e\x57\x50\x44\x16\x8b\xe4\x0f\x6b\x0d\xb2\x2c\ +\xc3\xca\xca\x32\xce\x9f\x9f\xc3\xdc\xb9\x39\xac\xac\xac\x40\x1b\ +\x8d\x6a\xb5\xea\x85\x90\xbf\x11\x42\x38\x8d\xbf\x33\x02\xaf\x29\ +\x11\x00\x72\xce\x27\x83\x13\x42\x0a\x54\x2a\x15\x4c\x8c\x35\x30\ +\x31\x3e\x51\x0c\x0a\x95\x52\x48\x29\xd1\x8f\xd7\x83\x48\xa0\x52\ +\xad\xa0\x3e\x5a\xc7\xd2\xd2\x12\x16\x97\x16\x71\xe2\xc4\x09\x8c\ +\x36\x1a\xd8\xba\x7d\x3b\xd2\xb4\x04\x6b\x0d\x9a\xcd\x55\x64\xbd\ +\x1e\x3a\xdd\x0e\x3a\xed\x36\x3a\x9d\x2e\xce\x9f\x3f\x87\x83\x07\ +\x5f\xc3\xf1\x63\x47\xb1\xb8\xb0\x80\x3c\xcf\x31\x35\x35\xa5\x4f\ +\x9d\x3a\x33\xc7\xcc\x6d\x6c\xd0\x50\xf0\x86\x1d\x0d\x24\x22\x99\ +\xa6\xa9\x51\x4a\xdd\x1f\xbc\x2f\x2b\xa9\xa0\x84\x80\x90\x02\xcc\ +\x0c\x63\x8a\x9e\x9b\xe7\x1a\xd6\x5a\x38\xe7\xd0\xeb\xf6\x70\xe4\ +\xc8\x61\x3c\xf7\xdc\x77\xf0\xf2\x4b\x2f\xe3\xb5\x57\x5f\xc3\xe1\ +\x23\x47\xd1\x6e\xb7\xb1\x67\xcf\x2d\xd8\x7e\xd3\x4d\x90\x42\x20\ +\x70\x80\x20\x81\x24\x4e\x50\x1f\xad\x63\x64\xa4\x0e\xa9\x14\x96\ +\x96\x96\x70\xea\xf4\x69\x2c\x2e\x2d\x21\xcf\x73\x34\x9b\xcd\x68\ +\xcf\x9e\x3d\xb5\xc5\xc5\xa5\x97\x42\x08\x17\x00\x6c\xb8\x9c\xc0\ +\x8d\x0a\x00\x66\x66\xa3\xb5\xb1\x63\x63\x8d\xad\xd6\xf9\x5b\x4b\ +\xe5\x14\xd3\xd3\x93\xd8\xb5\x73\x17\xf6\xec\xde\x85\xd9\x2d\xb3\ +\x98\x98\x18\xc7\xd8\x68\x03\xe3\x13\x93\x7d\xd7\x0e\x38\x7e\xec\ +\x18\xe6\xce\xce\xa1\xd3\xe9\x42\x1b\x03\x06\x10\x45\x31\xd2\x24\ +\xc1\xcc\xcc\x26\x4c\x4f\x4f\x23\x4d\x53\xc4\x49\x02\x06\x23\xcf\ +\x35\x3a\x9d\x36\x16\x16\x16\x70\xe1\xc2\x79\x2c\x2f\x2f\xa1\xdb\ +\xed\xac\x83\xca\x39\xbb\xb9\xd7\xcb\xbe\x1c\x42\x38\x81\x42\x0d\ +\x6c\x28\xda\xa8\x2a\x80\x01\xe4\xde\xfb\x93\x2b\x2b\xcd\xdf\xdb\ +\xb6\x6d\xf6\x2e\x02\x76\x08\x92\x68\x77\xda\x98\xbf\x38\x8f\x56\ +\xbb\x85\x24\x4e\x90\x24\x09\x6a\x5a\xc3\x18\x03\xa5\x14\xa6\xa6\ +\xa6\xe0\xbc\x87\x20\x89\x72\xb5\x8a\xd1\xd1\x06\x26\x26\x26\x30\ +\xb3\x79\x33\xac\xb3\xe8\x74\x3a\x00\x01\xce\x39\x18\x53\xa4\x89\ +\x15\xb3\x86\x02\x00\x81\x52\xa9\x82\x91\x91\x51\x84\x00\x34\x1a\ +\x0d\x23\xa5\xfa\xea\xc5\x8b\x8b\x1b\xb2\xf7\x03\x1b\x38\x93\xa5\ +\x4f\xb1\x10\x62\x5b\xad\x56\x7b\xe8\xb6\x5b\x6f\xfe\xb9\xcd\x9b\ +\x37\xdd\xbd\x6d\xeb\x16\x4c\x8c\x8f\x21\x8a\xe2\x22\x3d\x5c\x4a\ +\x94\xcb\x65\x94\x4b\x15\x24\x69\x8a\xc0\x0c\x6b\x0c\x7a\xbd\x1c\ +\xad\x76\x1b\xcd\xb5\x35\xac\xac\xac\xe0\xe2\xc5\x05\x8c\x8f\x8f\ +\xe3\xce\x3b\xef\xc4\xea\xca\x0a\x96\x57\x96\xb1\xb2\xb2\x82\xb5\ +\xb5\x16\x3a\x9d\x36\xb4\x36\xeb\xf5\x85\x6b\xb5\x1a\x94\x92\x2f\ +\x3c\xff\xfc\x0b\xbf\xd9\xed\x76\x0f\x3a\xe7\x0e\x03\x58\xc0\x06\ +\xb4\x03\x36\x3a\x00\x08\x40\x22\x84\xd8\x12\xc7\xf1\xbd\x52\xca\ +\xff\x3e\x4d\xd3\x87\x07\x6e\x5f\xb9\x5c\x46\x12\x17\xd9\x40\x81\ +\x0b\xd7\x8e\x39\xc0\xb9\x4b\x0b\x47\x0c\xe6\x03\x02\x97\x17\x96\ +\xb8\x72\x3b\xa8\x0b\x6c\x8c\xf1\xad\x56\xeb\x4f\xd6\xd6\xd6\x7e\ +\xd7\x18\xf3\x72\x08\x61\x1e\x85\xe8\xdf\x70\xcc\x07\x36\xae\x0a\ +\x18\x10\x03\xc8\x43\x08\x67\x8c\x31\x26\x8a\x22\xef\x9c\x63\x6b\ +\xed\x23\x79\x9e\xaf\x57\x0c\x93\xaa\x18\x1c\xb2\xd6\x42\xeb\xc2\ +\x28\xb4\xd6\xae\x17\x97\xa4\xa2\x38\x04\x94\x52\x88\xa2\x08\x71\ +\x1c\x23\x8e\x63\x28\xa5\xa0\xb5\xee\x1b\x93\x39\x7a\xbd\x9e\xee\ +\x74\x3a\xff\xb1\xd7\xeb\xfd\xb1\x31\xe6\x45\x00\x8b\xd8\x80\xd1\ +\xbf\x61\xda\xa8\x46\xe0\x95\xe4\x99\xb9\xc7\xcc\x2d\x66\x3e\xaf\ +\x94\x9a\x8c\xa2\x68\x47\xbf\x5a\xc8\x3a\x73\x87\x57\x14\x1b\xee\ +\xe1\xc3\xf7\x14\x43\xc8\x11\x92\x24\xe9\xc7\x01\xec\x00\x38\x9d\ +\x56\xab\xf5\x6f\xbb\xdd\xee\x9f\x58\x6b\x87\x99\xbf\xa1\xe9\xad\ +\x02\x00\x00\x08\x03\x10\x38\xe7\xce\xc7\x71\x7c\x19\x08\x8a\x51\ +\xbe\xf5\x55\xc5\x00\x60\xbd\x92\x88\x94\x72\x9d\xf1\x03\x10\x08\ +\x21\x60\xad\x85\x31\x06\x5a\xeb\xe5\xe5\xe5\xe5\x7f\xd3\xe9\x74\ +\xbe\x68\xad\x7d\x19\xc0\x86\x9c\x04\x72\x35\x7a\x2b\x01\x00\x18\ +\x02\x81\x31\xe6\x7c\xa9\x54\x1a\x9f\x9c\x18\xdf\x1c\x98\x15\x80\ +\xf5\x14\xef\xe1\xa2\x8f\x42\x08\x28\xa5\xd6\xdb\x40\xf4\x13\x11\ +\x46\x46\x46\x1c\x33\x9f\x3d\x71\xe2\xc4\xff\xdd\xe9\x74\x9e\x74\ +\xce\x1d\x04\xd0\x44\xb1\xb2\xf8\x5b\x82\x36\xba\x0d\x70\x35\xb2\ +\x21\x84\x0b\xd6\xda\xef\xcc\xcf\xcf\xe3\x03\xef\x7f\x14\x6f\x7f\ +\xfb\xfd\x8f\x26\x49\x6a\x93\x24\x45\x92\xa4\x14\x45\x91\x50\x51\ +\x24\xa2\xa8\x98\x19\x34\x52\xab\xa1\x36\x52\x0f\x69\x9a\x86\x38\ +\x8e\xb9\xaf\x02\xd4\xb9\x73\xe7\x16\x3e\xf4\xa1\x0f\xfd\x5a\xb7\ +\xdb\x7d\xda\x39\x77\x04\x40\x1b\x1b\x6c\xf6\xef\x5f\x47\x6f\x35\ +\x09\x30\xa0\x75\x49\xf0\xea\x6b\x07\xcf\x6f\xdd\x32\x3b\xbe\x6d\ +\xdb\xb6\xdd\xe5\x72\x59\x56\x2a\x15\x51\x1b\xa9\x53\xa3\x51\xf8\ +\xff\x93\x53\x53\x98\x9c\x9c\x44\xa3\x31\x46\x95\x4a\x45\x24\x49\ +\x22\x95\x52\xf2\xdc\xb9\x73\x17\x3e\xf8\xc1\x0f\xfe\xca\xd1\xa3\ +\x47\x9f\xb6\xd6\x1e\x06\xd0\xc1\x5b\x8c\xf9\xc0\x5b\x17\x00\xc0\ +\x10\x08\x5e\x7c\xe9\xe5\xf3\xdb\xb7\x6f\x9b\x9a\x9c\x98\xb8\x49\ +\x48\x85\x28\x8e\x8a\x68\x5f\x7f\x52\x68\x1c\xc7\x00\x11\xf2\x7e\ +\x92\xe8\xa9\x53\xa7\x2e\x7c\xec\x63\x1f\xfb\x95\x63\xc7\x8e\xbd\ +\xa5\x99\x0f\x6c\xfc\x38\xc0\x7f\x09\x45\x42\x88\x19\xa5\xd4\x1d\ +\x3b\x76\xec\x78\xfb\xcc\xcc\xcc\xae\x24\x49\x6a\x51\x14\x55\x2a\ +\xe5\x72\x49\x45\x91\xec\x74\x3a\x99\xd6\x3a\xb3\xd6\x76\xd7\xd6\ +\xd6\x2e\x1e\x3b\x76\xec\xc5\x2c\xcb\x5e\xb4\xd6\x1e\xc7\x5b\x98\ +\xf9\xc0\xdf\x0e\x00\x00\x85\xad\x53\x53\x4a\x8d\x31\xf3\x08\x80\ +\x84\x88\x22\x22\x52\x44\x44\xfd\xca\x5e\x36\x84\x60\x89\xa8\x07\ +\x60\xd5\x7b\xdf\x44\x91\xeb\xff\x96\x65\x3e\xf0\xb7\x07\x00\x40\ +\x91\x47\x38\x68\x74\x45\x1b\x30\x39\xa0\x08\xea\x0c\x4a\xbd\x6d\ +\xd8\x00\xcf\x7f\x29\xfd\x7f\x10\xf8\xf3\x4c\xcc\x6e\xed\x5f\x00\ +\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ +" + +qt_resource_name = b"\ +\x00\x05\ +\x00\x6f\xa6\x53\ +\x00\x69\ +\x00\x63\x00\x6f\x00\x6e\x00\x73\ +\x00\x1e\ +\x01\xea\x7e\xa7\ +\x00\x47\ +\x00\x6e\x00\x6f\x00\x6d\x00\x65\x00\x2d\x00\x4d\x00\x65\x00\x64\x00\x69\x00\x61\x00\x2d\x00\x50\x00\x6c\x00\x61\x00\x79\x00\x62\ +\x00\x61\x00\x63\x00\x6b\x00\x2d\x00\x53\x00\x74\x00\x61\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\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\x09\ +\x06\x98\x83\x27\ +\x00\x63\ +\x00\x6c\x00\x6f\x00\x73\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x11\ +\x01\xa6\xc4\x87\ +\x00\x64\ +\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\ +\x00\x0a\ +\x05\xab\x56\x47\ +\x00\x70\ +\x00\x79\x00\x71\x00\x6f\x00\x64\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ +\x00\x14\ +\x0d\x9a\x02\xe7\ +\x00\x47\ +\x00\x6e\x00\x6f\x00\x6d\x00\x65\x00\x2d\x00\x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x2d\x00\x52\x00\x75\x00\x6e\x00\x2e\ +\x00\x70\x00\x6e\x00\x67\ +\x00\x10\ +\x0c\xbc\x2e\x67\ +\x00\x64\ +\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x6e\x00\x65\x00\x77\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\x09\ +\x06\xc7\x98\x67\ +\x00\x61\ +\x00\x62\x00\x6f\x00\x75\x00\x74\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\x09\x00\x00\x00\x02\ +\x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x00\x15\xb4\ +\x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ +\x00\x00\x00\xba\x00\x00\x00\x00\x00\x01\x00\x00\x1c\x49\ +\x00\x00\x00\x7a\x00\x00\x00\x00\x00\x01\x00\x00\x09\x20\ +\x00\x00\x01\x56\x00\x00\x00\x00\x00\x01\x00\x00\x86\x20\ +\x00\x00\x01\x28\x00\x00\x00\x00\x00\x01\x00\x00\x7b\x61\ +\x00\x00\x01\x02\x00\x00\x00\x00\x00\x01\x00\x00\x71\x4f\ +\x00\x00\x00\xd4\x00\x00\x00\x00\x00\x01\x00\x00\x5d\x0f\ +\x00\x00\x00\x52\x00\x00\x00\x00\x00\x01\x00\x00\x04\xbf\ +" + +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() \ No newline at end of file diff --git a/examples/qidle/qidle/main_window.py b/examples/pynotepad/pynotepad/main_window.py similarity index 75% rename from examples/qidle/qidle/main_window.py rename to examples/pynotepad/pynotepad/main_window.py index 3d4baab6..c67365c5 100644 --- a/examples/qidle/qidle/main_window.py +++ b/examples/pynotepad/pynotepad/main_window.py @@ -1,6 +1,7 @@ """ This module contains the main window implementation. """ +import weakref import os import platform import sys @@ -22,14 +23,33 @@ def __init__(self): super(MainWindow, self).__init__() # Load our UI (made in Qt Designer) self.setupUi(self) + self.tabWidget.register_code_edit(PyCodeEdit) self.dockWidget.hide() self.setup_recent_files_menu() self.setup_actions() self.setup_status_bar_widgets() self.on_current_tab_changed() + self.intepreter_group = QtWidgets.QActionGroup( + self.menuPython_interpreter) + for interpreter in get_interpreters(): + a = self.menuPython_interpreter.addAction(interpreter) + a.setCheckable(True) + a.setChecked(interpreter in Settings().interpreter) + self.intepreter_group.addAction(a) + + self.intepreter_group.triggered.connect(self.on_interpreter_toggled) self.interactiveConsole.open_file_requested.connect(self.open_file) self.styles_group = None + def on_interpreter_toggled(self, action): + interpreter = action.text() + for editor in self.tabWidget.widgets(include_clones=True): + editor.backend.stop() + editor.backend.start( + editor.backend.server_script, + interpreter=interpreter, args=editor.backend.args) + Settings().interpreter = interpreter + def setup_status_bar_widgets(self): self.lbl_interpreter = QtWidgets.QLabel() self.lbl_filename = QtWidgets.QLabel() @@ -46,13 +66,10 @@ def setup_actions(self): self.actionNew.triggered.connect(self.on_new) self.actionSave.triggered.connect(self.on_save) self.actionSave_as.triggered.connect(self.on_save_as) - self.actionClose_tab.triggered.connect(self.tabWidget.close) - self.actionClose_other_tabs.triggered.connect( - self.tabWidget.close_others) - self.actionClose_all_tabs.triggered.connect(self.tabWidget.close_all) self.actionQuit.triggered.connect( QtWidgets.QApplication.instance().quit) - self.tabWidget.currentChanged.connect(self.on_current_tab_changed) + self.tabWidget.current_changed.connect(self.on_current_tab_changed) + self.tabWidget.last_tab_closed.connect(self.on_last_tab_closed) self.actionAbout.triggered.connect(self.on_about) self.actionRun.triggered.connect(self.on_run) self.interactiveConsole.process_finished.connect( @@ -60,13 +77,15 @@ def setup_actions(self): self.actionConfigure_run.triggered.connect(self.on_configure_run) def _enable_run(self): - self.actionRun.setEnabled(self.tabWidget.currentWidget().file.path != '') - self.actionConfigure_run.setEnabled(self.tabWidget.currentWidget().file.path != '') + self.actionRun.setEnabled( + self.tabWidget.current_widget().file.path != '') + self.actionConfigure_run.setEnabled( + self.tabWidget.current_widget().file.path != '') def setup_recent_files_menu(self): """ Setup the recent files menu and manager """ self.recent_files_manager = widgets.RecentFilesManager( - 'pyQode', 'qidle') + 'pyQode', 'pynotepad') self.menu_recents = widgets.MenuRecentFiles( self.menuFile, title='Recents', recent_files_manager=self.recent_files_manager) @@ -88,11 +107,13 @@ def setup_editor(self, editor): :param editor: editor to setup. """ editor.cursorPositionChanged.connect(self.on_cursor_pos_changed) - editor.backend.start( - server.__file__, interpreter=sys.executable) - m = editor.modes.get(modes.GoToAssignmentsMode) - assert isinstance(m, modes.GoToAssignmentsMode) - m.out_of_doc.connect(self.on_goto_out_of_doc) + try: + m = editor.modes.get(modes.GoToAssignmentsMode) + except KeyError: + pass + else: + assert isinstance(m, modes.GoToAssignmentsMode) + m.out_of_doc.connect(self.on_goto_out_of_doc) def open_file(self, path, line=None): """ @@ -105,32 +126,41 @@ def open_file(self, path, line=None): """ editor = None if path: - index = self.tabWidget.index_from_filename(path) - if index == -1: - editor = PyCodeEdit(self) + interpreter, pyserver, args = self._get_backend_parameters() + editor = self.tabWidget.open_document( + path, None, interpreter=interpreter, server_script=pyserver, + args=args) + if editor: self.setup_editor(editor) - editor.file.open(path) - self.tabWidget.add_code_edit(editor) - self.recent_files_manager.open_file(path) - self.menu_recents.update_actions() - else: - self.tabWidget.setCurrentIndex(index) + self.recent_files_manager.open_file(path) + self.menu_recents.update_actions() if line is not None: - TextHelper(self.tabWidget.currentWidget()).goto_line(line) + TextHelper(self.tabWidget.current_widget()).goto_line(line) return editor - @QtCore.Slot() + def _get_backend_parameters(self): + """ + Gets the pyqode backend parameters (interpreter and script). + """ + frozen = hasattr(sys, 'frozen') + interpreter = Settings().interpreter + if frozen: + interpreter = None + pyserver = server.__file__ if interpreter is not None else 'server.exe' + args = [] + return interpreter, pyserver, args + def on_new(self): """ Add a new empty code editor to the tab widget """ - editor = PyCodeEdit(self) - self.setup_editor(editor) - self.tabWidget.add_code_edit(editor, 'New document %d.py') + interpreter, pyserver, args = self._get_backend_parameters() + self.setup_editor(self.tabWidget.create_new_document( + extension='.py', interpreter=interpreter, server_script=pyserver, + args=args)) self.actionRun.setDisabled(True) self.actionConfigure_run.setDisabled(True) - @QtCore.Slot() def on_open(self): """ Shows an open file dialog and open the file if the dialog was @@ -143,18 +173,16 @@ def on_open(self): self.actionRun.setEnabled(True) self.actionConfigure_run.setEnabled(True) - @QtCore.Slot() def on_save(self): self.tabWidget.save_current() self._enable_run() - self._update_status_bar(self.tabWidget.currentWidget()) + self._update_status_bar(self.tabWidget.current_widget()) - @QtCore.Slot() def on_save_as(self): """ Save the current editor document as. """ - path = self.tabWidget.currentWidget().file.path + path = self.tabWidget.current_widget().file.path path = os.path.dirname(path) if path else '' filename, filter = QtWidgets.QFileDialog.getSaveFileName( self, 'Save', path) @@ -164,7 +192,7 @@ def on_save_as(self): self.menu_recents.update_actions() self.actionRun.setEnabled(True) self.actionConfigure_run.setEnabled(True) - self._update_status_bar(self.tabWidget.currentWidget()) + self._update_status_bar(self.tabWidget.current_widget()) def setup_mnu_edit(self, editor): """ @@ -201,7 +229,7 @@ def setup_mnu_modes(self, editor): a.setCheckable(True) a.setChecked(mode.enabled) a.changed.connect(self.on_mode_state_changed) - a.mode = mode + a.mode = weakref.proxy(mode) self.menuModes.addAction(a) def setup_mnu_panels(self, editor): @@ -210,15 +238,19 @@ def setup_mnu_panels(self, editor): :param editor: """ for panel in editor.panels: + if panel.dynamic: + continue a = QtWidgets.QAction(self.menuModes) a.setText(panel.name) a.setCheckable(True) a.setChecked(panel.enabled) a.changed.connect(self.on_panel_state_changed) - a.panel = panel + a.panel = weakref.proxy(panel) self.menuPanels.addAction(a) - @QtCore.Slot() + def on_last_tab_closed(self): + self.widgetOutline.set_editor(None) + def on_current_tab_changed(self): """ Update action states when the current tab changed. @@ -226,22 +258,19 @@ def on_current_tab_changed(self): self.menuEdit.clear() self.menuModes.clear() self.menuPanels.clear() - editor = self.tabWidget.currentWidget() + editor = self.tabWidget.current_widget() self.menuEdit.setEnabled(editor is not None) self.menuModes.setEnabled(editor is not None) self.menuPanels.setEnabled(editor is not None) self.actionSave.setEnabled(editor is not None) self.actionSave_as.setEnabled(editor is not None) - self.actionClose_tab.setEnabled(editor is not None) - self.actionClose_all_tabs.setEnabled(editor is not None) self.actionConfigure_run.setEnabled(editor is not None) self.actionRun.setEnabled(editor is not None) - self.actionClose_other_tabs.setEnabled( - editor is not None and self.tabWidget.count() > 1) - if editor: + if editor is not None: self.setup_mnu_edit(editor) self.setup_mnu_modes(editor) self.setup_mnu_panels(editor) + self.widgetOutline.set_editor(editor) self._update_status_bar(editor) def _update_status_bar(self, editor): @@ -257,7 +286,6 @@ def _update_status_bar(self, editor): self.lbl_filename.clear() self.lbl_cursor_pos.clear() - @QtCore.Slot(QtWidgets.QAction) def on_style_changed(self, action): self._style = action.text() self.refresh_color_scheme() @@ -268,8 +296,7 @@ def refresh_color_scheme(self): style = style.replace('&', '') # qt5 bug on kde? else: style = 'qt' - for i in range(self.tabWidget.count()): - editor = self.tabWidget.widget(i) + for editor in self.tabWidget.widgets(): editor.syntax_highlighter.color_scheme = ColorScheme(style) def on_panel_state_changed(self): @@ -292,15 +319,15 @@ def on_about(self): Show about dialog """ QtWidgets.QMessageBox.about( - self, 'QIdle', - 'This QIdle application is an example of what you can do with ' + self, 'pynotepad', + 'This pynotepad application is an example of what you can do with ' 'pyqode.python.') def on_run(self): """ Run the current current script """ - filename = self.tabWidget.currentWidget().file.path + filename = self.tabWidget.current_widget().file.path wd = os.path.dirname(filename) args = Settings().get_run_config_for_file(filename) self.interactiveConsole.start_process( @@ -324,7 +351,7 @@ def on_process_finished(self): self.actionConfigure_run.setEnabled(True) def on_configure_run(self): - path = self.tabWidget.currentWidget().file.path + path = self.tabWidget.current_widget().file.path args = Settings().get_run_config_for_file(path) text, status = QtWidgets.QInputDialog.getText( self, 'Run configuration', 'Script arguments:', @@ -333,9 +360,8 @@ def on_configure_run(self): args = text.split(' ') Settings().set_run_config_for_file(path, args) - @QtCore.Slot() def on_cursor_pos_changed(self): - editor = self.tabWidget.currentWidget() + editor = self.tabWidget.current_widget() if editor: l, c = TextHelper(editor).cursor_position() self.lbl_cursor_pos.setText( diff --git a/examples/qidle/qidle/settings.py b/examples/pynotepad/pynotepad/settings.py similarity index 85% rename from examples/qidle/qidle/settings.py rename to examples/pynotepad/pynotepad/settings.py index 979b2b43..788cd70e 100644 --- a/examples/qidle/qidle/settings.py +++ b/examples/pynotepad/pynotepad/settings.py @@ -9,11 +9,14 @@ class Settings: def __init__(self): - self.settings = QSettings('pyqode', 'qidle') + self.settings = QSettings('pyqode', 'pynotepad') @property def interpreter(self): - return self.settings.value('interpreter', '') + interpreter = self.settings.value('interpreter', '') + if not os.path.exists(interpreter): + interpreter = '' + return interpreter @interpreter.setter def interpreter(self, value): diff --git a/examples/qidle/qidle/utils.py b/examples/pynotepad/pynotepad/utils.py similarity index 71% rename from examples/qidle/qidle/utils.py rename to examples/pynotepad/pynotepad/utils.py index 5bda7447..dba0b34d 100644 --- a/examples/qidle/qidle/utils.py +++ b/examples/pynotepad/pynotepad/utils.py @@ -15,6 +15,8 @@ def get_interpreters(): for path in paths: if 'python' in path.lower(): if 'scripts' in path.lower(): - path = os.path.abspath(os.path.join(path, os.pardir)) - executables.add(os.path.join(path, 'python.exe')) + path = os.path.abspath(os.path.join(path, os.pardir)) + executable = os.path.join(path, 'python.exe') + if os.path.exists(executable): + executables.add(executable) return executables diff --git a/examples/qidle/pyuic.cfg b/examples/pynotepad/pyuic.cfg similarity index 79% rename from examples/qidle/pyuic.cfg rename to examples/pynotepad/pyuic.cfg index 8475eb8b..eac96249 100644 --- a/examples/qidle/pyuic.cfg +++ b/examples/pynotepad/pyuic.cfg @@ -2,11 +2,11 @@ "files": [ [ "forms/*.ui", - "qidle/forms" + "pynotepad/forms" ], [ "forms/*.qrc", - "qidle/forms" + "pynotepad/forms" ] ], "pyrcc": "pyqode-rcc", diff --git a/examples/qidle/readme.rst b/examples/pynotepad/readme.rst similarity index 73% rename from examples/qidle/readme.rst rename to examples/pynotepad/readme.rst index baadd738..75d6de72 100644 --- a/examples/qidle/readme.rst +++ b/examples/pynotepad/readme.rst @@ -5,14 +5,12 @@ It uses *most of the pyqode.python features* and comes with packaging scripts to show you how to setup a pyqode.python application and how to distribute it ( especially on Windows with cx_Freeze) -This application is a clone of idle, it provides basic functionality such -as writing and running a script, code completion, on the fly pep8/pyflakes -checkers, a python console (based on IPython), quick documentation panel, file -strucuture tree view,... +This application provides basic functionality such as writing and running a +script. To **run** the example, just run:: - python qidle.py + python pynotepad.py To **install** the package *on linux*, just run:: diff --git a/examples/qidle/setup.py b/examples/pynotepad/setup.py similarity index 80% rename from examples/qidle/setup.py rename to examples/pynotepad/setup.py index 0bdb3b61..59014c07 100644 --- a/examples/qidle/setup.py +++ b/examples/pynotepad/setup.py @@ -1,6 +1,6 @@ #!/usr/bin/env python # -# Copyright (c) <2013-2014> Colin Duquesnoy +# Copyright (c) <2013-2016> Colin Duquesnoy # # This file is part of OpenCobolIDE. # @@ -17,7 +17,7 @@ # OpenCobolIDE. If not, see http://www.gnu.org/licenses/. # """ -Setup script for qidle +Setup script for pynotepad You will need to install PyQt4 on your own. """ @@ -43,7 +43,7 @@ def read_version(): """ Reads the version without self importing """ - with open("qidle/__init__.py") as f: + with open("pynotepad/__init__.py") as f: lines = f.read().splitlines() for l in lines: if "__version__" in l: @@ -64,27 +64,27 @@ def is_run_as_root(): data_files = [] if sys.platform == "linux" and is_run_as_root(): - data_files.append(('/usr/share/applications', ['share/qidle.desktop'])) - data_files.append(('/usr/share/pixmaps', ['share/qidle.png'])) - data_files.append(('/usr/share/qidle', ['libraries.zip'])) + data_files.append(('/usr/share/applications', ['share/pynotepad.desktop'])) + data_files.append(('/usr/share/pixmaps', ['share/pynotepad.png'])) + data_files.append(('/usr/share/pynotepad', ['libraries.zip'])) setup( - name='qidle', + name='pynotepad', version=read_version(), packages=find_packages(), - keywords=["qidle editor text source code"], + keywords=["pynotepad editor text source code"], data_files=data_files, - url='https://github.com/pyQode/pyqode.core/examples/qidle', + url='https://github.com/pyQode/pyqode.core/examples/pynotepad', license='MIT', author='Colin Duquesnoy', author_email='colin.duquesnoy@gmail.com', - description='A simple qidle based on pyQode', + description='A simple pynotepad based on pyQode', long_description=long_desc, zip_safe=False, install_requires=requirements, cmdclass=cmdclass, - entry_points={'gui_scripts': ['qidle = qidle:main']}, + entry_points={'gui_scripts': ['pynotepad = pynotepad:main']}, classifiers=[ 'Development Status :: 5 - Production/Stable', 'Environment :: X11 Applications :: Qt', diff --git a/examples/pynotepad/share/qidle.desktop b/examples/pynotepad/share/qidle.desktop new file mode 100644 index 00000000..e7fe4f24 --- /dev/null +++ b/examples/pynotepad/share/qidle.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=pynotepad +Comment=pynotepad, idle made with pyQode +Exec=pynotepad +Terminal=false +Type=Application +Icon=/usr/share/pixmaps/pynotepad.png +Categories=Development;IDE; diff --git a/examples/qidle/share/qidle.ico b/examples/pynotepad/share/qidle.ico similarity index 100% rename from examples/qidle/share/qidle.ico rename to examples/pynotepad/share/qidle.ico diff --git a/examples/pynotepad/share/qidle.png b/examples/pynotepad/share/qidle.png new file mode 100644 index 00000000..2008f921 Binary files /dev/null and b/examples/pynotepad/share/qidle.png differ diff --git a/examples/qidle/forms/Gnome-Media-Playback-Start.png b/examples/qidle/forms/Gnome-Media-Playback-Start.png deleted file mode 100644 index 12abd421..00000000 Binary files a/examples/qidle/forms/Gnome-Media-Playback-Start.png and /dev/null differ diff --git a/examples/qidle/forms/Gnome-System-Run.png b/examples/qidle/forms/Gnome-System-Run.png deleted file mode 100644 index d7fa492c..00000000 Binary files a/examples/qidle/forms/Gnome-System-Run.png and /dev/null differ diff --git a/examples/qidle/forms/about.png b/examples/qidle/forms/about.png deleted file mode 100644 index 3763a5d8..00000000 Binary files a/examples/qidle/forms/about.png and /dev/null differ diff --git a/examples/qidle/forms/close.png b/examples/qidle/forms/close.png deleted file mode 100644 index f79b968d..00000000 Binary files a/examples/qidle/forms/close.png and /dev/null differ diff --git a/examples/qidle/forms/document-new.png b/examples/qidle/forms/document-new.png deleted file mode 100644 index e3cccc48..00000000 Binary files a/examples/qidle/forms/document-new.png and /dev/null differ diff --git a/examples/qidle/forms/document-open.png b/examples/qidle/forms/document-open.png deleted file mode 100644 index d0376577..00000000 Binary files a/examples/qidle/forms/document-open.png and /dev/null differ diff --git a/examples/qidle/forms/document-save-as.png b/examples/qidle/forms/document-save-as.png deleted file mode 100644 index c57ea6e0..00000000 Binary files a/examples/qidle/forms/document-save-as.png and /dev/null differ diff --git a/examples/qidle/forms/document-save.png b/examples/qidle/forms/document-save.png deleted file mode 100644 index 6394b325..00000000 Binary files a/examples/qidle/forms/document-save.png and /dev/null differ diff --git a/examples/qidle/forms/pyqode.png b/examples/qidle/forms/pyqode.png deleted file mode 100644 index c838a4e4..00000000 Binary files a/examples/qidle/forms/pyqode.png and /dev/null differ diff --git a/examples/qidle/qidle/forms/resources_rc.py b/examples/qidle/qidle/forms/resources_rc.py deleted file mode 100644 index 7694b130..00000000 --- a/examples/qidle/qidle/forms/resources_rc.py +++ /dev/null @@ -1,3590 +0,0 @@ -# -*- coding: utf-8 -*- - -# Resource object code -# -# Created: Mon Aug 11 13:13:55 2014 -# by: The Resource Compiler for PyQt (Qt v5.3.1) -# -# WARNING! All changes made in this file will be lost! - -from pyqode.core.qt import QtCore - -qt_resource_data = b"\ -\x00\x00\x0b\x6c\ -\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\x0b\x33\x49\x44\x41\x54\x78\x5e\xed\x59\x0b\x6c\x55\xf5\ -\x19\xff\x7d\xff\xff\xbd\x3c\xca\x4b\x28\x8a\x26\xac\x96\x96\x3e\ -\x28\x2d\xb4\xbc\x4a\x2b\x48\x41\x05\xc3\xd0\x84\x6c\xa8\x8b\x0f\ -\x9c\x2f\x14\x8d\x48\xa1\x0f\xab\x48\x1a\x14\xb8\x7d\x58\x5a\x70\ -\x8a\x8b\x89\xe0\x16\x17\xb6\x64\xc9\x1c\x26\x8b\xce\x22\xc8\x00\ -\x1d\xa0\x40\x6b\x69\x91\x47\xc5\x17\x13\x44\x81\x5b\xe0\xde\x73\ -\xfe\xfb\xf6\xa5\xa7\x3d\x3b\xbb\xf7\xd2\x4a\x75\x59\xb2\x2f\xfd\ -\x7a\xfe\xe7\x42\xef\xf9\xfd\xbe\xf7\xff\x7f\xc8\x18\x83\xff\x65\ -\x51\xf8\xef\xca\xff\x09\xf8\xd0\x03\x42\x2c\x63\xc7\xe7\x5e\x67\ -\x14\xc6\x93\xb1\x33\xa0\x54\x06\x01\xe9\x00\xf9\x89\xa8\x8d\x14\ -\x82\x64\x28\x48\x8a\x1a\x08\xb4\x15\x64\xde\xfd\x60\xfb\xf6\x46\ -\xd3\x03\xf1\x7b\x59\x39\x30\x36\x37\x77\x04\x6c\xcc\x27\xa2\xf9\ -\x04\x24\x82\x08\xc4\x4a\x60\x91\x35\x40\x20\xcf\x5a\x08\x83\x40\ -\x5f\x13\x99\x57\x6d\xa5\x6a\x77\xd6\xd7\x1f\xff\x31\x09\x08\x70\ -\x32\xaa\x8e\x08\x3f\x15\x2c\x10\xe0\xe8\x17\xd7\x17\x89\x89\x23\ -\x30\x64\xf0\x15\x18\x38\x60\x00\xfa\xf7\xef\x2f\x80\xcf\x9d\x3b\ -\x87\xb3\x67\xcf\xe2\x9b\xd3\xdf\xe2\x58\x6b\x2b\xce\xb7\xb5\x41\ -\x48\x41\xc8\x84\x0d\xd1\xef\xfc\xb6\x0e\xd4\xd7\xff\xe5\xc0\x0f\ -\x4a\xe0\xb6\xdb\x6e\xd3\x2d\xad\xad\x8b\x09\xaa\x9c\x08\x71\x04\ -\xc2\x80\x81\x03\x31\x61\x5c\x0e\x46\x26\x27\xe3\xea\x61\xc3\x84\ -\x88\x88\xd0\x72\x44\x3c\xd0\x21\x5f\x9d\x38\x81\xc3\x47\x8e\xe2\ -\xa3\x8f\x3e\xc2\x99\x73\x67\x21\xfe\x20\x84\x0c\xd1\xf2\xe9\xf9\ -\xf9\x81\xe5\xcb\x97\xdb\x3d\x4e\x60\xc2\xd4\xa9\x09\x26\x6c\xff\ -\x91\x08\xe3\x88\x08\xf1\x83\x87\x20\x37\x77\x22\x32\xd2\x47\x41\ -\x6b\xdd\x81\x96\xdc\xbf\xc9\xbb\x96\x95\xf3\x03\xcb\xb6\xd1\xdc\ -\xdc\x8c\xdd\x7b\xf6\x88\x77\x88\xc0\x4a\x5b\xc2\xc0\xdd\xf5\x6f\ -\xbe\x79\xbc\xc7\x08\x4c\x9e\x3c\x2d\xc5\xd2\xd6\xdb\x44\x94\xa0\ -\x48\x21\x27\x27\x1b\xf9\xb9\xb9\xd0\x3e\x0d\x81\xd4\x05\xc0\xb2\ -\x72\xaf\x3b\x0b\x00\x2c\xcb\xc2\xdf\x77\xef\xc6\xfe\x03\x0d\x30\ -\x30\x20\xa2\x93\xda\xb6\xa7\x6f\xde\xbc\x79\xff\x65\x13\xc8\xcf\ -\x9f\x96\x65\x69\xfb\x2d\x22\x35\xac\x5f\x5c\x1c\x6e\xbc\x61\x06\ -\xae\xb9\xfa\x1a\x10\x10\x19\x58\x2c\xc0\x44\x31\xd7\x27\x38\xb4\ -\xb6\xbe\xb7\x0d\x6d\x6d\xe7\x41\x44\x5f\x29\x9f\x35\xf5\x8d\x3f\ -\xbc\xd1\xf2\xbd\x09\x4c\x9e\x3e\x7d\x38\xd9\xe6\x43\x02\xe2\xfb\ -\x71\x42\xde\x3c\xf3\x26\x49\x4e\x80\x60\xdb\x16\x4e\x9d\x3c\x89\ -\xf8\xf8\xa1\x2e\x4f\x38\x16\xf7\x80\x94\x2b\x22\xae\xdb\x82\x41\ -\xf4\xe9\xd3\x07\x4a\x6b\x21\x73\x86\x93\x7d\xcb\xd6\x77\xf9\x73\ -\x49\xf4\x56\x68\x3d\xf5\x4f\x9b\x36\xb5\x76\x9b\x00\x51\xb9\xca\ -\x9b\xb6\xe5\xaf\x8a\xa8\x80\xab\x09\x6e\x98\x5e\x80\x7e\xfd\xa4\ -\xaa\xc0\xb6\x2c\xec\xfe\xe0\x03\x4c\x9d\x32\x05\x5b\xb7\x6d\xc3\ -\xc4\xdc\xc9\xf0\x09\x89\xd8\x96\xf6\x12\xda\xbf\x6f\x1f\x86\x0e\ -\x19\x82\x23\x47\x8f\x22\x2f\x3f\x5f\x0c\x41\x20\x04\xb9\x4a\xbd\ -\xf7\xb7\xed\x42\x82\x88\xf6\xf8\x80\x49\x9b\x36\x6d\xb2\xba\x45\ -\x60\xca\x8c\x19\x4f\x2a\x52\x2b\x95\x56\x98\x31\xad\x00\x83\x06\ -\x0d\x14\x18\xc6\xd8\xd8\xcb\xf1\xfa\xc8\xc3\x0f\x73\x6e\x4c\xc6\ -\xce\x9d\x3b\xf1\xab\x17\x5f\xc4\xf8\x89\x13\x99\x84\xcf\x6d\x5d\ -\x50\xe7\x8d\x97\x0c\x1a\x1a\x1a\x30\x36\x2b\x0b\xf7\xdf\x7f\xbf\ -\x7c\xc7\xfa\x97\x5f\x46\xee\x64\x31\x84\x10\x3d\x73\xe6\x0c\x76\ -\xf0\xe7\xb6\x31\x20\x50\xd1\xef\x5f\x7f\xbd\xaa\xcb\x04\xa6\xcf\ -\x9a\x95\x69\xdb\xf6\x1e\x02\xf9\xb3\x32\x33\x91\x78\x6d\x82\xe0\ -\xe0\xcf\xb0\xef\xc3\x0f\xb1\x70\xe1\x42\xe4\x31\x78\x47\x76\xed\ -\xda\x85\xb5\xeb\xd6\x21\x67\xfc\x78\x2f\x89\x88\x5e\x68\xfa\xf8\ -\x63\x64\x8f\x19\x83\x07\x1e\x78\xc0\xc1\x21\x60\xd7\xaf\x5f\x8f\ -\x09\x93\xd8\x10\xda\x27\x2c\x3f\xfb\xfc\x73\xa9\x52\x44\x14\xb4\ -\x95\xce\xdc\xb4\x71\xe3\x91\xae\x11\x98\x39\xeb\x35\x22\xba\x6b\ -\x68\xfc\x10\xe4\x64\xe7\x80\x08\x62\x89\x06\x76\xf9\x63\x8f\x3e\ -\x8a\xbc\xbc\x3c\x78\x44\x48\xd4\xd6\xd5\x21\x3b\x27\x07\x9a\x49\ -\x78\x2b\x92\x93\x18\x2d\x4d\x07\x31\x2e\x27\x47\xc0\x7b\x44\x3c\ -\xf1\xd2\xfa\x97\x30\x8e\x0d\xa1\x85\x84\x78\x0a\xa7\xbf\xfd\x16\ -\x44\xf4\xe7\xdf\x6e\xd8\x78\xcb\x25\x09\x4c\x9f\x3d\x7b\xb8\x36\ -\xe6\x08\x11\xf9\xf8\x41\xd2\x4d\x09\xc0\xe9\x6f\xbe\x41\x7a\x6a\ -\xaa\xe7\xc1\x1e\x00\xff\x22\x51\x5b\x8b\xac\xb1\x63\x3b\x3c\xd1\ -\xc1\x83\x08\x9f\xb4\x1c\x12\xf0\x0f\x3d\xf8\x20\xa2\xc9\x2b\xaf\ -\xbc\x82\x63\x9f\x7e\x8a\xf8\xa1\xf1\x72\xdf\xd6\x16\x44\x43\x63\ -\xa3\x40\x25\x9f\x9d\xbc\xf1\xd7\xec\x85\x58\xd3\x68\x2f\x60\x91\ -\x52\xda\x17\x1f\x1f\x8f\x3e\xbd\x7b\x23\x1c\x0a\x21\x1c\x0e\x23\ -\x8e\x89\xbc\xf5\xf6\xdb\xd8\xb1\x63\x47\xf4\xaa\xc5\xbd\xe1\x89\ -\x45\x8b\x24\xcc\x2e\x5c\xb8\x00\x8b\xff\x2e\x6c\xb1\x86\x2d\x34\ -\x37\x35\x21\x87\x89\xc5\x00\x2f\x1e\x78\x67\x4b\x3d\x77\xf7\x01\ -\xf2\xb7\xdc\x1f\xd0\xbb\x57\x6f\x0c\x1e\x3c\x18\x5a\x2b\xd2\xf0\ -\xcf\x8f\x39\x8d\x12\xcb\xac\x39\x73\xee\x55\x44\xb8\xfa\xaa\xab\ -\xf8\xe1\x16\xc8\x15\xbb\x23\xd3\x52\xf1\x7c\x4d\x0d\x96\x10\x49\ -\x02\x47\x92\x5c\x26\x51\xb8\x78\x31\xaa\x9e\xaf\x46\x06\xe7\x8f\ -\x4f\x6b\x1c\x3d\x7c\x04\xe3\x39\x2c\x16\x2c\x58\x80\x28\x22\x21\ -\x58\xb7\xb6\x0e\x63\xb2\xb3\x61\x8c\x61\xf0\xb6\x3c\x98\x58\xaf\ -\x1c\x7a\xa5\xcc\x52\x44\x32\x38\x96\x1b\x96\x88\x21\x74\xf3\xad\ -\xb7\x8e\x66\xa2\x07\xfc\x3e\x3f\xd2\xd2\xd2\x40\x10\x71\x4f\x90\ -\xb0\x8d\x8d\x43\x07\x9b\xb1\x74\xc9\x12\x21\x11\x15\xd0\xfb\xef\ -\xa3\xba\xba\x1a\x71\xfd\xe2\x30\x69\xc2\x44\x49\xfc\x58\x96\x5f\ -\xc3\xa1\x97\x39\x26\x0b\x5a\x2b\x57\xe2\x93\xb3\xe6\x52\x7b\x18\ -\x36\x93\x22\x85\xa9\xeb\x5f\x58\xff\x5e\x44\x0f\xf4\x52\x6a\x9a\ -\x51\x0a\xfd\x07\xf4\x17\x17\x3a\x01\x4c\x1d\xdf\x27\x6b\x24\x8d\ -\x4c\x46\x45\x55\x25\x8a\x96\x16\x21\x2f\x9a\x27\x26\x4d\x12\x92\ -\x7b\xf7\xee\x15\xcb\xc7\x02\xcf\x5e\x65\x6f\x65\x00\xc6\x86\x65\ -\x19\xd7\x33\x3b\x9b\x62\x7f\xee\x41\x67\x79\xf0\x03\xa9\xf1\x00\ -\x22\x13\x80\x4f\x5f\xaf\xdb\x2d\x1d\x62\x02\x8a\x08\x70\x80\xbb\ -\x89\xb0\x8c\x48\x4a\x42\x65\x65\x25\x8a\x8b\x8b\x38\xf6\x23\x93\ -\x98\xc4\x24\x58\x63\x86\x4d\x75\xcd\xf3\x48\x1f\x95\x2e\xf7\x61\ -\xdb\x06\xc1\xbb\x6f\x00\x9c\x18\xd1\x4a\x81\x88\x32\xa2\xe6\x80\ -\x4f\xe9\xd1\x44\x40\x90\x33\x3f\x7c\x22\x24\xc9\xc3\xd5\xa4\xd3\ -\xa5\xf2\x43\x1d\x9d\x34\x21\x31\x11\x81\x40\x05\x4a\x4b\x4a\x24\ -\xf6\xbb\x21\x02\xbe\x92\xbd\x98\x9a\x9e\x26\xf7\x96\x6d\x39\x46\ -\xea\x34\x18\xc9\xc4\x2a\x4d\x2d\x1c\x0e\x39\xe3\x46\x74\x02\x4a\ -\xab\xb8\x76\xd7\x49\xd3\x3a\x75\xea\x14\xbb\xae\x1f\x7a\xf7\xe9\ -\x0d\x82\x02\x51\x67\x4d\x77\xdc\x3b\x9c\x9b\xdc\xca\xd5\xab\x50\ -\x56\xfa\x64\x97\x49\xbc\xcf\xf9\x11\xa8\xac\x40\x4a\x6a\x0a\x0c\ -\x8c\x54\x1b\x77\xd3\x73\x4a\xef\xc5\x8b\x21\x9c\x3f\xdf\x06\xc1\ -\x26\xd6\x97\xe7\xa6\x47\x25\xa0\x85\xc0\xbf\x5b\x3a\xc8\x5f\x70\ -\xe1\xe2\x45\xf4\xea\xe5\x47\x2f\x7f\x2f\x90\x52\xde\xed\x21\x7e\ -\x92\xd0\x4e\xe2\xc9\x32\x89\xfd\x4b\x81\x5f\x1d\x58\x8d\x11\xc9\ -\x23\x04\x3c\x27\xa6\x3b\xbf\x44\x38\x7c\xa5\x7c\x0b\x0f\x45\x0e\ -\x16\xc7\x78\xfe\x58\x04\xfa\xc2\xb8\xff\xb3\x5c\x45\x43\xa1\xb0\ -\xf4\x03\x9f\xd6\xd0\xac\x8a\x55\xa9\xce\x8a\xc1\xe4\x65\x87\x25\ -\x04\x2e\x21\xc6\x38\xc0\xc5\xf2\x72\xdf\x3e\xaa\x88\x12\x91\x58\ -\x9c\xc5\x83\x45\xd6\x6d\x51\x3b\xf1\x5d\xf7\xce\xff\x07\x11\x86\ -\xba\xad\xeb\x4d\x28\xef\xc6\x5d\x29\xc2\x97\x9f\x7f\x89\x5b\xe7\ -\xdc\x22\x5d\xba\xab\x21\xf4\xdc\xca\xe7\x70\x6d\xd2\xb5\x50\xa4\ -\x3c\x20\x3d\x87\x02\x82\x9e\xdc\x5e\x3f\xbc\xfa\xb9\x40\x72\x14\ -\x0f\x50\x13\x40\x53\xa8\x8b\xa7\x0b\x30\xc0\x17\x9f\x7d\x81\x79\ -\x3f\xfb\x39\xee\xb9\xe7\x1e\x74\x4d\xa4\x3a\x49\xb8\xad\x0a\xac\ -\xe2\x6a\x96\x08\xa5\x3c\x24\x62\x19\x0f\x14\x8c\x1e\x42\x4a\x37\ -\x82\x98\x00\x58\xa2\x90\x20\x57\x35\x3a\xde\xfa\x29\xee\xbc\xf3\ -\x2e\xdc\x71\xfb\xed\xe8\xa6\x48\xc2\x97\x16\x97\xa2\x82\x93\x39\ -\x69\xe4\x08\x29\x91\x5d\xf2\xba\xa2\x86\x18\x55\x48\x37\xba\x2b\ -\x81\x1b\xac\x7b\x0d\x18\x06\x7f\x1c\xf7\xfd\xf2\x3e\xcc\x9d\x3b\ -\x37\x66\xa8\xb0\x44\xeb\x05\xd2\xc9\x8b\x8a\x8a\xa4\x9f\xa4\xa4\ -\x8d\x94\xdc\xf2\x3e\xdf\xbb\x56\x84\xad\x51\x87\x39\xad\x69\xb7\ -\xd2\x4a\xac\xc1\x57\x51\xad\x34\xb4\xb3\x16\x57\x43\xc0\x2f\x78\ -\x68\xc1\x25\xc1\xaf\xe2\xca\xb4\x3a\xb0\x4a\xd6\xd1\x24\x6f\x72\ -\x1e\x8a\x8b\x8a\x79\x52\xfd\xc4\x31\xa2\x3c\x87\xc9\x08\x06\xef\ -\x5a\x01\xef\x46\x4d\x62\x62\x79\xe4\xd1\x47\x0e\x43\x51\x22\x81\ -\xdc\xe5\xad\xa3\x5a\x1c\x3b\x7a\x0c\x8f\x2d\x7c\x0c\x33\x67\xce\ -\x8c\xd9\xa4\x02\x15\xab\x39\x34\x92\x20\x59\x77\xe8\x30\x4a\x8a\ -\xa5\xd9\xc5\x1c\x29\xaa\x79\x00\x1c\x95\x91\x26\x60\x09\x11\xaa\ -\x21\xe8\xeb\xa7\xca\x9e\xb9\x0a\x80\x89\xe8\x01\xc3\xa2\xfd\x7a\ -\x83\xb0\xd6\xca\x6d\x0d\xb0\x08\xf8\xc2\x27\x0a\x63\x82\xdf\xb9\ -\x6b\x27\xc7\x75\x40\x9a\x94\xdf\xef\x97\xfe\x91\x96\x9e\x22\x5d\ -\x97\x89\x81\x25\x6a\x38\x15\x2e\x2e\xc4\xc1\xa6\x66\x01\xef\x78\ -\x5d\x39\x58\x94\xe6\x7b\x7a\x55\xc0\xc7\x3c\xdc\xf5\x61\x83\xb6\ -\xf5\x33\x00\xc8\x6d\x81\x60\x30\x88\xd9\x37\xcf\x46\x41\x41\x41\ -\x0c\x2b\xee\x40\x55\x55\x15\x52\xd3\x52\x84\xbc\xe3\x39\xf0\x3a\ -\x7d\x54\x2a\xaa\xaa\xab\xb0\xa4\x30\xfa\x14\xcb\x3b\x3d\xd9\x81\ -\x1d\x6c\xf9\x98\xc7\x98\x2b\x9c\xce\xeb\x44\x47\x98\x8c\xaf\xb6\ -\x4b\x5b\xca\xc2\xa5\x85\x6f\x90\xc2\x1c\xb8\xdc\x68\xdb\x86\xe7\ -\xfa\xa3\x28\x2c\x2c\xc4\x75\xf9\xd7\x45\x0a\x01\x06\xf8\xaf\xd9\ -\x26\x55\x2c\x46\x20\x6f\xf5\x92\xb9\xa6\xa9\xb1\x89\x2d\x1d\x91\ -\x84\x6c\x96\xd6\xae\xab\x43\x66\x56\x86\x78\xdd\x23\xbf\x29\x29\ -\x2a\xbb\xbb\x4b\xc7\xeb\x9a\xf4\xe3\x50\x98\x41\x84\x38\xa7\x91\ -\x68\x0d\x8c\x4c\x49\x46\xcd\x9a\x1a\x01\x94\x9f\x9f\xef\x89\xdf\ -\x2a\x99\x2a\x19\x7c\xb4\xea\x25\xc4\x46\x33\xb8\x35\xb5\x35\x78\ -\x02\x8b\x85\x84\x1b\xfc\xba\x17\xd6\x22\x6b\xcc\x68\x09\x1b\x8f\ -\x84\x2c\x42\xa0\x5b\xc7\x2a\xa5\x65\xa5\x4b\x89\x50\xe9\xa9\xc7\ -\x92\xc8\x87\x9a\x0f\xf1\xd6\x71\xb1\x90\xe0\x07\x33\x29\x1e\x89\ -\x39\xf9\xb4\xd2\xae\xc4\xf7\x36\x26\x72\xd6\xf2\x1d\xfb\xf7\x35\ -\x60\xd1\xe3\x8b\x98\x44\x9e\x03\x5e\x2c\x1f\x01\x3c\xc8\xa0\xac\ -\xb8\xb8\x6c\x55\xb7\x5e\x70\x70\xe5\xa8\xe1\xda\xfc\x0b\x22\x8c\ -\xf3\xd6\xe3\x34\x8e\xe7\xda\xba\x35\x68\x6c\x6c\xe0\x7d\xf2\x5b\ -\xc8\x18\x3d\x4a\xac\xeb\x00\x57\x8a\xdc\xd3\xa3\x7b\xde\xe9\xb8\ -\x8e\x19\x9b\x29\x5b\xc8\x03\x1c\xf3\xf5\xf5\xef\x44\x05\x0f\xd0\ -\x96\xb6\xb6\x8b\x81\xef\x75\xb4\x58\x5e\x5e\x9a\x60\xc1\xbf\x8d\ -\x08\x09\xde\xf9\xc8\x18\x1b\xdf\x7d\x77\x46\x0e\xbc\x78\xcf\x20\ -\xc7\x20\x32\xe8\xf9\x64\xc8\x63\xd5\x42\xc4\x99\x39\x8c\x01\xab\ -\x2d\x43\x9c\x25\x43\x9b\x85\x50\x28\xc4\xa7\x1d\xa7\x31\xe8\x8a\ -\x41\x51\xc0\xe3\x24\x19\x5f\x76\x71\x71\xf1\xf1\xef\x7d\xb8\xfb\ -\xec\xb3\xcb\x52\x6c\xf8\xb6\x81\xcc\x30\x02\x79\x43\x84\x01\x33\ -\x70\x06\xef\xf7\xfb\x1c\x22\xac\x0e\x01\xd5\x0e\xdf\x99\x34\x2d\ -\x58\x96\xcd\x2a\x27\x0e\x08\x87\xe5\x2a\x1a\x41\xbe\x62\xb6\x37\ -\x95\x94\x2c\xdb\x7f\x59\xef\xc8\x9e\x7e\x7a\x45\xcb\x8a\x15\x2b\ -\x6e\x52\xda\xd4\x13\x51\xbc\x2b\xa6\x45\xfd\x3e\x01\x2e\x24\xc4\ -\x0b\x1d\xf7\x5a\xc8\x69\xa5\x65\xb7\x25\x47\x2c\xb2\x71\x09\x43\ -\xc4\x00\x46\x1b\x09\xa9\x08\x04\x5a\x15\xec\x1b\x8b\x4a\x96\xb5\ -\xf4\xc8\x4b\xbe\x65\xcb\x96\xed\xaf\xa8\x28\xcf\xb6\x49\xbf\x46\ -\xa0\x02\xef\x6c\x6f\x6c\x03\x5b\xd9\x50\x1d\x56\x26\xb0\xc8\x69\ -\x5e\x98\x01\x33\x48\xf1\x00\x03\x15\x2f\x18\x5e\xdb\xc6\xe6\x6b\ -\x44\xf0\x7b\x60\xeb\xb9\x45\x25\x65\xad\x3d\xfe\x8a\xa9\xbc\xbc\ -\x5c\xf5\xed\xeb\x2f\x31\x84\x72\x00\x7e\x88\x40\x42\x45\xac\x2f\ -\xf1\x2f\xdd\x1b\xe4\x1a\x91\x8d\x71\x88\x4a\xfc\xb7\x87\x8f\x1c\ -\x98\xc1\x25\x41\x80\x96\x27\x25\x8e\xac\x99\x37\x6f\x9e\xf5\x83\ -\xbe\xe4\x5b\x59\xb5\x32\x53\x1b\x94\x00\xb8\x23\xc2\xe1\x98\x5b\ -\xdb\xbd\x24\xbf\x3b\x3c\xe1\x11\x63\x60\x36\xfb\xc8\x3c\xbe\x74\ -\xe9\xd3\x47\x7e\xd4\xd7\xac\x15\x15\x15\xc3\x0d\x85\x16\x01\x74\ -\x2f\x80\xa1\xe8\x9e\x1c\x35\x06\x1b\x7c\xca\xde\xe0\x06\xfe\x63\ -\x11\xf0\x0a\x05\x02\x2b\x32\x88\xd4\x34\x90\xba\x1e\x30\xa3\x0d\ -\x10\x07\x18\x56\xea\x0b\x20\x04\x42\x13\x19\x34\x1a\xa0\x11\xb6\ -\xd9\x5d\x52\xf2\xd4\x76\x00\x3d\xff\xa2\x9b\x88\x9c\xe4\xd6\x97\ -\x50\x25\xda\xb9\x26\xe7\xea\x52\xaf\x18\x97\xda\xae\xab\xe5\xbd\ -\xc6\xd0\xb0\x1b\xb3\xaf\x1d\xb4\x6e\x5f\xfb\xe5\xda\x73\xaa\x3b\ -\x3a\x19\x10\x76\x00\x5c\xae\x12\x51\x08\xc0\x45\x59\x47\xf1\x80\ -\xf2\xaa\xc7\xf2\xda\xab\x1e\xaf\xb9\x3c\x23\x62\x77\xd5\xc2\x5e\ -\x6f\x78\xd7\xc6\x03\xf8\x9f\xd7\xf6\xc3\x12\x04\x96\xa3\x83\x00\ -\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x09\xd6\ -\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\x09\x9d\x49\x44\x41\x54\x78\x5e\xd5\x59\x09\x50\x56\xd7\ -\x15\xfe\xfe\x8d\xfd\x47\x59\xac\xa2\xa0\x22\x24\x18\x21\x02\x4a\ -\x32\x35\x36\xa4\x8a\x6d\xad\x24\xa5\xed\x28\xa1\x89\xb1\xa2\x91\ -\x31\xb1\x6e\xad\xb5\x36\x26\x8a\x69\x12\x15\xea\x54\xab\x76\x24\ -\x25\x1d\x27\x32\x96\x4c\x53\x8d\xd5\x90\xb1\x9a\xea\x30\x2e\x75\ -\x24\x02\x2e\x68\x08\x4b\xd9\x2c\xb2\x28\xb2\xfc\x1b\xef\xfd\x7f\ -\xff\xe3\xcc\x99\x79\xbc\xf7\xf8\xdf\x13\x67\x3a\xe3\x99\x39\x73\ -\xef\x3d\xef\x9e\x73\xcf\xb9\xe7\x9e\x73\x97\x67\xf0\x78\x3c\x78\ -\x9c\xc1\x88\xc7\x0c\xa2\xa3\xac\x9b\x56\xac\x58\x91\xcd\x6d\x33\ -\x1e\x23\xd8\x92\x6b\xf8\x45\x7f\xbf\xf1\x83\xc3\x25\x1f\xa1\xa2\ -\xa2\x22\xab\xaa\xaa\x6a\xf1\x10\x03\xd2\xd2\xd2\x8e\x8b\xa2\xf8\ -\xa2\xc1\x60\x80\xd1\x68\x44\x44\x44\x44\xf7\xdd\xbb\x77\x1d\x00\ -\x40\x34\x29\x2c\x5d\xba\x34\x3c\x29\x29\x29\x90\x96\xa0\x97\x07\ -\xc4\x63\x36\x9b\xe1\xe7\xe7\x07\x8b\xc5\x02\xb7\xdb\x0d\xe6\x33\ -\x99\x4c\x60\x20\x3a\xa1\xd3\xe9\xc4\xe0\xe0\x20\x21\x08\xa8\xcf\ -\x95\x2b\x57\x4a\x8e\x1c\x39\xf2\x47\x6f\xfd\xa8\x97\x8f\xf9\x43\ -\x01\x58\xd3\x12\x43\x3b\xdf\x5b\x91\x10\x7e\xe7\xde\x37\xad\xc5\ -\xc7\x0d\xd1\x5e\xfa\xcf\xbc\x63\x5d\x19\x12\x03\xa9\xa9\xa9\xdc\ -\x20\x03\x10\x19\x19\x89\xce\xce\xce\x21\xca\x73\x7d\xc9\x92\x25\ -\x48\x49\x49\x01\x03\x29\x4e\x3c\x64\x04\x19\x40\x48\x75\xe6\xe1\ -\x71\x6e\xde\xbc\x89\x1b\x37\x6e\xb0\x21\x64\x3c\xe6\xcc\x99\x03\ -\x82\xf2\xf2\x72\xf1\xe4\xc9\x93\xd4\xd1\x2c\x1d\x6b\x6a\x6c\x08\ -\x32\x7f\x92\x0b\xc7\xfd\x7a\xcf\xb6\x9d\x1f\x1b\xec\x76\x1b\xee\ -\x77\x37\x0b\x91\x61\x7e\x3d\xba\x96\x10\x0d\xce\xc2\xb8\xce\x0a\ -\xf1\xec\x91\x32\xfe\xfe\xfe\xac\x38\x19\x44\x74\x2a\x99\x8f\xfa\ -\xa0\xb6\xb6\x16\xc7\x8e\x1d\x1b\xe2\xd1\x79\xf3\xe6\x91\x21\xd4\ -\xc7\xc4\x72\x79\x8c\xb0\x60\x3b\xb6\xe5\x34\xe1\x42\x47\x25\x9e\ -\x4d\x5f\x61\x28\x88\x48\x82\xf0\x75\xde\xb5\xc4\x29\x13\xe3\xd6\ -\x17\x36\xe5\x1b\xe5\x8a\x32\x48\x84\x48\x91\xfb\xf1\x72\xa0\x3a\ -\x79\x8b\x14\x27\x85\x15\x5e\x20\x19\x54\x32\xd2\x77\x02\xd9\x04\ -\xa8\x8e\x11\xec\xef\xc4\xee\xbc\x36\x5c\xab\x77\x60\xcb\xce\x4f\ -\x51\x54\x54\x84\xf8\xf8\x78\x4c\x78\xa6\x30\xa9\xb9\xb5\x33\xfb\ -\xc4\x05\xcf\x7e\xb3\x8f\xd9\xe6\x52\x3e\xf3\x0a\x3a\xf7\x15\x04\ -\x81\xbc\x40\x0a\x81\xe3\x88\x91\x80\xeb\x72\x5e\xa9\x51\x5c\x06\ -\x58\x04\x14\x2e\x6b\x42\x57\x9f\x05\x1b\x0e\x04\x63\x50\x00\x0c\ -\x9d\x87\xe0\x6c\x11\x20\x3a\x51\x94\xb1\x7a\xe0\x73\x69\x16\x62\ -\x46\xb5\xba\xaa\x11\x52\x85\x38\x70\xa9\x64\x24\x2f\x10\x4a\x63\ -\x8a\xf9\xe5\xc0\x9e\x63\x8f\x5a\x4c\x6e\xfc\x6e\x71\x23\x2c\x7e\ -\x21\xc8\x2d\x30\xc0\xe1\x32\x22\x23\xd5\x81\xfc\xe5\x81\xd8\xfd\ -\xb7\xcf\xc4\xdf\xfc\xa1\xee\x0d\xf5\x7d\x40\x39\xab\xaa\xdf\xa4\ -\x4b\x88\x06\xe7\x3a\xf5\x67\xe4\x59\x25\x23\x58\x41\xfe\xc6\x32\ -\xa4\xc6\xf1\x32\x32\x1a\x3c\x78\x6b\x61\x3d\xa2\xa3\xc2\xb0\x7c\ -\x27\xd0\x6b\x33\xe1\x99\x84\x41\x14\xbc\x69\xc6\xc1\x32\x37\x4e\ -\x54\x44\x89\xca\x8d\x4c\xa9\x9c\xb4\x1c\xce\x1b\xac\x18\x95\x14\ -\xc0\x54\x97\xc7\x10\x19\xc6\x9e\x62\x23\x94\x63\xb0\x67\xbd\x7d\ -\x57\x67\xd6\x23\xed\xe9\x08\x2c\xdb\x3e\x88\xce\xfb\x66\x3c\x35\ -\x49\xc4\x9e\xb5\x6e\x94\xfd\xdb\x8d\x43\x67\xc7\x13\x8f\xc1\x97\ -\x01\xd2\x52\x31\x98\x0c\x38\xc7\xd3\x2c\x53\x9d\x97\x13\xf3\xf1\ -\x37\x69\x0c\xa8\x2a\x4f\xfc\x94\x85\xa6\x47\xfc\x13\x99\xe9\xe1\ -\x58\xee\x55\xbe\xb9\xc3\x8c\x89\x63\x3d\xf8\xd3\x7a\x01\x15\xb7\ -\x80\xbd\xc7\x1f\x28\xaf\x71\x94\x50\xce\x0a\xd7\x7d\x65\x29\x9e\ -\x65\x8e\x05\xf2\x06\xef\x0b\xec\x25\x0e\x6c\x85\x07\x18\x6d\x2d\ -\x25\xf8\xf1\xec\x7e\xac\xd9\x63\x42\x4d\x93\x09\x91\xa3\x3c\x38\ -\xf0\x4b\x17\x9a\xda\x3d\xd8\xfe\x49\x14\x78\xe2\xe5\x3a\x98\x7d\ -\x04\xa9\x82\xa6\x91\xb1\x68\x16\xc9\x18\xd5\x2c\xc4\xfc\xb4\xf9\ -\xb1\xd1\xd4\x9f\x32\x57\x57\xc3\x67\xf8\xde\x93\xe7\x91\x7f\xe8\ -\x5b\x38\x57\x7d\x1b\x21\x81\xa4\xfc\x20\xec\x4e\x60\xf3\xc1\xb1\ -\x18\x14\xc9\x83\xd2\xb8\xd4\xf6\x00\x09\x27\x45\x86\xcd\x4e\x0d\ -\x0d\x0d\xf4\x9d\x67\x78\x48\xe0\xb2\x62\x74\x5c\xa0\x92\x67\x99\ -\x8e\x0d\x09\x09\x09\x58\xb4\x68\x11\x16\x2e\x5c\x88\xac\xac\x2c\ -\xa4\xcf\x0c\x45\xfa\x84\x52\x1c\x3c\x33\x05\x7f\x2d\xbb\x0d\x7f\ -\x0b\xb0\x77\xad\x80\xe0\x20\xe0\x57\x1f\x46\xc2\x31\x68\x66\x7e\ -\x7d\x1e\x90\x42\x6f\x6f\x2f\x26\x4d\x9a\x04\x3e\xef\x48\xb3\x0f\ -\x1d\x09\xf6\xef\xdf\x8f\xa0\xa0\x20\x5e\x1a\x8a\x14\x2b\xf5\x1e\ -\x1f\x1d\xa4\x8a\x84\x98\xff\x8b\xf7\x17\xd7\xe2\xef\xe7\xc7\x63\ -\xc7\x9f\x6f\xc1\x64\x04\x0a\xdf\x10\x31\x65\xbc\x07\xaf\xef\x1a\ -\x8d\x3e\xbb\x9f\xd2\xe3\x32\x17\x0c\x39\x0b\x25\x26\x26\x72\x43\ -\xbe\x99\xe9\xa7\x29\x03\x5d\xb5\x8c\x08\xb1\xa3\x64\x73\x3f\x2e\ -\x7e\x3d\x06\x9b\x8b\x1c\x70\x3a\x5d\xd8\xb6\xcc\x8d\xf9\xcf\x8a\ -\x58\x5e\x18\x8c\xdb\xf7\x42\x86\x93\x2b\x5c\xbc\x78\xd1\x32\x82\ -\x34\xaa\x4d\x53\x01\x55\x5e\x6b\x80\x13\x45\xeb\xef\xe3\x5a\x53\ -\x38\xb6\x16\x3b\x49\x79\xac\xcb\x06\x5e\x9a\xed\xc6\xda\xbd\xfe\ -\x68\xbb\x1b\x2c\x3f\xc2\xe8\xba\xd0\x3c\x8a\xf2\x52\xf4\x69\x44\ -\xa0\x9f\x80\x7d\xab\x3b\xd1\xd1\x1f\x86\x0d\xfb\x9c\x18\xb0\x39\ -\xf1\xda\x7c\x23\x72\x7f\x28\x60\xd3\x01\x03\x6e\xb5\x85\x52\x3f\ -\x5f\x3a\xe9\x4e\xa3\x8f\x48\x53\xca\xb5\x98\x44\xec\xca\x6b\x07\ -\x4c\x61\x58\x59\x60\x47\xbf\x4d\x40\xe6\x73\x46\x6c\xc8\x01\xb6\ -\x7f\x2c\xe0\x52\x6d\x38\x7b\x57\xb7\x97\xcd\x50\x01\xd9\x1d\x81\ -\x2e\x36\x1a\x6b\x5a\x01\xca\xfe\x10\x91\x93\x5a\x86\xa8\x31\x91\ -\xc8\x7e\xc7\x89\x7e\xbb\x11\x3f\x98\x15\x82\xf7\xf3\x5c\xf8\xa2\ -\xc2\x0a\x9b\xf5\x45\xbc\xf0\x02\x18\xf8\xee\xc0\xf7\x11\xc5\xf1\ -\x46\xd7\x95\x72\xc7\x8e\x1d\x98\x3b\x77\x2e\x6d\x4e\x90\x03\x67\ -\x14\x46\x6e\x2b\x69\x54\x8a\xf0\xd4\xbd\x89\x20\x77\x00\x5e\xde\ -\x2a\xa2\xeb\xbe\x11\x19\xb3\xc6\xa1\x70\x8d\x09\xdd\x8e\x49\x98\ -\x99\xb5\x0d\x33\x54\xf8\x28\x0d\x1f\x3e\x7c\x18\xa7\x4f\x9f\x96\ -\x2a\xae\xbd\x91\x31\x24\x27\x27\xd3\x36\x2f\x5f\x26\xba\x15\x67\ -\x14\xeb\x7f\x8b\xd1\x9e\x1a\xfc\x7c\xa7\x19\xf5\xad\x02\x52\xa6\ -\x8e\xc6\xef\x57\xda\x70\xcf\x1e\x07\xd7\xf8\x77\xe0\x11\x45\x05\ -\x1f\x1f\x45\x68\x05\x9c\x3a\x75\x4a\x57\x10\xab\x5e\x34\x24\x20\ -\x57\x92\x50\xd6\x56\xd2\xee\xdd\x2c\x44\xa4\xf1\x02\xd6\xec\xf5\ -\x43\x75\xad\x0b\xb1\xd1\xc1\xf8\x68\xcb\x38\xf4\x89\xd1\xb0\x47\ -\xbd\x0b\xb7\x07\xbe\x64\xc9\x8f\x33\xda\x1e\x18\x0e\xb4\x67\x5b\ -\x49\x6b\xbd\x7e\x10\x33\x46\x95\x61\x63\x51\x10\xca\x2b\x07\x30\ -\x26\xcc\x0f\xa5\x3b\x13\x60\xb3\xf7\xa0\x7f\x6c\x01\x0c\x30\xeb\ -\x95\x45\x86\xe8\x0d\x62\xe5\x52\xe2\x57\x84\xb3\x67\xcf\xf2\x77\ -\x9f\x48\x20\xf4\x5c\xc2\xab\x69\xa7\xf1\x76\xb1\x88\x7f\x94\x0f\ -\x20\xd0\xdf\x88\x43\xef\x45\xc3\x36\xd0\x8b\x7f\x35\x2e\x80\x50\ -\xf7\xd5\x70\x19\x87\x36\x54\x84\x86\x86\x32\x5d\xae\x93\x41\xd3\ -\x03\x52\x6b\xd9\xb5\x14\xc8\x19\x19\x19\x9a\x1e\xa0\x76\x57\xcb\ -\x39\x4c\xc5\x29\xfc\xe5\x0b\x33\x3e\x3d\xe3\xa2\x23\x02\x8e\xee\ -\x49\x86\xd5\xdc\x8e\x7b\xe1\xef\xe2\xb9\x98\x68\xe6\xd3\x92\xa5\ -\x79\xa0\x34\x6a\xef\x01\xfa\xd7\x3b\x61\xcf\x9d\xab\x78\xc2\xbd\ -\x0d\x5f\x7e\x65\x40\x41\x89\x1d\x04\xa5\xbb\x66\x60\x94\x5f\x17\ -\xba\xac\x1b\x61\x0c\x98\xa0\x57\x96\x5c\x8f\x87\xbe\x0f\xf8\x12\ -\xac\x4a\xeb\x6e\xbf\x89\x98\xfe\x5f\xa3\xba\x0e\x58\xb7\xdb\x09\ -\x82\x0f\xf3\x9f\xc6\xe4\xf1\x21\xb8\xe3\x9f\x07\x8b\x35\x41\x9f\ -\x2c\xa5\x47\x64\xfa\x69\x7b\x80\x50\xb7\x07\xf8\xa8\xdc\x58\xb1\ -\x17\xd7\xeb\x7a\xb1\xfc\x03\x27\xdc\x1e\x03\xb6\xae\x8c\x41\x72\ -\x9c\x1b\x6d\xae\xd9\xf0\x0b\x9b\xa9\xe4\xd3\xf6\x00\x97\x0f\xed\ -\x01\x02\xa9\x20\x4d\x43\xbe\x3c\xf5\x39\x52\xe7\x6c\xc2\xd1\xab\ -\xf3\xe0\x12\x0c\x58\xfa\x52\x04\xe6\xc6\x9f\xc3\x7f\xfa\x67\xc2\ -\x12\xfe\x1d\xe2\x1b\x49\x1a\x56\x9b\x5c\x8d\x20\xd6\x4c\x9f\xca\ -\x36\x6d\xf7\x4f\xc6\x8e\x85\xd3\x76\x07\xd9\xf3\xa3\x11\x6a\x1c\ -\x87\x57\x67\x5f\xc2\xf5\xbe\x1c\x4c\x7e\xea\x65\x35\x3e\xdd\x34\ -\x09\x3c\x74\x1a\x95\x6f\xeb\xf4\x76\xa9\x9a\x46\xdb\x5b\xeb\xf0\ -\xd3\xcc\x19\xe8\xed\xa8\x42\x5f\xd7\x55\x24\x4c\xe8\x43\x71\xf9\ -\x1c\x4c\x4e\x4a\x47\xb3\x97\x47\x92\x4d\x14\xc8\x74\x69\x9f\x69\ -\xd3\xa6\xc1\x6a\xb5\x2a\x02\x99\x41\x6f\x1a\x65\xc1\xfc\x72\x40\ -\x8f\xb0\x0a\x0f\x5c\xad\xae\x42\xca\x13\x89\x5e\xe5\xab\xd1\xdb\ -\x79\x15\x37\x6e\x35\x63\x5c\xd2\x3a\xbc\x96\x39\x6b\x24\xc7\x0e\ -\xd5\xb5\xaf\x7c\x60\xd0\x7f\x1f\xf0\x19\x6c\x2e\x97\x0b\xed\xcd\ -\x95\x10\x07\xbe\x41\x6f\x57\x0d\xce\x55\x0d\xe0\xdb\x59\x07\xf0\ -\x74\xca\x10\xe5\x1f\x36\x70\x7d\xc5\x80\xe6\x12\x62\x6b\x75\xcd\ -\xda\xdb\x6f\x6d\x84\x60\x6b\xc5\x28\x43\x34\xee\x38\x12\x90\xfd\ -\x7a\xee\xc8\xd7\xbb\x7a\x5b\x6d\x23\x33\xe8\xbd\x0f\xf8\x14\xdc\ -\xd0\x50\x8f\xe3\x27\xca\x30\x3a\xd4\x1f\x3f\x5a\x98\x87\xef\xcf\ -\x4b\x1f\x81\x92\x9a\x34\xf6\xc2\x88\xee\x03\x3e\x05\x6f\xdc\xb0\ -\x06\xa9\xd3\xe3\xb1\xef\x40\x09\x02\x03\x03\xb5\x95\x1c\xb9\x21\ -\xf2\xd8\xd4\x7d\x1f\x18\x76\x57\xbc\x7c\xf9\x32\x9e\x7f\xfe\xbb\ -\xc8\xce\x59\x8c\x9e\x9e\x1e\x74\x75\x75\xd1\xfb\x0f\x3d\xbd\x10\ -\xca\x9f\x4f\x58\xae\x9e\x17\x0b\x2e\xb9\x4e\xd9\x8f\x64\xf2\x33\ -\x0d\x95\xfa\x62\x80\x41\x9a\x46\x49\xd9\xee\xee\x6e\xd8\x6c\x36\ -\x4c\x9c\x1c\x8f\xf3\xe7\xcf\xcb\x5f\xa4\xb9\xd4\x45\x23\x90\xd1\ -\xd9\x00\x46\x1a\x97\xc6\x67\x23\xf8\x8e\x60\x21\xd5\x00\x88\x0a\ -\x0f\xc4\xc5\xc5\x21\x20\x20\x00\x8d\x8d\x8d\xec\x3e\x4e\xa3\x08\ -\x09\x09\x41\x70\x70\x30\x62\x62\x62\xd4\xb2\x89\xdc\x03\xfc\x7c\ -\xa8\xeb\x48\x20\xa5\xf1\x63\x31\xf1\xd0\x64\xf1\x98\x64\x4c\x4b\ -\x4b\x0b\xbd\x65\x0d\xaa\x7a\x20\x2a\x2a\x0a\xc5\xc5\xc5\x20\x28\ -\x2d\x2d\xe5\x81\xf9\xac\x83\x9a\x9a\x1a\xaa\x6b\x21\x7b\xce\xd7\ -\x66\xa5\xda\x66\x8c\x8d\x8d\xa5\xc7\x61\x96\x83\x57\x5e\x79\x05\ -\x0b\x16\x2c\x00\xc1\xaa\x55\xab\xd4\x63\x80\x2d\x97\xd6\x59\x20\ -\xaf\xbd\xe9\xd3\xa7\x8f\x3c\x28\x47\x1e\xe0\xd2\xab\x2d\xd7\xd5\ -\x0d\x68\x6e\x6e\x46\x7e\x7e\x3e\x2d\x21\x54\x56\x56\x92\xd5\x8f\ -\xa8\xe4\xa3\xf3\x11\x78\xff\x1d\xd3\xdf\x4d\x38\x1c\x0e\xb4\xb5\ -\xb5\xf9\xce\x42\x67\xce\x9c\x91\x06\xb1\x5c\xf0\xff\xdd\x03\x04\ -\x1d\x1d\x1d\xa4\x97\xae\x9d\xb8\x1a\x40\x32\x33\x92\xb5\x14\x84\ -\xc3\xec\x0b\x72\x9a\xd6\xfa\xd6\xee\xa3\xa4\x51\xe6\x93\x07\xf8\ -\x0d\xb9\x01\x34\xe3\x26\xaa\x7b\x5f\xe0\x72\xbc\xcb\x67\x91\x97\ -\xc1\x0a\xc0\x98\x9b\x9b\x6b\xa4\xd2\xfb\xfd\x41\xc9\xe8\xfd\x4e\ -\x34\x13\xd5\xbd\x60\xf2\x82\xd9\x4b\xe3\x7e\x06\xa2\xcb\xda\xa4\ -\x81\xdb\xdb\x76\x53\x49\xf1\xc4\x6d\x2e\x19\x65\xfd\x88\x8f\xca\ -\x07\x34\xef\x38\xfd\x76\xbb\xfd\x13\x6f\x3d\x18\x80\x0b\x80\x60\ -\x50\xfb\x6d\xc4\x8a\xca\xd0\xc4\xa5\x06\x12\x8f\x59\xc2\x47\xe0\ -\x96\xa0\xc8\x28\x69\x0b\xb2\xb6\x28\xe7\xe1\xba\x47\xa6\xf0\xff\ -\x00\xd4\xc5\x56\xd5\x1c\xe0\xb7\xb1\x00\x00\x00\x00\x49\x45\x4e\ -\x44\xae\x42\x60\x82\ -\x00\x00\x0e\x5b\ -\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\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ -\x01\x00\x9a\x9c\x18\x00\x00\x0a\x4f\x69\x43\x43\x50\x50\x68\x6f\ -\x74\x6f\x73\x68\x6f\x70\x20\x49\x43\x43\x20\x70\x72\x6f\x66\x69\ -\x6c\x65\x00\x00\x78\xda\x9d\x53\x67\x54\x53\xe9\x16\x3d\xf7\xde\ -\xf4\x42\x4b\x88\x80\x94\x4b\x6f\x52\x15\x08\x20\x52\x42\x8b\x80\ -\x14\x91\x26\x2a\x21\x09\x10\x4a\x88\x21\xa1\xd9\x15\x51\xc1\x11\ -\x45\x45\x04\x1b\xc8\xa0\x88\x03\x8e\x8e\x80\x8c\x15\x51\x2c\x0c\ -\x8a\x0a\xd8\x07\xe4\x21\xa2\x8e\x83\xa3\x88\x8a\xca\xfb\xe1\x7b\ -\xa3\x6b\xd6\xbc\xf7\xe6\xcd\xfe\xb5\xd7\x3e\xe7\xac\xf3\x9d\xb3\ -\xcf\x07\xc0\x08\x0c\x96\x48\x33\x51\x35\x80\x0c\xa9\x42\x1e\x11\ -\xe0\x83\xc7\xc4\xc6\xe1\xe4\x2e\x40\x81\x0a\x24\x70\x00\x10\x08\ -\xb3\x64\x21\x73\xfd\x23\x01\x00\xf8\x7e\x3c\x3c\x2b\x22\xc0\x07\ -\xbe\x00\x01\x78\xd3\x0b\x08\x00\xc0\x4d\x9b\xc0\x30\x1c\x87\xff\ -\x0f\xea\x42\x99\x5c\x01\x80\x84\x01\xc0\x74\x91\x38\x4b\x08\x80\ -\x14\x00\x40\x7a\x8e\x42\xa6\x00\x40\x46\x01\x80\x9d\x98\x26\x53\ -\x00\xa0\x04\x00\x60\xcb\x63\x62\xe3\x00\x50\x2d\x00\x60\x27\x7f\ -\xe6\xd3\x00\x80\x9d\xf8\x99\x7b\x01\x00\x5b\x94\x21\x15\x01\xa0\ -\x91\x00\x20\x13\x65\x88\x44\x00\x68\x3b\x00\xac\xcf\x56\x8a\x45\ -\x00\x58\x30\x00\x14\x66\x4b\xc4\x39\x00\xd8\x2d\x00\x30\x49\x57\ -\x66\x48\x00\xb0\xb7\x00\xc0\xce\x10\x0b\xb2\x00\x08\x0c\x00\x30\ -\x51\x88\x85\x29\x00\x04\x7b\x00\x60\xc8\x23\x23\x78\x00\x84\x99\ -\x00\x14\x46\xf2\x57\x3c\xf1\x2b\xae\x10\xe7\x2a\x00\x00\x78\x99\ -\xb2\x3c\xb9\x24\x39\x45\x81\x5b\x08\x2d\x71\x07\x57\x57\x2e\x1e\ -\x28\xce\x49\x17\x2b\x14\x36\x61\x02\x61\x9a\x40\x2e\xc2\x79\x99\ -\x19\x32\x81\x34\x0f\xe0\xf3\xcc\x00\x00\xa0\x91\x15\x11\xe0\x83\ -\xf3\xfd\x78\xce\x0e\xae\xce\xce\x36\x8e\xb6\x0e\x5f\x2d\xea\xbf\ -\x06\xff\x22\x62\x62\xe3\xfe\xe5\xcf\xab\x70\x40\x00\x00\xe1\x74\ -\x7e\xd1\xfe\x2c\x2f\xb3\x1a\x80\x3b\x06\x80\x6d\xfe\xa2\x25\xee\ -\x04\x68\x5e\x0b\xa0\x75\xf7\x8b\x66\xb2\x0f\x40\xb5\x00\xa0\xe9\ -\xda\x57\xf3\x70\xf8\x7e\x3c\x3c\x45\xa1\x90\xb9\xd9\xd9\xe5\xe4\ -\xe4\xd8\x4a\xc4\x42\x5b\x61\xca\x57\x7d\xfe\x67\xc2\x5f\xc0\x57\ -\xfd\x6c\xf9\x7e\x3c\xfc\xf7\xf5\xe0\xbe\xe2\x24\x81\x32\x5d\x81\ -\x47\x04\xf8\xe0\xc2\xcc\xf4\x4c\xa5\x1c\xcf\x92\x09\x84\x62\xdc\ -\xe6\x8f\x47\xfc\xb7\x0b\xff\xfc\x1d\xd3\x22\xc4\x49\x62\xb9\x58\ -\x2a\x14\xe3\x51\x12\x71\x8e\x44\x9a\x8c\xf3\x32\xa5\x22\x89\x42\ -\x92\x29\xc5\x25\xd2\xff\x64\xe2\xdf\x2c\xfb\x03\x3e\xdf\x35\x00\ -\xb0\x6a\x3e\x01\x7b\x91\x2d\xa8\x5d\x63\x03\xf6\x4b\x27\x10\x58\ -\x74\xc0\xe2\xf7\x00\x00\xf2\xbb\x6f\xc1\xd4\x28\x08\x03\x80\x68\ -\x83\xe1\xcf\x77\xff\xef\x3f\xfd\x47\xa0\x25\x00\x80\x66\x49\x92\ -\x71\x00\x00\x5e\x44\x24\x2e\x54\xca\xb3\x3f\xc7\x08\x00\x00\x44\ -\xa0\x81\x2a\xb0\x41\x1b\xf4\xc1\x18\x2c\xc0\x06\x1c\xc1\x05\xdc\ -\xc1\x0b\xfc\x60\x36\x84\x42\x24\xc4\xc2\x42\x10\x42\x0a\x64\x80\ -\x1c\x72\x60\x29\xac\x82\x42\x28\x86\xcd\xb0\x1d\x2a\x60\x2f\xd4\ -\x40\x1d\x34\xc0\x51\x68\x86\x93\x70\x0e\x2e\xc2\x55\xb8\x0e\x3d\ -\x70\x0f\xfa\x61\x08\x9e\xc1\x28\xbc\x81\x09\x04\x41\xc8\x08\x13\ -\x61\x21\xda\x88\x01\x62\x8a\x58\x23\x8e\x08\x17\x99\x85\xf8\x21\ -\xc1\x48\x04\x12\x8b\x24\x20\xc9\x88\x14\x51\x22\x4b\x91\x35\x48\ -\x31\x52\x8a\x54\x20\x55\x48\x1d\xf2\x3d\x72\x02\x39\x87\x5c\x46\ -\xba\x91\x3b\xc8\x00\x32\x82\xfc\x86\xbc\x47\x31\x94\x81\xb2\x51\ -\x3d\xd4\x0c\xb5\x43\xb9\xa8\x37\x1a\x84\x46\xa2\x0b\xd0\x64\x74\ -\x31\x9a\x8f\x16\xa0\x9b\xd0\x72\xb4\x1a\x3d\x8c\x36\xa1\xe7\xd0\ -\xab\x68\x0f\xda\x8f\x3e\x43\xc7\x30\xc0\xe8\x18\x07\x33\xc4\x6c\ -\x30\x2e\xc6\xc3\x42\xb1\x38\x2c\x09\x93\x63\xcb\xb1\x22\xac\x0c\ -\xab\xc6\x1a\xb0\x56\xac\x03\xbb\x89\xf5\x63\xcf\xb1\x77\x04\x12\ -\x81\x45\xc0\x09\x36\x04\x77\x42\x20\x61\x1e\x41\x48\x58\x4c\x58\ -\x4e\xd8\x48\xa8\x20\x1c\x24\x34\x11\xda\x09\x37\x09\x03\x84\x51\ -\xc2\x27\x22\x93\xa8\x4b\xb4\x26\xba\x11\xf9\xc4\x18\x62\x32\x31\ -\x87\x58\x48\x2c\x23\xd6\x12\x8f\x13\x2f\x10\x7b\x88\x43\xc4\x37\ -\x24\x12\x89\x43\x32\x27\xb9\x90\x02\x49\xb1\xa4\x54\xd2\x12\xd2\ -\x46\xd2\x6e\x52\x23\xe9\x2c\xa9\x9b\x34\x48\x1a\x23\x93\xc9\xda\ -\x64\x6b\xb2\x07\x39\x94\x2c\x20\x2b\xc8\x85\xe4\x9d\xe4\xc3\xe4\ -\x33\xe4\x1b\xe4\x21\xf2\x5b\x0a\x9d\x62\x40\x71\xa4\xf8\x53\xe2\ -\x28\x52\xca\x6a\x4a\x19\xe5\x10\xe5\x34\xe5\x06\x65\x98\x32\x41\ -\x55\xa3\x9a\x52\xdd\xa8\xa1\x54\x11\x35\x8f\x5a\x42\xad\xa1\xb6\ -\x52\xaf\x51\x87\xa8\x13\x34\x75\x9a\x39\xcd\x83\x16\x49\x4b\xa5\ -\xad\xa2\x95\xd3\x1a\x68\x17\x68\xf7\x69\xaf\xe8\x74\xba\x11\xdd\ -\x95\x1e\x4e\x97\xd0\x57\xd2\xcb\xe9\x47\xe8\x97\xe8\x03\xf4\x77\ -\x0c\x0d\x86\x15\x83\xc7\x88\x67\x28\x19\x9b\x18\x07\x18\x67\x19\ -\x77\x18\xaf\x98\x4c\xa6\x19\xd3\x8b\x19\xc7\x54\x30\x37\x31\xeb\ -\x98\xe7\x99\x0f\x99\x6f\x55\x58\x2a\xb6\x2a\x7c\x15\x91\xca\x0a\ -\x95\x4a\x95\x26\x95\x1b\x2a\x2f\x54\xa9\xaa\xa6\xaa\xde\xaa\x0b\ -\x55\xf3\x55\xcb\x54\x8f\xa9\x5e\x53\x7d\xae\x46\x55\x33\x53\xe3\ -\xa9\x09\xd4\x96\xab\x55\xaa\x9d\x50\xeb\x53\x1b\x53\x67\xa9\x3b\ -\xa8\x87\xaa\x67\xa8\x6f\x54\x3f\xa4\x7e\x59\xfd\x89\x06\x59\xc3\ -\x4c\xc3\x4f\x43\xa4\x51\xa0\xb1\x5f\xe3\xbc\xc6\x20\x0b\x63\x19\ -\xb3\x78\x2c\x21\x6b\x0d\xab\x86\x75\x81\x35\xc4\x26\xb1\xcd\xd9\ -\x7c\x76\x2a\xbb\x98\xfd\x1d\xbb\x8b\x3d\xaa\xa9\xa1\x39\x43\x33\ -\x4a\x33\x57\xb3\x52\xf3\x94\x66\x3f\x07\xe3\x98\x71\xf8\x9c\x74\ -\x4e\x09\xe7\x28\xa7\x97\xf3\x7e\x8a\xde\x14\xef\x29\xe2\x29\x1b\ -\xa6\x34\x4c\xb9\x31\x65\x5c\x6b\xaa\x96\x97\x96\x58\xab\x48\xab\ -\x51\xab\x47\xeb\xbd\x36\xae\xed\xa7\x9d\xa6\xbd\x45\xbb\x59\xfb\ -\x81\x0e\x41\xc7\x4a\x27\x5c\x27\x47\x67\x8f\xce\x05\x9d\xe7\x53\ -\xd9\x53\xdd\xa7\x0a\xa7\x16\x4d\x3d\x3a\xf5\xae\x2e\xaa\x6b\xa5\ -\x1b\xa1\xbb\x44\x77\xbf\x6e\xa7\xee\x98\x9e\xbe\x5e\x80\x9e\x4c\ -\x6f\xa7\xde\x79\xbd\xe7\xfa\x1c\x7d\x2f\xfd\x54\xfd\x6d\xfa\xa7\ -\xf5\x47\x0c\x58\x06\xb3\x0c\x24\x06\xdb\x0c\xce\x18\x3c\xc5\x35\ -\x71\x6f\x3c\x1d\x2f\xc7\xdb\xf1\x51\x43\x5d\xc3\x40\x43\xa5\x61\ -\x95\x61\x97\xe1\x84\x91\xb9\xd1\x3c\xa3\xd5\x46\x8d\x46\x0f\x8c\ -\x69\xc6\x5c\xe3\x24\xe3\x6d\xc6\x6d\xc6\xa3\x26\x06\x26\x21\x26\ -\x4b\x4d\xea\x4d\xee\x9a\x52\x4d\xb9\xa6\x29\xa6\x3b\x4c\x3b\x4c\ -\xc7\xcd\xcc\xcd\xa2\xcd\xd6\x99\x35\x9b\x3d\x31\xd7\x32\xe7\x9b\ -\xe7\x9b\xd7\x9b\xdf\xb7\x60\x5a\x78\x5a\x2c\xb6\xa8\xb6\xb8\x65\ -\x49\xb2\xe4\x5a\xa6\x59\xee\xb6\xbc\x6e\x85\x5a\x39\x59\xa5\x58\ -\x55\x5a\x5d\xb3\x46\xad\x9d\xad\x25\xd6\xbb\xad\xbb\xa7\x11\xa7\ -\xb9\x4e\x93\x4e\xab\x9e\xd6\x67\xc3\xb0\xf1\xb6\xc9\xb6\xa9\xb7\ -\x19\xb0\xe5\xd8\x06\xdb\xae\xb6\x6d\xb6\x7d\x61\x67\x62\x17\x67\ -\xb7\xc5\xae\xc3\xee\x93\xbd\x93\x7d\xba\x7d\x8d\xfd\x3d\x07\x0d\ -\x87\xd9\x0e\xab\x1d\x5a\x1d\x7e\x73\xb4\x72\x14\x3a\x56\x3a\xde\ -\x9a\xce\x9c\xee\x3f\x7d\xc5\xf4\x96\xe9\x2f\x67\x58\xcf\x10\xcf\ -\xd8\x33\xe3\xb6\x13\xcb\x29\xc4\x69\x9d\x53\x9b\xd3\x47\x67\x17\ -\x67\xb9\x73\x83\xf3\x88\x8b\x89\x4b\x82\xcb\x2e\x97\x3e\x2e\x9b\ -\x1b\xc6\xdd\xc8\xbd\xe4\x4a\x74\xf5\x71\x5d\xe1\x7a\xd2\xf5\x9d\ -\x9b\xb3\x9b\xc2\xed\xa8\xdb\xaf\xee\x36\xee\x69\xee\x87\xdc\x9f\ -\xcc\x34\x9f\x29\x9e\x59\x33\x73\xd0\xc3\xc8\x43\xe0\x51\xe5\xd1\ -\x3f\x0b\x9f\x95\x30\x6b\xdf\xac\x7e\x4f\x43\x4f\x81\x67\xb5\xe7\ -\x23\x2f\x63\x2f\x91\x57\xad\xd7\xb0\xb7\xa5\x77\xaa\xf7\x61\xef\ -\x17\x3e\xf6\x3e\x72\x9f\xe3\x3e\xe3\x3c\x37\xde\x32\xde\x59\x5f\ -\xcc\x37\xc0\xb7\xc8\xb7\xcb\x4f\xc3\x6f\x9e\x5f\x85\xdf\x43\x7f\ -\x23\xff\x64\xff\x7a\xff\xd1\x00\xa7\x80\x25\x01\x67\x03\x89\x81\ -\x41\x81\x5b\x02\xfb\xf8\x7a\x7c\x21\xbf\x8e\x3f\x3a\xdb\x65\xf6\ -\xb2\xd9\xed\x41\x8c\xa0\xb9\x41\x15\x41\x8f\x82\xad\x82\xe5\xc1\ -\xad\x21\x68\xc8\xec\x90\xad\x21\xf7\xe7\x98\xce\x91\xce\x69\x0e\ -\x85\x50\x7e\xe8\xd6\xd0\x07\x61\xe6\x61\x8b\xc3\x7e\x0c\x27\x85\ -\x87\x85\x57\x86\x3f\x8e\x70\x88\x58\x1a\xd1\x31\x97\x35\x77\xd1\ -\xdc\x43\x73\xdf\x44\xfa\x44\x96\x44\xde\x9b\x67\x31\x4f\x39\xaf\ -\x2d\x4a\x35\x2a\x3e\xaa\x2e\x6a\x3c\xda\x37\xba\x34\xba\x3f\xc6\ -\x2e\x66\x59\xcc\xd5\x58\x9d\x58\x49\x6c\x4b\x1c\x39\x2e\x2a\xae\ -\x36\x6e\x6c\xbe\xdf\xfc\xed\xf3\x87\xe2\x9d\xe2\x0b\xe3\x7b\x17\ -\x98\x2f\xc8\x5d\x70\x79\xa1\xce\xc2\xf4\x85\xa7\x16\xa9\x2e\x12\ -\x2c\x3a\x96\x40\x4c\x88\x4e\x38\x94\xf0\x41\x10\x2a\xa8\x16\x8c\ -\x25\xf2\x13\x77\x25\x8e\x0a\x79\xc2\x1d\xc2\x67\x22\x2f\xd1\x36\ -\xd1\x88\xd8\x43\x5c\x2a\x1e\x4e\xf2\x48\x2a\x4d\x7a\x92\xec\x91\ -\xbc\x35\x79\x24\xc5\x33\xa5\x2c\xe5\xb9\x84\x27\xa9\x90\xbc\x4c\ -\x0d\x4c\xdd\x9b\x3a\x9e\x16\x9a\x76\x20\x6d\x32\x3d\x3a\xbd\x31\ -\x83\x92\x91\x90\x71\x42\xaa\x21\x4d\x93\xb6\x67\xea\x67\xe6\x66\ -\x76\xcb\xac\x65\x85\xb2\xfe\xc5\x6e\x8b\xb7\x2f\x1e\x95\x07\xc9\ -\x6b\xb3\x90\xac\x05\x59\x2d\x0a\xb6\x42\xa6\xe8\x54\x5a\x28\xd7\ -\x2a\x07\xb2\x67\x65\x57\x66\xbf\xcd\x89\xca\x39\x96\xab\x9e\x2b\ -\xcd\xed\xcc\xb3\xca\xdb\x90\x37\x9c\xef\x9f\xff\xed\x12\xc2\x12\ -\xe1\x92\xb6\xa5\x86\x4b\x57\x2d\x1d\x58\xe6\xbd\xac\x6a\x39\xb2\ -\x3c\x71\x79\xdb\x0a\xe3\x15\x05\x2b\x86\x56\x06\xac\x3c\xb8\x8a\ -\xb6\x2a\x6d\xd5\x4f\xab\xed\x57\x97\xae\x7e\xbd\x26\x7a\x4d\x6b\ -\x81\x5e\xc1\xca\x82\xc1\xb5\x01\x6b\xeb\x0b\x55\x0a\xe5\x85\x7d\ -\xeb\xdc\xd7\xed\x5d\x4f\x58\x2f\x59\xdf\xb5\x61\xfa\x86\x9d\x1b\ -\x3e\x15\x89\x8a\xae\x14\xdb\x17\x97\x15\x7f\xd8\x28\xdc\x78\xe5\ -\x1b\x87\x6f\xca\xbf\x99\xdc\x94\xb4\xa9\xab\xc4\xb9\x64\xcf\x66\ -\xd2\x66\xe9\xe6\xde\x2d\x9e\x5b\x0e\x96\xaa\x97\xe6\x97\x0e\x6e\ -\x0d\xd9\xda\xb4\x0d\xdf\x56\xb4\xed\xf5\xf6\x45\xdb\x2f\x97\xcd\ -\x28\xdb\xbb\x83\xb6\x43\xb9\xa3\xbf\x3c\xb8\xbc\x65\xa7\xc9\xce\ -\xcd\x3b\x3f\x54\xa4\x54\xf4\x54\xfa\x54\x36\xee\xd2\xdd\xb5\x61\ -\xd7\xf8\x6e\xd1\xee\x1b\x7b\xbc\xf6\x34\xec\xd5\xdb\x5b\xbc\xf7\ -\xfd\x3e\xc9\xbe\xdb\x55\x01\x55\x4d\xd5\x66\xd5\x65\xfb\x49\xfb\ -\xb3\xf7\x3f\xae\x89\xaa\xe9\xf8\x96\xfb\x6d\x5d\xad\x4e\x6d\x71\ -\xed\xc7\x03\xd2\x03\xfd\x07\x23\x0e\xb6\xd7\xb9\xd4\xd5\x1d\xd2\ -\x3d\x54\x52\x8f\xd6\x2b\xeb\x47\x0e\xc7\x1f\xbe\xfe\x9d\xef\x77\ -\x2d\x0d\x36\x0d\x55\x8d\x9c\xc6\xe2\x23\x70\x44\x79\xe4\xe9\xf7\ -\x09\xdf\xf7\x1e\x0d\x3a\xda\x76\x8c\x7b\xac\xe1\x07\xd3\x1f\x76\ -\x1d\x67\x1d\x2f\x6a\x42\x9a\xf2\x9a\x46\x9b\x53\x9a\xfb\x5b\x62\ -\x5b\xba\x4f\xcc\x3e\xd1\xd6\xea\xde\x7a\xfc\x47\xdb\x1f\x0f\x9c\ -\x34\x3c\x59\x79\x4a\xf3\x54\xc9\x69\xda\xe9\x82\xd3\x93\x67\xf2\ -\xcf\x8c\x9d\x95\x9d\x7d\x7e\x2e\xf9\xdc\x60\xdb\xa2\xb6\x7b\xe7\ -\x63\xce\xdf\x6a\x0f\x6f\xef\xba\x10\x74\xe1\xd2\x45\xff\x8b\xe7\ -\x3b\xbc\x3b\xce\x5c\xf2\xb8\x74\xf2\xb2\xdb\xe5\x13\x57\xb8\x57\ -\x9a\xaf\x3a\x5f\x6d\xea\x74\xea\x3c\xfe\x93\xd3\x4f\xc7\xbb\x9c\ -\xbb\x9a\xae\xb9\x5c\x6b\xb9\xee\x7a\xbd\xb5\x7b\x66\xf7\xe9\x1b\ -\x9e\x37\xce\xdd\xf4\xbd\x79\xf1\x16\xff\xd6\xd5\x9e\x39\x3d\xdd\ -\xbd\xf3\x7a\x6f\xf7\xc5\xf7\xf5\xdf\x16\xdd\x7e\x72\x27\xfd\xce\ -\xcb\xbb\xd9\x77\x27\xee\xad\xbc\x4f\xbc\x5f\xf4\x40\xed\x41\xd9\ -\x43\xdd\x87\xd5\x3f\x5b\xfe\xdc\xd8\xef\xdc\x7f\x6a\xc0\x77\xa0\ -\xf3\xd1\xdc\x47\xf7\x06\x85\x83\xcf\xfe\x91\xf5\x8f\x0f\x43\x05\ -\x8f\x99\x8f\xcb\x86\x0d\x86\xeb\x9e\x38\x3e\x39\x39\xe2\x3f\x72\ -\xfd\xe9\xfc\xa7\x43\xcf\x64\xcf\x26\x9e\x17\xfe\xa2\xfe\xcb\xae\ -\x17\x16\x2f\x7e\xf8\xd5\xeb\xd7\xce\xd1\x98\xd1\xa1\x97\xf2\x97\ -\x93\xbf\x6d\x7c\xa5\xfd\xea\xc0\xeb\x19\xaf\xdb\xc6\xc2\xc6\x1e\ -\xbe\xc9\x78\x33\x31\x5e\xf4\x56\xfb\xed\xc1\x77\xdc\x77\x1d\xef\ -\xa3\xdf\x0f\x4f\xe4\x7c\x20\x7f\x28\xff\x68\xf9\xb1\xf5\x53\xd0\ -\xa7\xfb\x93\x19\x93\x93\xff\x04\x03\x98\xf3\xfc\x63\x33\x2d\xdb\ -\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\x03\x86\ -\x49\x44\x41\x54\x78\xda\xec\x97\xd1\x6b\x5b\x55\x1c\xc7\xbf\xbf\ -\xf3\xbb\xe7\x26\xd7\x7b\x6f\xe2\x92\x46\xb3\x36\x2c\xdd\xa0\x4a\ -\xa1\x6e\x51\x4a\x5d\x07\x2d\xce\xb1\xda\x29\x82\xba\x5a\xa6\x6f\ -\x26\xc3\xad\x4b\x61\x0f\xa2\xfe\x01\xea\xf3\x44\xc8\x04\xfb\xd0\ -\x22\x22\x6b\x37\xd4\xa9\x2d\x2d\x73\x19\x82\x13\x2c\x16\x5f\x8a\ -\xc9\xc4\xf5\x41\xdb\x66\xeb\x3a\x32\x6c\xba\xe4\x76\xc9\x3d\x3e\ -\xa4\x0a\x3e\x05\xdb\xd4\x3d\xd8\x03\x07\xce\xc3\x39\x9c\xcf\xf9\ -\xfe\x7e\xe7\x7b\x7e\x87\x94\x52\xb8\x9f\x4d\xe0\x3e\xb7\x6d\x80\ -\x6d\x00\xad\xd6\x84\xc6\xc6\x9d\xdd\x15\xb7\x22\x97\x6e\xde\x4a\ -\x03\x50\x00\x10\x0e\x87\x11\x89\x44\x10\x8b\xc5\x50\x28\x14\x10\ -\x0a\x85\x30\x3b\x3b\x8b\xae\xae\x2e\x34\x37\x37\x23\x18\x0c\x22\ -\x14\x0a\xc1\xef\xf7\xa3\xa9\xa9\x09\x7e\xbf\x7f\xe3\x0a\x34\x84\ -\x1a\x0e\x24\x07\x4f\x5d\xea\x7e\xaa\xeb\x03\xaf\xd7\xb3\x07\x00\ -\x5c\xd7\x45\xbd\xae\x6f\x4d\x80\x72\xb9\xbc\xd2\x77\xb4\x9f\x46\ -\x86\x47\x06\xdf\x7a\xfb\xcd\xf4\x63\x7b\xdb\x4e\x33\x8b\x80\xeb\ -\xba\x10\x42\x6c\x3d\x80\x61\x3c\xa0\x95\x8a\x45\xac\x39\x0e\x4e\ -\x0d\x24\xa3\xa9\x54\xea\xfd\xe7\x9e\x7f\x76\xdc\x6b\x78\x8e\xe6\ -\xf3\x79\xef\x66\x21\x6a\xae\xb6\x2c\x4b\x03\x11\xf2\x77\xf2\xc8\ -\xfe\x92\x41\x24\xd2\x84\x77\xdf\x79\x6f\xff\xe0\x60\xf2\x9c\x60\ -\x7c\xec\x38\xce\x01\x00\xbc\x65\x49\xe8\xf3\xd9\x9a\x52\x0a\x52\ -\x4a\x94\xcb\x65\xe4\x72\x39\x98\xa6\x89\x9e\xc3\xcf\x68\xed\xed\ -\x1d\x2f\x5f\xbc\xf8\xf9\xa1\xcc\xcf\x99\xe1\x70\xf8\xe1\x21\xd3\ -\x34\xaf\xfd\xdb\xdc\xa8\xa9\x80\x69\x5a\x4c\x00\x34\x4d\x03\x33\ -\x43\xd7\x75\xb8\x95\x0a\xe6\xe7\x7f\x83\x10\x84\x78\x3c\x11\x88\ -\x27\x12\x6f\xb4\x3c\xda\xf2\xd5\xf2\xed\xe5\xd3\x82\x44\x98\x99\ -\xeb\x1b\x02\x05\x05\xa9\xc9\x2a\x84\x10\x60\x4d\x83\xd4\x75\x38\ -\x4e\x09\xf3\xf3\xbf\x23\x1a\x8d\x22\x39\x90\x6c\xe9\xe8\x68\x3f\ -\x73\xed\xd7\xec\x68\x2e\xb7\xd8\x2f\xa5\x6e\x09\xc1\xf5\x00\x30\ -\x19\xaa\xaa\xc0\x5f\x2a\x30\x33\x58\x30\x74\xa9\xc3\xeb\x35\x70\ -\x27\x9f\xc7\xf2\xed\x5b\x38\x78\xf0\x69\x3a\x9e\x38\xde\xbd\x76\ -\xcf\x19\xb9\x7c\xe5\x9b\xa1\x95\xc2\x1f\xdd\x5e\xaf\x57\xdb\x14\ -\x80\x6d\xfb\x58\xad\x87\x40\xca\xaa\x0a\x42\x30\x58\xab\x82\xe8\ -\x52\xc2\x30\x0c\x10\x11\x6e\xe4\x72\x00\x14\x5e\x39\xf6\xaa\xd1\ -\xdb\xd3\x7b\x6c\x72\x72\xe2\xcb\xf1\x89\xaf\xcf\x14\x8b\xc5\x47\ -\x36\x9c\x84\xb6\x65\x31\x94\x02\x33\x57\x37\x27\x02\x91\xf8\x5b\ -\x05\x12\xd5\x31\x11\xa1\x4c\xf7\xc0\x42\xac\x1b\xa6\x02\xb3\xc6\ -\x52\x4a\x26\x22\xda\x30\x80\x65\xdb\x9a\x82\x82\x60\x01\x8d\x19\ -\x42\x30\x48\x10\x84\x10\xeb\x00\x84\x6a\x88\x18\x96\xfd\x10\x96\ -\x6e\x2e\xe1\xfc\x85\x0b\x6b\xba\xae\x4f\x9c\x78\xfd\xc4\xd9\x60\ -\xb0\xe1\x5b\x00\x6b\x9b\x51\x40\x53\xae\x82\x58\x3f\xb5\x10\x0c\ -\x21\xc4\x3f\xba\x6d\xfb\x50\x2a\x39\x98\x9a\x9a\x42\xee\x46\x6e\ -\xe6\xf0\xa1\x9e\x0f\x5b\x5b\x5b\x3f\x03\x90\xdf\xb4\x0f\xd8\x3e\ -\x9b\x15\x00\x22\x02\x11\x41\xb0\x80\x20\x82\x10\x04\xcb\xb2\xa0\ -\x7b\x3c\x98\x9e\x9e\xc6\xcc\xcc\x8f\x0b\xfb\xf6\xc5\x86\x5f\x7c\ -\xe1\xa5\x11\x4d\xd3\xae\xd7\xcd\x88\x0c\xc3\x60\xa5\x14\xaa\x1d\ -\x50\x4a\x41\xf7\x78\xe0\xf7\xef\xc0\xdc\xdc\x1c\xd2\x57\xd2\xab\ -\x81\x40\xe0\x8b\xf8\x6b\x89\xb3\x3e\x9f\xff\x07\x00\x95\xba\x3a\ -\x21\x00\x40\x29\xb8\x6e\x05\x0a\xc0\x8e\x07\x03\x58\xbd\xbb\x8a\ -\xb1\xf3\x63\x6a\xa5\xb0\xf2\xdd\x91\xde\x23\xa9\xdd\xbb\xf7\x8c\ -\x03\x28\x6c\x89\x15\x2b\x54\x4f\x6d\x59\x36\x40\x84\xab\xdf\x5f\ -\x45\x26\x93\xb9\xde\xd9\xd9\x39\xf4\x64\xc7\xfe\x4f\x88\x68\x61\ -\x4b\x0b\x12\x02\x29\x29\x25\x16\x16\x17\x91\x4e\x5f\xce\xef\xda\ -\x15\x1d\x3d\x79\x72\xe0\x23\xc3\x6b\xfc\xf4\x9f\x54\x44\x4e\xa9\ -\x68\x8e\x8e\x9d\x43\x5b\xdb\xde\xc9\xbe\xbe\xfe\x54\xe3\xce\xc6\ -\x4b\x00\x9c\x7a\x95\x64\x54\xeb\xf5\xca\x66\xb3\xf1\x62\xe9\xae\ -\xef\xf1\xd8\x13\x9f\x02\x58\xaa\x77\x4d\x48\xdb\x3f\xa3\x6d\x80\ -\xff\x3d\xc0\x9f\x03\x00\x5c\x19\x25\x50\x90\x2d\xbe\x6d\x00\x00\ -\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x42\xb4\ -\x89\ -\x50\x4e\x47\x0d\x0a\x1a\x0a\x00\x00\x00\x0d\x49\x48\x44\x52\x00\ -\x00\x00\xc0\x00\x00\x00\xc0\x08\x06\x00\x00\x00\x52\xdc\x6c\x07\ -\x00\x00\x42\x7b\x49\x44\x41\x54\x78\x9c\xec\xbd\x07\xbc\xdd\x46\ -\x99\x37\xfc\x8c\xa4\x73\x6e\xf5\x75\xef\x76\x9c\xd8\xb1\xd3\x0b\ -\x69\x4b\xea\x02\xa1\x93\x84\x84\x12\x4a\xe8\x3f\x20\x94\x77\xdf\ -\x65\xe9\x0b\x09\x29\x40\x20\x74\x02\x7c\x21\x59\xe0\x0d\xef\xb2\ -\xcb\x02\x81\xc0\x26\xc0\x02\x1f\xa4\x27\x76\x7a\x48\x71\x9a\xed\ -\xd8\x8e\x7b\xb9\xf6\xed\xe7\x1c\x69\xe6\x7d\x46\x9a\x91\x46\xa3\ -\xd1\x39\x3a\xf5\xde\xeb\x7b\xfe\xf6\xdc\x91\xe6\xa8\x8e\x9e\xff\ -\x53\x66\x46\x23\x87\x31\x06\x6d\xb4\x31\x55\x61\x8d\xf7\x05\xb4\ -\xd1\xc6\x78\xa2\x4d\x80\x36\xa6\x34\xda\x04\x68\x63\x4a\xa3\x4d\ -\x80\x36\xa6\x34\xda\x04\x68\x63\x4a\xa3\x4d\x80\x36\xa6\x34\xda\ -\x04\x68\x63\x4a\xa3\x4d\x80\x36\xa6\x34\xda\x04\x68\x63\x4a\xc3\ -\x19\xef\x0b\x38\x90\x61\x5d\x9c\xef\xc4\xec\x10\x4c\x7d\x98\xa6\ -\x19\x52\x2f\xa6\x12\xa6\x61\x4c\x43\x22\x97\x69\x37\xa6\x75\xf4\ -\xba\xe2\xbe\xd6\x5f\xf9\xd4\x01\x69\x0f\x85\xa8\x1f\x28\xe8\x5c\ -\xc0\x8f\x10\xe9\x48\x25\x3f\x18\xea\xb7\xb2\x7b\x30\xad\xc3\xf4\ -\x9c\xc8\x9f\xc6\xb4\x1a\x89\xb1\xae\xce\xe3\xb6\x01\x6d\x02\xd4\ -\x04\x14\xf8\xe9\x98\xfd\x23\xa6\xb3\x45\x3a\x2a\xf3\xce\x24\xe3\ -\x76\x95\x1f\xcb\x0e\x4c\x77\x63\xba\x47\xe4\x0f\x21\x29\x8a\x99\ -\xaf\xa3\x0d\x1f\x6d\x02\x64\x00\x0a\xbc\x0d\x71\x81\x3f\x09\x93\ -\x9d\xba\x03\x49\x59\x2e\xb7\x9d\x44\xda\xe3\xd0\xcb\x93\xdb\x8d\ -\x60\xfa\x03\xa6\x1b\x31\xfd\x1e\xc9\x30\x54\xe6\xcc\x6d\x08\xb4\ -\x09\x50\x06\x28\xf8\xab\x30\x7b\x2f\xa6\x77\x63\x5a\x68\xdc\xc8\ -\x24\xec\x26\xc1\xce\xaa\xf9\x01\xf6\x41\x0e\xb5\x7b\x27\x2b\x42\ -\x9e\xe5\x90\x66\x0e\x58\xcc\xf1\x73\x1b\xf2\xfe\x16\x45\x18\x83\ -\x22\x29\x60\xee\x62\x0e\xe0\x12\x1b\x97\xba\x81\xc2\x4c\xfc\xb5\ -\x07\xd3\x18\xa6\xff\x81\x80\x0c\x37\x23\x19\x06\x32\x9f\x7d\x8a\ -\xa1\x4d\x00\x0d\x28\xf4\x3c\x30\xbd\x10\xd3\xfb\x30\x9d\x6e\xdc\ -\x48\x17\xf4\x34\x8d\x1f\x13\x7a\x66\x28\x03\x2e\xe4\xcf\xc3\x74\ -\x46\x48\x2f\x9b\x63\x75\xb1\x5e\x92\x83\x1c\xc1\x6d\x88\x15\xec\ -\x42\x74\xe2\x88\xc3\x30\x25\x67\x34\x28\xe6\x39\xf5\xc0\x83\x51\ -\x32\x0c\x7b\xad\x1d\xb0\x1f\x0f\xe2\xc2\x02\xfc\xe9\xe7\x98\xae\ -\x41\x22\x3c\x51\xfe\xee\xa7\x1e\xda\x04\x10\x40\xc1\xe7\xad\x35\ -\x9f\xc5\x74\x11\x04\x5a\x34\x0e\x02\xe5\x05\x3e\x2c\x63\xe5\x5d\ -\x20\x82\xda\xbd\x8f\xed\x23\x33\xe9\x2c\xbb\x8f\xcd\xb6\x6c\xb0\ -\xb8\x90\x73\x79\xf7\x05\x5f\x9c\x87\x28\xc2\xaf\x93\xc0\x7f\x64\ -\x4c\x08\x3f\x28\xcb\x98\xa8\xcc\xa9\x48\x25\xa4\xc0\x5e\x6b\x3b\ -\xf4\x5b\x03\x50\x20\x1b\xd0\x4a\x5c\x8f\x7b\xdc\x82\x64\xa0\xd9\ -\x6b\xe7\xc0\xc5\x94\x27\x00\x0a\xfe\x0a\xcc\x3e\x8f\xe9\x9d\xa0\ -\x37\x0b\xab\xc2\x9d\xa6\xf5\x09\x4b\x6e\xaf\x2f\xf3\xa6\xce\x2e\ -\xb6\xce\x9a\x4f\x67\xda\xd3\xd9\x3c\xcb\x02\x62\x93\x48\xe0\x2d\ -\xd1\x4e\x64\x11\xe5\x54\x96\xc8\x59\xe2\x58\x91\x15\xe0\x7f\xa8\ -\x10\x7e\x12\x08\x3f\x2f\x44\x2b\x10\x92\x81\x0a\x32\x78\x5e\x90\ -\xc3\x80\xd5\xcf\x06\xc9\x06\x32\x4c\x6e\x40\x4b\x71\x2d\x12\xc1\ -\xcd\x52\x4f\x07\x2a\xa6\x2c\x01\x50\xf0\x57\x62\x76\x09\x04\x1a\ -\x3f\x1e\xd0\xea\x02\x1f\x13\x7a\x96\xd5\x05\x2a\xa0\x2f\xff\x18\ -\x6a\xfa\x1e\x7b\x0e\x3d\xd4\xce\x43\xce\xb6\x02\x81\xb7\x85\x70\ -\x5b\xc2\xd5\x09\x97\x25\x01\x94\xe3\x85\x56\x40\xac\x33\x55\xf8\ -\xc5\x82\xb4\x04\xaa\x05\xf0\xdd\x21\x85\x00\x7c\xdd\x53\x88\x40\ -\x5d\xa4\xce\x1e\x6b\x2d\x12\xe2\xeb\x30\x4c\xfe\x2f\x12\x61\x4a\ -\x0a\xc2\x94\x23\x00\x0a\x3e\x0f\x66\xaf\xc6\xf4\x76\x48\x13\x7c\ -\xa3\xf0\x6b\x3e\xbc\x29\xb7\xe0\x19\xe8\x61\x5b\x61\x36\x75\xc8\ -\x34\x66\xa3\x39\x39\xc1\xb6\xa1\xc3\x16\x5a\xde\x92\xc2\x4f\x82\ -\x65\x4b\xb1\x02\x61\x62\x11\x11\xe4\x71\x8d\x06\x40\x21\x82\x4a\ -\x80\x50\xf8\x21\x22\x01\x2f\xf3\x68\xe4\x16\x49\x22\xf8\x64\x28\ -\xe1\xa6\xfb\xac\xc7\x61\x90\x5c\x4e\xbf\xee\xde\x54\x63\xb5\x4e\ -\x5a\x4c\x19\x02\xa0\xe0\x73\x39\xfa\x10\xa6\xaf\x60\x9a\x1e\xfb\ -\x31\x55\xf0\x59\x79\xf7\xc7\xf2\x5b\x6b\x9e\x83\x99\xb8\xdd\x2c\ -\xba\x12\x35\xfe\x2c\xdc\x65\xb5\xc3\xe0\x98\x1c\x81\xe9\x5c\xe8\ -\xb9\xc0\xab\x04\xb0\xa4\xc6\xb7\x14\x97\x87\x44\xa4\xd0\x05\x3f\ -\xad\xf1\x48\x78\x3b\xe1\x82\x74\x81\xd4\xa0\x58\xd5\xfe\x31\x77\ -\x48\x24\x2a\x48\xe0\xba\xc2\x22\x0c\x5a\x8f\xa0\xb3\xf6\x41\x7a\ -\xb9\xf7\x60\x8d\xd5\x3c\xe9\x30\x25\x08\x80\xc2\x7f\x34\x66\x3c\ -\xf8\x3b\x35\xf6\x43\x9a\xe0\xab\xda\xde\x24\xfc\x39\x78\x18\x96\ -\xa2\xe4\x4c\x67\x2f\x52\x8e\x76\x8f\x4d\x61\x29\xd2\x6c\xa9\x14\ -\x7c\xc7\x0a\x5c\x1c\x9b\x44\xc2\xcf\xdd\x7d\x4b\xba\x42\xe2\x98\ -\x31\x4b\xa0\x9c\xcb\x64\x05\x74\xed\xaf\x5b\x02\x4a\x93\xee\x90\ -\x14\x7c\x49\x02\x5f\xf3\x73\xe1\x67\x8a\x35\x40\x12\xb8\x9e\x4f\ -\x16\x4e\x84\x35\x68\x11\xde\x48\xaf\x72\xb7\x55\x59\xd5\x93\x0e\ -\x07\x34\x01\x50\xf0\xbb\x30\xbb\x14\xd3\x27\x81\x8b\xad\x44\x56\ -\xc1\x8f\x0b\x3f\x83\x0e\xb8\x1f\x0e\xf2\x7a\xa0\x97\xa9\x3d\xbf\ -\x83\x36\x83\x2d\xa8\xf5\x0f\x73\x6c\x0c\x6e\x15\xc1\x77\xa4\xe0\ -\xdb\x81\xb0\x87\x42\x4f\xa2\xf5\xd0\x02\x40\xd2\xf5\x09\x17\x4d\ -\xad\x40\xe1\x4a\x94\xc5\x5c\x21\x91\x7b\xbe\x29\x10\x1a\x5f\x5a\ -\x00\x13\x11\xbc\x80\x00\xae\x20\x03\x14\xc9\x20\x8c\xc0\x85\xf4\ -\xf3\xf4\x7f\x32\x57\xf8\x24\xc4\x01\x4b\x00\x14\xfe\xe3\x31\xfb\ -\x15\xa6\x43\x63\x3f\x10\x53\x2a\x23\xf8\x04\x3c\x74\x73\xd6\xc0\ -\x41\x74\x2e\x74\xb3\x95\xe1\xf1\x89\xaf\xcd\x37\x10\x0f\x16\xe7\ -\x2c\xc8\x4b\xc1\x97\xc2\xee\x27\x5b\xd1\xfc\x8a\x15\x08\x9b\x3d\ -\x01\xa2\x66\x4f\x80\x58\xb3\x27\x5f\x64\xa6\x7e\x00\x01\x26\xbc\ -\x33\xd5\x15\xa2\x10\x15\x84\x56\x00\x94\x66\x51\x41\x08\xa6\xba\ -\x41\x2c\x10\x78\x35\x2e\xe0\x24\x28\x61\x19\xf3\xf0\xe7\xfd\xd6\ -\x8f\xc9\x66\xfb\x43\x07\x6a\xb3\xe9\x01\x49\x00\x14\x7e\xde\x89\ -\xf5\x03\x4c\x9d\x61\xa1\x49\xf0\x55\x1f\x3f\x29\xf8\x45\x14\x78\ -\x2e\xf8\x07\x21\x01\x96\xc9\xc3\xd8\x56\x28\xfc\x0f\xb2\x12\xbc\ -\x28\x67\x83\xe5\xd8\x91\xcb\x13\xf3\xfb\x85\xc0\xdb\xba\xe0\x93\ -\xa8\xf5\x47\xba\x3c\xa6\x3c\x26\xfb\x52\xda\x15\x30\x4d\xfb\xcb\ -\xb2\xb0\x6f\x00\x0c\xfd\x03\x4c\xb3\x06\x8a\x05\xe0\xe5\xae\x42\ -\x02\x1e\x1b\xf0\x65\x18\x26\x8f\xc3\x7e\xf2\x4a\xfa\x65\xef\x80\ -\x73\x89\x0e\x28\x02\x88\xe1\xc7\x5c\xf0\xdf\x17\xfb\x21\x4d\xeb\ -\xa7\xb9\x42\x79\x78\x00\x0e\x75\x17\x63\xbe\x50\x16\x2b\x82\x3d\ -\x84\x01\xe3\x13\x16\x85\x7f\xe0\x82\xcf\x85\xde\x16\x04\x08\x05\ -\xdf\x0e\x9a\x97\x6c\x2b\xae\xfd\x65\xa0\x0b\x8a\xfb\x63\x29\xe7\ -\x55\xad\x40\x78\x3d\x10\x59\x03\x10\xbf\xcb\x27\xc6\x42\xf5\x1f\ -\xad\xcb\xed\x28\x8b\x97\x85\x7d\x04\x4a\xf2\xa4\x3b\xe4\x45\x16\ -\xc1\x15\x6e\x51\x49\x58\x05\x9e\xbb\xd2\x25\x1a\x86\xb7\xd2\x4b\ -\xe8\x1f\x6a\x78\x34\x13\x16\x07\x0c\x01\x44\x87\x16\x1f\xfb\x72\ -\x7c\x58\x98\xd5\xdd\x89\x52\x01\xe6\xd0\xd5\xb0\x98\x9e\x25\x4a\ -\x62\x82\x8d\xf9\xd6\xe2\x18\xec\x43\xdf\xfe\xc8\x50\xf8\x05\x01\ -\x1c\x2b\x72\x7b\x62\x16\x40\xd1\xfe\xfe\x29\xac\x78\xaf\x6f\x4c\ -\xe3\x2b\x44\xd4\x83\x5e\xd3\x53\x8a\xf5\x05\x40\x5c\xfb\x83\xd6\ -\x37\x00\x8a\x3b\xa4\xb6\x0a\xc9\xe6\x51\x57\xc9\x43\x57\x88\x06\ -\xc2\x5f\x12\x09\x9d\x41\x8f\x8d\x90\x6b\xd8\x67\xe8\xc7\x6b\x7d\ -\x4e\x13\x0d\x07\x04\x01\x50\xf8\x5f\x8d\xd9\x7f\x81\xda\xbc\x99\ -\x45\xeb\xab\xda\xdf\x82\x75\x70\x28\x3e\xf6\x6e\xc6\x07\xc0\xa9\ -\x42\x2f\xd3\xf6\xc2\x28\x2a\x77\x02\xf3\x54\xcd\xef\x88\x60\xd7\ -\x56\x08\xe1\x5b\x0b\x08\x2c\x81\xaf\xe5\x15\xed\x9f\x68\xf7\x07\ -\xcd\xfd\x81\x48\xb0\x0d\x5e\x4f\xa0\xe1\x89\x41\xe0\x95\x8d\x13\ -\xfd\x02\x9a\x1b\xe4\xc7\xc5\x34\xde\x5b\xec\x6b\x7e\xa6\x08\x3f\ -\x8b\xdc\x20\x19\x1c\x97\x4a\x01\x79\x60\x8c\xac\x81\x9d\xe4\x0c\ -\x7a\xb5\x37\xe9\x7b\x91\x27\x3d\x01\x50\xf8\xf9\xc0\xb5\x9f\x41\ -\x5a\x2b\x4f\x39\xc1\x97\xa9\x87\xdd\x01\xcb\xbd\x93\x91\x04\x5d\ -\x5c\x28\x1d\x2b\xa1\xf9\x77\x8f\x8e\x42\x17\x2e\xf7\xe4\x84\xe0\ -\xf3\xdc\x27\x02\x09\x72\xb9\xbd\xec\xec\x52\x85\x3e\x66\x05\x88\ -\x36\xee\x47\xb9\x64\xf3\x4a\x00\xf5\x31\xc9\x45\x74\x5f\x0a\xa8\ -\x99\x87\x4b\x1e\x0c\xf3\x3b\xc4\x73\xf0\x4e\xb7\x4e\x3c\x6e\x27\ -\x9e\x33\x27\xf7\xa3\x2c\x1a\x36\x41\x53\xdc\x21\xd9\x3f\x20\xad\ -\x80\xb4\x04\xae\x12\x0f\x94\x54\x12\x14\xc8\x53\x18\x1b\x9c\x40\ -\x2f\xf5\x46\x6b\x7d\x76\x13\x01\x93\x9a\x00\x28\xfc\xef\xc7\xec\ -\x3a\x50\xdf\xba\x92\x8e\x75\x36\xe1\xdf\x0b\x4b\xe8\x73\x30\x8b\ -\x9e\xc2\x77\x95\x81\xac\x6d\xc5\x96\xf7\x0c\x0f\xf9\x9d\x5a\x4e\ -\x5e\x68\xf9\x9c\xd4\xfc\x72\x3b\x27\x6a\xf9\xb1\x34\xbf\x3f\xa1\ -\xfd\x01\x12\xad\x3d\xf2\xb2\x55\x2b\xc0\xc1\x02\xad\x4e\x47\x8a\ -\xb0\x65\xff\x28\xec\x1d\x29\x11\x18\x29\x40\x7e\xb4\x04\xbd\x23\ -\x05\x32\x0b\x7d\xf5\x1e\x50\xe3\x00\x26\x76\x0a\x6e\xb9\xd4\x99\ -\x83\xed\x33\xfa\x68\xff\xb4\x5e\xc8\x77\xe5\xd9\x5c\xbc\xee\x59\ -\xfe\x4f\x0a\x11\x62\x4d\xa5\x2c\x8a\x05\xa4\x0b\xc4\xf3\x92\x70\ -\x85\x12\x24\x28\x92\xe7\x61\x94\x1c\x47\x3f\xe7\x4d\xda\xe1\xd6\ -\x93\x96\x00\x28\xfc\xdc\x0f\xfd\x66\xbc\x10\xb2\x6b\x7e\xde\x99\ -\xb5\xd2\x5d\x84\xf9\x7c\xa9\xf5\x0d\xc2\xbf\x73\x70\x18\x35\x3f\ -\xc0\xb4\x9c\xa2\xf5\x73\x42\xe8\x43\xed\x4f\xa2\x20\x59\xd5\xf8\ -\x6a\xe7\x17\x31\x11\x00\x20\x6d\xc4\xa7\x3b\x5c\x84\x4d\xdb\xf7\ -\x93\xc1\xcd\xfb\xe1\xe0\xa2\x87\xae\x5d\xc2\x17\x02\x45\xf0\x49\ -\xb4\x1e\x26\x51\x46\xc5\x3a\x25\xfc\x7a\x86\x67\xcd\xa4\x1b\xe6\ -\xcc\x62\x3d\xdd\x9d\xec\x20\x2c\xb7\x63\xa3\x47\x95\xbc\xe4\x29\ -\x44\x10\x24\xf0\x64\x3c\xa0\x92\xa0\x44\xb6\x62\x70\x7c\x02\xfd\ -\x3c\xdd\x51\xc7\xe3\x1c\x37\x4c\x4a\x02\xa0\xf0\x5f\x09\x41\x07\ -\x57\x80\xac\xfe\xbe\xb4\x13\x1d\x6c\x0d\x1c\xe6\x9d\x88\x65\x8e\ -\x25\x84\x38\xa6\xd1\x83\x7c\x60\x60\x10\x76\xe3\xef\xcb\x55\xcd\ -\x9f\x73\xc4\xb2\x6c\xfd\x21\x8a\xdf\xaf\x0a\xbf\x8c\x03\x04\x29\ -\x63\xed\xfe\x00\xc9\x66\x4f\x06\xde\xe0\x18\xac\xdf\x3a\x48\x46\ -\x37\xf6\xc3\x0a\xd4\xc6\xc9\x21\xd9\x12\x69\x64\x48\x23\x42\x48\ -\x02\xf0\x89\xc0\x73\x87\x90\x81\xb9\x0b\xdd\xe7\x67\x4d\x67\xf3\ -\xf3\x0e\xcc\x57\x5d\x21\x99\xbb\x22\x16\x08\x49\xe0\xc5\x2d\x41\ -\xb1\x24\x8e\xe9\x92\xdd\x30\x44\x4e\xa2\x9f\xf7\x36\x56\xfd\x30\ -\xc7\x19\x93\x8e\x00\x28\xfc\x7c\x2c\xcf\x67\xc3\x82\x34\xc1\x4f\ -\x58\x03\x91\xf2\x70\x3f\x1c\xe6\x1e\x8f\xcb\x39\x29\xec\x8e\x15\ -\x91\x40\x96\x8d\x8c\xc1\x6a\xaf\x08\x2f\xe6\x9a\xde\x27\x80\x2d\ -\x08\x60\xc5\x09\x13\x6a\x7e\x88\xac\x87\xec\xf1\xd5\x5d\x1f\x20\ -\x86\xf1\x3e\x78\xb9\xa8\xed\x9f\x7d\x70\x2b\x74\x0f\x16\x60\x71\ -\xea\x8d\x33\x43\x60\xe0\x97\x6b\xcb\x26\x22\x50\x88\x5b\x04\x41\ -\x02\x40\x21\x26\xb8\xdc\xd7\x47\x9f\x59\xb4\xcc\xeb\xc3\xfb\x5c\ -\xc0\xb4\x98\x20\x46\x02\x37\x72\x87\x4a\x6a\xeb\x50\x40\x82\xfd\ -\x30\x48\x5e\x4c\x2f\xf1\x9e\xca\xf8\x28\x27\x04\x26\x15\x01\x50\ -\xf8\x3f\x02\x41\x3b\x7f\x80\x6a\x85\x3f\x07\x0f\xc0\xe1\xee\x31\ -\xb8\xdc\xe1\x68\x82\xac\x12\x00\x4d\xfb\x3d\x03\x03\x70\x5a\x2e\ -\x17\x08\x7d\x5e\xfa\xfd\x76\x94\xdb\x4a\xb0\xac\x6a\x7d\x47\x13\ -\xfc\x98\xfb\x43\x20\xd6\xf0\x84\xc2\xb3\xf5\x91\xed\x30\xb8\x7d\ -\x18\x0e\x4b\xdc\x6c\xa5\xc7\x62\x22\x44\x2c\x16\x80\xa4\x1b\xa4\ -\x5a\x04\x9f\x00\xc1\x32\x27\x01\x27\xc3\xcc\xb9\xf4\x89\x05\x8b\ -\xbd\x85\x39\x02\xb3\x5c\x16\xf5\x18\x27\x48\xa0\x58\x83\x42\x49\ -\x74\x96\x05\xee\xd0\x5e\x18\x20\x2b\xe9\x17\xbc\xbd\x15\xae\x7e\ -\xc2\x60\xd2\x10\x00\x85\xff\x5c\xcc\xf8\x70\xdd\x60\x08\xb3\x49\ -\xf8\xd3\x04\x5f\xfa\xfc\x87\xbb\x47\xe0\x72\x67\xe8\xc7\xab\x24\ -\x88\xda\xf2\x9f\xdb\xdd\x0f\xcb\x50\xd0\x73\x79\xe1\xf2\x48\xa1\ -\xcf\x5b\xf1\xb6\x7f\x49\x02\xdd\xe5\x91\x5a\x5e\x0f\x7c\xe5\x32\ -\x6a\xd8\x7d\xcf\xee\x81\x8d\xcf\xec\x81\xe3\xf4\xfb\x2c\xd7\xee\ -\x6f\xee\x0c\xc8\x40\x04\x4a\xd2\xad\x81\x24\x81\x47\xa4\x45\xa0\ -\x73\x96\xb8\x4f\xcc\x9f\x4f\x8f\xc0\xeb\x74\x42\x12\x50\xa5\x45\ -\x48\x10\x40\x5a\x00\xee\x0a\x51\x49\xaa\x02\x79\x0e\xb6\x93\x23\ -\xe8\xd7\x26\x47\x13\xe9\xa4\x20\x00\x0a\xff\xc9\x98\xdd\x86\xa9\ -\x3b\x2a\x84\x6c\xc2\xcf\xcb\x1d\x78\x14\xdd\x9e\x95\xb8\xdc\x9d\ -\xd3\x04\x3e\x17\xb7\x02\xc3\x28\xfc\x1e\x2e\xf6\x75\xd8\x41\xa0\ -\x9b\x97\xae\x8f\x1d\x35\x7b\xea\xc2\x6f\x6b\x01\x6f\xac\x09\x14\ -\x20\xe6\xfa\xec\x1c\x82\x47\x1f\xde\x0e\x47\x78\x20\x5e\x70\xd7\ -\xa0\x0f\x69\xd0\xdb\xef\xa3\x0d\x4d\x3b\x6b\x64\x90\xdb\xe8\x42\ -\xaf\x92\x42\xba\x44\x9e\x20\x81\x20\x45\x47\x27\xdb\xba\xec\xb0\ -\x52\x0e\xef\x79\xae\x24\x41\x49\xb6\x0a\x29\x4d\xa3\x45\x91\xc2\ -\xa0\x98\x1f\x73\x84\xdc\x4a\x3f\x45\x5f\x56\xfe\xa9\x4e\x0c\x4c\ -\x78\x02\xa0\xf0\x2f\xc7\xec\x5e\x4c\xf3\xa2\x42\xa8\x2c\xfc\xb2\ -\xcc\x81\xc7\x50\xf8\x97\xe3\x7a\x4f\x4e\x17\x7a\x25\xe7\x16\x61\ -\x60\x08\xb6\x14\x8b\xb0\x38\x2f\xb4\xbe\x2a\xfc\x39\x43\xe7\x97\ -\x65\xc5\xc7\xfe\x48\xdf\xdf\x12\x72\xa8\x36\x83\x22\xbc\xf5\x7b\ -\xe0\xb1\xe7\xf6\xc3\xf1\x52\x4c\x55\x71\x8d\xb9\xf2\xaa\xf0\x43\ -\xbc\x23\x4b\x6d\xbe\x34\xee\xec\xaf\x93\xe4\x6f\xba\x35\x50\x89\ -\x60\x24\x81\x6f\x0d\xdc\x45\xab\x4a\xcf\x4c\xef\x63\x47\xa0\x86\ -\x27\x5c\xcb\x97\x0c\x56\x40\x12\xa0\x24\x5d\x21\xde\xc9\x36\x42\ -\xae\x65\x9f\xa6\x1f\xc9\xf0\x88\xc7\x15\x13\x9a\x00\x28\xfc\x33\ -\x30\x5b\x83\x69\x55\x58\x18\xf3\xf1\x53\x7c\x7e\xb9\x6e\xc3\x13\ -\xe8\xf6\x2c\xc3\xf5\x5e\x29\xe4\xa1\x2f\xaf\x11\x00\xb5\xd7\xdf\ -\x51\xfb\x1f\xeb\x0b\xbe\xa2\xf9\xa5\x1b\xe4\x6b\x7e\x4b\xf1\xff\ -\x6d\xc3\xcb\x2e\xa0\x34\x7b\xf2\x24\xca\xf1\xd8\xa3\x4f\xec\x82\ -\x8d\x3b\x47\xe1\x70\xff\x16\x48\x74\x2b\x12\xa1\x9c\x96\xb1\x00\ -\xd4\x90\x3c\x6a\x38\x88\xbf\x5c\xc1\x1a\xa8\x2d\x43\x2c\xd2\xfc\ -\xba\x25\xe0\xeb\x7d\x73\xbd\xb5\x8b\x0f\xf2\x56\xe2\x35\x38\xae\ -\xb4\x06\x8a\x0b\x24\x9b\x45\x0b\x6e\x30\x8e\x48\x1c\x97\xb1\x01\ -\xf2\x4f\xec\x73\xf4\x07\x59\x9f\xf7\x78\x60\xa2\x13\xe0\x17\x10\ -\x4c\x51\x12\x20\x21\xec\x06\xed\x1f\xad\x0f\xa0\xe6\x1f\x42\xdf\ -\x7f\x91\xa3\x05\xb1\xb1\xf6\xfc\x40\x90\x4b\x3b\xf7\xa0\xe1\x06\ -\x98\x9e\xd7\x09\xe0\x28\xad\x43\x86\xd6\x1f\xd9\x01\x16\x7b\xcd\ -\x11\x22\x22\xa0\x90\xee\x7d\x78\x07\x0c\x0f\x95\x60\x29\x11\xf7\ -\x10\x5a\x00\x55\x51\x4b\xc1\x17\x7f\x62\xc2\x0f\x90\x78\xc9\x5d\ -\x0e\x6d\x0e\xc7\xf7\x53\x88\x8d\x0d\x8a\x0e\x9c\x62\x0d\x62\x2e\ -\x10\x98\x49\xe0\x89\xed\x50\xb0\x7b\x67\x7a\xcf\x2c\x59\xe1\x1d\ -\x82\xd7\x91\x93\xfd\x02\x61\x0f\xb1\xe2\x0a\xf9\x4d\xa3\xd2\xda\ -\xb8\xf8\x6f\xc0\x7a\x35\xbd\xc4\xfb\x6b\xf5\x4f\xbf\x35\x98\xb0\ -\x04\x10\x43\x9a\x7f\x1c\x16\x24\x04\xbc\xac\xf0\x03\x2c\xf0\xee\ -\x86\x39\xec\x74\xdb\x52\xdc\x18\xcb\xdc\x9c\x89\x0f\xed\xfe\xbd\ -\xfb\xe0\xe4\x0e\x27\xd0\xf6\x3e\x01\x94\x76\xff\x9c\x15\x1f\xf0\ -\x96\xd0\xfe\x90\x6c\xf6\xe4\x39\x0a\xc6\xe6\x07\x77\xc2\x34\x97\ -\xc1\x0c\xd9\x1a\x04\x50\x9d\x05\x50\xb5\x3f\xd3\x34\xbf\x3e\xaa\ -\x53\xf6\xe2\xc6\x0e\xe8\x2f\xa7\x91\x00\xe2\xad\x42\x69\x24\xf0\ -\x02\x12\x74\xcd\xa0\x1b\x0e\x3a\xd4\x5d\x88\xd7\xd1\x19\x23\x80\ -\xe2\x0a\x71\x02\xb8\x9e\x72\xfc\x12\xd9\x0f\x7b\xc9\x12\x7a\xa5\ -\x37\x21\x67\xaa\x9b\x90\xb3\x43\xa3\xf0\xf3\x66\xc1\x6b\xc2\x82\ -\x44\x70\xcb\xd2\x5b\x7b\x78\xea\x60\xf7\x72\xe1\xe7\x42\x98\xd3\ -\xda\xfa\x75\xff\x9f\x77\x78\xf5\xef\x87\x23\xd4\x31\xfd\xdc\xdd\ -\x09\xfd\x7e\x11\xf4\x3a\x44\x11\x7e\x12\x35\x77\xda\x24\xea\x03\ -\x50\x03\x60\x14\x8a\x17\x1e\xde\xe9\xf7\x32\xe7\x39\x99\xfc\x4b\ -\x93\xda\x9f\xc4\x85\x5f\x22\xa6\xfd\x01\xe2\x03\xd9\x20\xae\xfd\ -\xf9\xf9\xa4\xf6\xf7\xc7\x1f\x31\xde\x14\x1f\x2c\xfb\xe4\x50\x0f\ -\x2a\x47\xc0\x32\xed\xc4\xc2\x44\x85\x41\x4b\xb8\xec\xef\x84\x7f\ -\x19\xfe\x15\xeb\xb8\xef\xe8\x3e\xeb\x90\xe7\x9f\x76\x36\x1d\xb4\ -\xca\x9d\x8b\xf5\xd4\xe5\xfb\xfa\xb6\xb8\x2e\x3b\xb8\x06\x5b\x90\ -\x90\xc9\xe7\x96\x63\xd3\x49\x2f\xfc\x16\x97\x5e\x5e\x8b\x2c\x34\ -\x1b\xd6\x78\x5f\x80\x0e\x14\x7e\xde\x3a\xc2\x67\x32\x8b\x7a\x42\ -\xb3\x08\x7f\x64\x19\x76\xc0\x72\xef\x70\x22\x84\xd8\xb6\xb5\xf6\ -\x7e\x25\x08\xe6\x42\x34\x36\x06\x8f\xe3\x7e\xbd\xaa\x9b\xa4\x0e\ -\x6e\x4b\x8c\x0a\x25\x4a\xcf\xaf\x15\xc5\x06\xea\x38\x20\x5c\x1c\ -\x78\x62\x2f\x74\xe1\xb9\xf3\x39\x2d\x90\x36\x05\xd7\xc6\x72\xcb\ -\xfc\x7b\xde\x51\x5c\x34\x91\xab\xf1\x4a\x5e\x21\xb9\x24\x5b\x54\ -\x8f\x8a\x59\x50\xeb\xcd\x12\xd6\xd4\x52\xea\x57\x94\x31\xf9\x9b\ -\x2f\xdd\xe8\xe7\x0f\x5a\x07\x6d\x59\xef\x6c\xe5\x3c\x0b\x1b\x01\ -\x6c\xa5\x71\x40\xd4\x9f\x7a\x0e\xd6\xcd\xce\xb6\xbe\x64\xbd\xbb\ -\xc1\xa2\xd2\x10\x4c\x38\x02\x20\xbe\x8a\x29\x7a\xd9\xbc\x1a\xcd\ -\x8f\x0e\x1d\x2c\xa5\x2f\xe0\x83\x9a\xa9\xf6\xea\xaa\x0f\x46\x1b\ -\xef\xb3\x65\xef\x00\xbc\x48\x2d\xcb\x91\x38\x59\x1c\x65\xb8\x83\ -\xb4\x26\xe1\x2b\x8f\x42\xe3\x86\x63\x81\x02\x6b\xe0\x3e\xb7\x0f\ -\x76\xa0\x12\x9c\x1d\x13\x5e\x47\x71\xa9\x34\x81\x8d\x09\xbe\x13\ -\x6d\x9f\xaf\x40\x8e\xbc\x9d\x3c\xa6\xbe\xad\x7c\x01\x27\xaa\x4f\ -\x03\x09\x54\x97\x52\x25\x84\x10\x7a\x66\xb3\x58\xf9\x48\xbf\xb5\ -\x62\xd7\x0e\x6b\x6d\x38\x14\x84\x44\xcd\xc0\x92\x0c\x44\x7f\x36\ -\xd3\xe0\x07\xd6\x55\xf6\xec\x26\xc8\x4b\x5d\x98\x50\x2e\x10\x6a\ -\xff\x97\x62\xf6\xb1\xb0\xa0\x9c\xb0\x5b\xfa\x32\xe3\xc3\x9a\xef\ -\x84\x3e\x76\x56\x4c\x80\xcb\xa4\xc1\x61\xd8\x88\x0f\x6a\x71\xce\ -\xd2\x3a\xc6\x88\xa2\xf5\x15\xed\x2f\x5b\x7b\xc2\xce\x2f\xd0\x5e\ -\x7c\xc1\xf5\xed\xc3\xf0\xf8\xb0\x07\xc7\x4b\xe1\x33\x0d\x87\xd0\ -\x65\x52\x42\x8d\x03\x54\x17\x88\x2a\xf1\x80\xef\x02\x91\xc8\xff\ -\xd7\xdd\x1f\xd3\x08\x54\x57\x8f\x0d\x08\x8b\xe2\x02\x79\x21\xd2\ -\x1d\x92\xdd\xd7\xa0\x5e\x0c\xf1\x49\xe0\xbb\x43\xc2\xb7\xef\x7f\ -\xc1\x39\xba\xa3\xb7\xb4\xb6\xb7\x9b\x1d\xe1\xbb\x64\xc2\x0d\xe2\ -\xd7\x27\x3b\x0a\xfd\x58\x40\x9e\xc3\x61\x3d\x90\x83\x5b\x40\x9f\ -\x99\x63\x9c\x31\x61\x82\x60\x14\x7e\x4e\xc6\x47\x21\xf8\xb0\x84\ -\x28\x84\xb8\x80\x13\xbd\x0c\x54\x33\xbe\x1e\x0e\xf7\x16\xa2\x60\ -\x76\x95\x73\x33\x14\xff\x7f\xe8\xf9\xad\xa8\x68\xd1\x4d\xe1\x67\ -\xe6\x01\x70\x87\xd0\xa6\x1d\x76\xbc\x7f\x20\x61\x39\x14\x41\x53\ -\xde\x11\xe6\x63\x7a\x1e\x7b\x66\x10\x8e\xd1\xdf\x05\x48\x1b\x09\ -\xaa\xa3\x2c\x01\x52\x9a\x40\x63\xad\x41\x34\x12\x76\x35\x0f\x7b\ -\x71\xf5\x00\x59\x0f\x8e\x65\xeb\x90\x0c\x8a\x95\x31\x43\x3c\x10\ -\x26\x22\x18\x96\x41\x32\xdf\xe2\xa0\x63\x8b\xdb\xb0\x0e\x16\xf3\ -\xe3\x17\xbd\xa8\x59\x94\x0f\x91\x28\xca\xce\x31\x80\xa8\x7f\x60\ -\x3f\xf9\x18\xfb\x3c\xfd\x6e\xb5\xf2\xd1\x2c\x4c\x24\x17\xe8\x7f\ -\x81\x2a\xfc\xd5\xb9\x3e\x1e\x2c\xa3\x05\x5c\xee\x4a\x8c\xe9\x37\ -\xb8\x3e\xbe\xef\x5f\x80\x9d\x84\x7b\x1a\x44\x71\x6d\x2c\x25\xd8\ -\x55\xb4\xbf\x63\xc5\x9b\x3c\x13\x96\x81\xf8\xc2\xb6\xf1\xb9\x61\ -\x38\x52\x77\x43\x9c\x14\x22\x86\xae\x8b\x93\x74\x61\xb2\x24\xc7\ -\x4e\xb6\x6e\xe9\xe7\x32\xb5\x78\x85\x75\x0b\x90\xe2\x0e\x99\x5c\ -\x21\x88\xe2\x01\x5b\x29\xc7\xbf\x5b\x9f\xcd\xe5\x91\xd4\x2e\xb1\ -\x20\xf9\x52\x90\xa5\x9e\x2b\x48\x18\x10\x7f\xd5\xba\xd2\x9e\xdf\ -\x50\xc9\xa9\x03\x13\xc2\x05\x42\xed\xcf\x7b\x79\x2f\x0f\x0b\xca\ -\x0a\xbb\x9e\xf0\x61\x74\xc0\x1a\xe8\x66\xa7\xa9\xc2\x1a\xfa\xef\ -\x3a\x21\x44\xda\x39\x04\xb3\x63\x0f\x4c\x11\x76\xbd\x87\x57\x0d\ -\x72\x6d\xc5\xdd\xf1\x7f\x0b\xae\xd8\x7b\x6e\xc8\x0f\x78\x6d\x4b\ -\x89\x0b\x12\xaf\x41\x42\x7a\x4b\x90\xd2\x02\x54\x40\x6d\x3f\xc6\ -\xf8\xb4\x5b\x65\x2c\x00\x97\x41\xbf\xf3\x56\x7a\x2d\x34\xe9\x02\ -\x11\xed\x1c\xf2\xbc\xbe\x6b\x42\x20\xe9\x0e\xf9\x0f\x03\x22\x57\ -\x28\x54\x3e\xc2\xcf\xe2\xae\x10\x5e\x88\x3f\xb3\xaf\x70\x85\xdc\ -\x51\x32\x77\xff\x3e\xeb\xf1\xbe\xe9\xf4\x68\x2a\xea\xc8\x9f\x14\ -\x80\x06\x6e\x50\xac\xa3\x8e\x1f\xcf\x66\x9d\xa4\x03\x7e\x84\x4b\ -\xe7\xd6\x28\x2e\x0d\xc5\x84\x20\x00\xe8\xd3\x15\xea\x02\x9e\x28\ -\x83\xb8\x65\x58\x44\x67\x27\x5e\x65\x54\x04\x5e\x7b\xb7\x97\x0b\ -\xc8\xc6\xd1\x02\x2c\xe3\x6e\x8f\x5d\x46\xfb\x87\xa3\x3d\x41\xf8\ -\xfe\xf2\x38\x00\xb1\xb7\xbe\x46\x4b\xf0\x24\x7a\x05\x7c\x3a\xc4\ -\xc4\xdb\x60\xaa\x30\x5a\xe2\x3e\x04\x11\x06\x31\xfb\x3d\xa6\xdb\ -\x31\x6d\xc6\xb4\x05\x65\xeb\x85\x5b\x4e\x64\xfc\xe3\x78\xf0\x9a\ -\x07\x48\x0e\xd7\xe7\xf2\x84\xf2\x78\x22\xe6\xaf\x42\x61\x7f\x05\ -\x2e\xcf\xf4\x09\x40\x03\x4f\x44\x0a\x3e\x5f\x26\x34\xa5\x9a\x54\ -\x2d\xcc\xc1\x84\x3b\xa4\x93\x40\xae\x5b\x20\x7f\x88\x9e\x10\x5f\ -\x15\x24\x08\xb6\x61\x41\x25\x21\x99\xf6\x6c\x70\x8e\xec\x39\xae\ -\xb8\x17\xaf\x63\x96\x24\xbf\x1b\x35\x0a\x44\x4d\xb2\xe2\x82\x58\ -\x37\x7b\x8d\x75\x85\xbd\x8a\x5e\xe6\x3d\x53\xb3\xc4\x34\x08\xe3\ -\x4e\x00\xd4\xfe\xfc\x75\xc4\xf7\x86\x05\x55\xb9\x3e\xc0\x47\x79\ -\x3e\x04\x5d\xec\x04\x55\xc8\xb5\x17\x5b\x12\xda\x7c\x78\x04\xb6\ -\x63\xd9\x32\x47\xdb\x47\x5a\x0c\xd5\xb7\xd7\x88\x13\x92\x41\x5a\ -\x02\xfc\x5f\xdc\x32\x06\x8b\xd4\x37\xc3\x4c\x04\x10\x4d\xed\xbb\ -\x71\xf9\xb7\x24\x18\xd5\xfa\xd7\x9b\x8e\x67\x85\xb4\x7a\xf9\xe3\ -\x49\x8c\xf7\xa9\x6e\x15\x89\xc7\x46\x3f\x79\xe5\x7d\x84\xbf\xc1\ -\x75\x32\xfa\xfb\xaf\x42\x6d\xfb\x6a\x14\xfe\x93\x51\xf0\x6d\x9f\ -\x04\x00\x89\x97\xee\x81\x40\xf2\xbd\x63\x16\x85\x00\x6e\x4c\x3b\ -\x6b\x24\xd0\x9f\x43\x38\xc0\x09\x02\x2b\x60\x11\x75\x4c\x91\xb5\ -\x6b\xa3\xd3\xbf\x60\x99\x3b\x93\x87\x0a\x52\x59\x78\xa2\xee\xa9\ -\x6e\x05\x2c\xd4\x21\xdd\xec\x27\xb8\x74\x46\x25\xf9\x68\x36\xc6\ -\x3d\x08\x46\x02\xf0\x81\x6e\x2f\x8e\x0a\x20\x1e\xf8\xea\x41\x6f\ -\x18\xfc\x8a\xdf\x96\xd0\x87\xac\x3e\x76\x42\xb9\xa6\x43\x35\x98\ -\xc5\x75\xba\x61\x0b\x6c\xc6\xbd\x97\xf1\x60\xb7\xc3\x89\x52\x5e\ -\x0f\x96\x9d\x78\xd3\xa7\x6a\x4d\x24\x09\x46\x4a\xf0\xc8\xa6\x02\ -\x1c\x9f\x18\x17\x14\x17\x7e\x3e\xcc\xe2\x1b\xb8\xfc\xb5\x1b\x8f\ -\x65\xc3\x8d\xaa\xbb\x97\xdd\x4b\x66\xa2\x55\x78\x0f\xba\x19\x9f\ -\xc4\xb4\xc8\x4b\x09\x80\xe5\xd8\x1d\x57\x19\xcc\x56\xa2\xd1\x6b\ -\x8f\xa9\x41\xb1\x1a\x08\x2b\x03\xe6\xfc\x80\xd8\x15\xcb\x32\x47\ -\x2c\x3c\xaa\xb8\x11\xeb\x78\x59\x51\x79\x63\xac\x28\xde\x19\x48\ -\xbc\xa9\xe6\xe1\xdf\x7d\xd6\x69\xf4\x52\x6f\x75\xa3\xea\xa3\x16\ -\x8c\x6b\x10\x8c\xc2\x7f\x36\xa8\xc2\x9f\x59\xfb\x8b\xdf\x6c\x78\ -\x0a\xa6\xb1\x13\x12\xfe\xba\xe6\xf7\xc7\x02\x56\x80\x7b\xf1\xa1\ -\x2c\xe5\x6e\x4c\x42\xbb\x5b\x10\x9b\xc6\xdc\x21\x5a\x5b\xbf\xba\ -\x1c\x5c\xef\xd8\xb6\x12\x2c\xd7\xc7\x17\x29\x24\x62\xb8\xfe\xef\ -\x98\x1f\xf6\xeb\xe3\xd8\x65\x8d\x14\x7e\x8e\xbf\x9d\xca\xfa\x6f\ -\x3f\x8d\x7d\x1b\x8f\xbf\x1c\xcf\xfd\x21\x4c\x1b\xc2\xa0\xdf\x86\ -\xd8\x6b\x9e\xda\xb0\xef\x68\x4c\x93\xac\x53\x80\x78\x50\xec\x3f\ -\x20\x08\x5c\x1d\xb5\xee\x45\x80\xcc\x2c\xa5\xc3\x4c\xec\xdf\xbf\ -\xc5\x71\x89\xaa\x04\x14\x65\x10\x3b\x46\x70\x6c\x02\x9d\xec\xdf\ -\x1a\x59\x1f\xb5\x60\x5c\x09\x00\xea\xab\x8d\x1c\xba\xaf\x5a\x2e\ -\xe7\x69\x2e\xed\x57\x03\xd8\x44\xaf\xad\xd6\x22\xc1\x7f\x1b\x2b\ -\x40\x01\xd7\x2d\xb9\x2e\x93\x23\x7d\x7b\x93\xc0\x43\xbc\x15\x48\ -\xfe\x3e\x5a\x84\xa7\xf0\x38\x7d\xfa\xe0\x3a\x21\x5c\xdb\x71\xf9\ -\x8c\x5f\x1d\xcb\xde\xf5\xcb\x63\xd8\x0b\xcd\xab\x42\x80\xdb\x4e\ -\x63\x85\x3b\x4f\x67\xd7\xe1\x39\x57\x61\x7a\x17\xa6\xb5\xba\xa0\ -\xab\x2d\x62\xb1\x0e\x42\x2b\x0a\x8e\x83\xba\x65\xc9\xba\x56\xad\ -\xae\x14\x7a\x41\x84\x30\x21\xc6\xf6\x59\x2b\xd0\xba\xec\xb4\x94\ -\x7a\xf4\x7b\xc6\x75\x29\x93\xcf\xaf\x93\x1d\x6d\x5d\x69\x9f\xd7\ -\xa4\x6a\xc9\x84\x71\x23\x00\x6a\xff\x13\x40\x1d\x1f\x52\xad\xf6\ -\xb7\x30\x70\x9c\xc9\x4e\x09\xfd\x74\x4d\xd0\xd5\x76\x7a\xf5\xf7\ -\x81\x61\x58\x6a\xa5\x68\x76\xf9\x56\x97\x7a\x9c\x70\x5e\x4f\x71\ -\x7a\x19\x07\x70\xef\x67\x17\xf5\x05\x2e\xf1\x56\x19\xa6\x47\x31\ -\x9d\xf2\x8b\xa3\xd9\x3d\xad\xac\xd3\x3b\x4e\x67\xee\xdd\x67\x32\ -\x6e\x71\x8e\xc6\xf4\x4e\x4c\xfb\x62\xc3\x40\x08\x24\x66\xbf\x90\ -\x29\x15\xaa\xbb\x19\x12\x01\x34\x2b\x10\x6d\x3e\xb8\xc7\xde\x15\ -\xce\x81\x24\xf2\xf0\xf8\xba\x15\xe0\x79\x37\xfb\x4e\x63\x6b\xa1\ -\x3a\x8c\xa7\x05\xf8\x4c\x6c\x4d\xd7\xee\x95\xd2\x4c\xb6\x01\x2b\ -\xd7\xb6\x75\xbf\x5c\x77\x6b\x48\x3c\xa8\x1d\x1c\x81\x65\x6a\x19\ -\x49\x71\x81\x62\xad\x37\x06\xb2\xa0\x0f\xbd\x11\xb7\xed\x56\x85\ -\x5f\x68\xd6\x9b\x31\x3f\xe3\x3f\x8f\x62\x9b\x5b\x55\x91\x3a\x90\ -\x04\x74\xf5\x3f\xb2\x9f\xe1\x75\x1c\x87\xe9\xae\xb0\x4e\x6c\x73\ -\x8f\xb8\x9d\xe6\x0a\x99\x9e\x49\xe8\x12\x69\xe3\x87\x44\x7b\xf0\ -\xd0\x0e\x9b\x0f\x64\x2c\xaa\xc3\xc2\x89\x7a\x6c\xd0\x8e\xd9\xc1\ -\x0e\xb1\xbe\x68\x9f\xd9\xa4\xaa\xa8\x88\x71\x21\x00\x6a\x7f\x3e\ -\x65\xf9\x9b\xc2\x02\x5d\xc3\xcb\xb2\x44\x1e\xfa\x9b\x7b\xd1\xfd\ -\x39\x59\xd5\xdc\xaa\x25\x30\x69\x7f\xf1\x40\x76\x62\x20\x98\x57\ -\x87\x35\xc4\x2c\x80\x26\xec\xbe\x35\x00\x73\xab\xce\x28\x85\x52\ -\xcc\xbd\x08\x12\x17\xba\xf3\xff\xe3\x48\x36\x21\x86\xfe\xae\xf9\ -\x47\xb6\x09\xaf\xe9\x25\x98\xae\xc0\xe4\x25\x3a\xf6\xb4\x78\xc9\ -\x87\x89\x04\xaa\xe5\x95\x65\xc2\x1a\x84\x83\xe5\xc4\x6f\x8c\x82\ -\x33\x56\x20\x9b\xd4\x2f\xde\x48\xab\x19\x3f\x5e\x94\x48\x9e\x5d\ -\xd6\xc4\x6a\x28\x8b\xf1\xb2\x00\x9f\x8c\x9d\xdb\x24\xec\x69\xae\ -\x0f\x4f\x9d\xec\x49\x20\xfe\x54\x85\xa0\x5b\x00\x53\x33\xa4\x0c\ -\x92\x0b\x45\x18\x35\x69\xf3\xb0\x79\x13\x92\xda\x9f\x28\xbf\x29\ -\xcb\xde\x30\x81\x15\x9a\x00\x3d\x80\xf9\x07\xfe\xfd\x08\x46\x5b\ -\x51\x81\x59\x81\x24\xf0\x1e\x7c\x19\xbb\xdc\x0e\x88\xb0\x29\xd6\ -\x43\x6e\x25\x9b\x8c\x53\x61\x7a\x16\xaa\x0b\x14\xf5\x0e\xc3\xd0\ -\x4e\xcb\x6f\x4f\x8a\x75\x04\xda\xe9\xc7\x64\x9d\xec\x4c\xeb\x2a\ -\x3b\x7d\x1e\xa4\x26\xa2\xe5\x04\x10\x1f\xa2\x7e\x67\x58\x90\x26\ -\xe4\x00\xe9\x84\xe8\x63\x24\x26\xec\x9a\x05\xb0\x2d\x33\x11\x46\ -\xc6\x82\x78\x4c\x1f\xab\x13\x06\x6b\x60\xb6\x08\x44\x21\x8d\x3f\ -\x3d\x39\x83\xcd\x78\xa0\x1e\x45\x8b\xee\x44\x01\xba\xe0\xa7\x87\ -\xb3\xb1\xd6\xd4\x62\xf5\x78\xe8\x65\xec\x2e\xdf\x25\x22\xf0\x47\ -\x53\x63\x81\x4c\x7e\x95\x57\xb2\x02\x6a\xe2\xb1\x80\xf6\xdc\x46\ -\xfb\xed\x95\xa8\x05\x86\xa5\x05\x90\x1f\xff\x4b\x7d\x9e\x36\xe4\ -\x19\x63\x9f\x6b\x7a\x25\x18\x30\x1e\x16\xe0\x02\x50\x67\x77\x30\ -\x09\xbb\xcc\xd5\xa4\xfe\xd6\xc7\x56\x99\xb4\x7c\xc2\x8d\xd1\x62\ -\x81\xa1\x11\xe8\x26\x8a\x59\xd6\x49\xa0\x7e\xbb\x57\xd5\x60\xb1\ -\x56\x0d\x4c\x05\x0a\xfd\x4a\x2f\xb3\x8b\xcb\x6f\xbe\xe1\xb0\xe6\ -\xb6\xf4\x34\x02\x0f\x9f\xcd\xf6\xe1\xb5\x5e\x80\xe9\x4f\x26\xe1\ -\x97\xa4\x48\x85\xae\xac\xb4\xa0\x58\x95\xa6\xc2\x28\xf1\x63\xa0\ -\xf0\x33\xb0\x69\xc7\x15\xfb\x93\x0e\x78\x77\xdd\x37\x58\x03\xc6\ -\x83\x00\x17\x85\x4b\x31\xc1\x36\x68\x17\xd3\x6f\xfc\x53\xa4\x0e\ -\xcc\x55\xb5\xbe\x2e\xc0\x69\xe4\x18\x2b\x41\x5f\x38\x6f\x8f\xaa\ -\xe1\xc5\x79\x42\x4d\x0f\xca\xf1\x40\x73\x8b\x70\x7d\xc8\x82\x79\ -\x8a\xeb\xf0\x6d\x14\xfe\x3b\x5a\x50\x6f\x0d\xc1\xa3\x2f\x67\x05\ -\xbc\x97\x0b\xf0\xde\x6e\x8d\x09\xbe\x62\x39\x63\x56\x40\x85\x6e\ -\x05\x38\xd4\x18\x80\x44\x6e\xd0\xc8\x1e\xcb\x91\x81\x35\x31\x29\ -\x31\x1d\x1d\x6c\xb1\x75\x85\x7d\x56\x63\xee\x32\x3b\x5a\x4a\x00\ -\x31\xe8\x2d\xfe\x6a\x9c\xae\xf1\x4d\x65\xea\x6f\xdd\x6c\x5b\x39\ -\xf7\xc4\x32\xe4\x92\x04\x25\x17\xf2\x7a\xcb\x8e\xaa\xe5\x75\xeb\ -\xa0\x06\x72\x52\xc9\x61\xbe\x9b\x12\x58\x2c\xce\x39\x80\x42\xf3\ -\xd5\xa6\x55\x58\x93\xf0\xd8\x2b\xd8\x28\xd6\xc7\xb9\x78\x0f\x77\ -\x59\xc4\xdc\xec\x1b\xa2\x5c\x8b\x90\x92\x74\x37\xa8\x30\x60\x1f\ -\x2c\x86\x2b\x25\x06\xe5\xa5\x1e\xa7\x83\x5d\xde\xf0\x9b\xad\x80\ -\x56\x5b\x80\xb7\x00\x28\x1f\xa7\x4e\x13\xfe\x98\xd0\x6b\xad\x0f\ -\x7d\xac\x37\x8b\xfb\xa3\x0b\x38\xe6\x05\xf9\x61\xb9\x50\xe0\xd5\ -\xa4\x6c\xcf\x21\x5b\xf7\x62\x84\x00\xdf\xff\xdf\xad\xb8\x0d\xdf\ -\xfc\xd1\x4a\x36\x69\xa6\x01\x54\xf1\xc4\x2b\xd9\x30\x5e\xff\x6b\ -\x31\xad\x51\xbf\x63\x26\xeb\x2d\x15\xb1\x67\xc5\x92\x56\x41\x48\ -\x14\x6f\x0d\xf2\x3c\xd8\xa5\x5a\x57\x92\x76\x5c\xb9\x6f\x17\x9c\ -\x66\xfd\xb2\xac\x13\xd6\x70\xb4\x9a\x00\x66\xf7\x47\xd7\x32\xfa\ -\xef\xe1\x76\x50\x80\x5e\x76\x84\xc9\xcd\xd1\x35\x7b\xe2\x77\x86\ -\x9e\x8b\xd2\xde\x6d\xd4\xfc\x00\xc9\xa1\xcb\x62\x59\xba\x45\x8c\ -\x40\x51\xb4\x2a\xed\xc6\xfc\xdb\xcd\xa9\xa6\xd6\x60\xed\xab\xd8\ -\x20\xde\xd3\xab\x51\xf8\x1f\x8d\x35\x24\xa4\xf5\x0b\x00\x24\x5d\ -\x52\x59\x16\x56\x60\xa4\xb0\x8a\x63\xa4\x5f\xfd\x99\xc4\x8e\xa1\ -\x17\xf2\xfd\x59\x07\xac\x85\xf3\x1b\x79\x8f\x95\xd0\x32\x02\x88\ -\x6f\x78\xfd\x43\xac\x50\xaf\xc4\x44\x99\x16\x17\xd8\xb0\x16\x05\ -\xb2\xdb\xd8\x8a\xa3\x11\x41\xff\x1d\x35\xf7\x68\xec\x39\x01\x44\ -\xbd\x95\xa2\x0c\x14\xc1\xf7\xaf\xd9\x70\x5c\x7c\xf6\x9e\x70\x15\ -\xae\xb9\x7e\x05\x1b\x6c\x4a\x65\xb5\x10\xcf\xbc\x86\xed\xc3\xfb\ -\x7b\x2b\xa6\x51\xbd\xf3\x30\x01\xe3\x33\x82\xb0\x02\x19\x89\xf7\ -\x0c\x17\xf6\x59\x39\xd9\x02\x94\xaa\xfd\xd5\x63\xf0\xe7\x94\x67\ -\xef\x68\xc4\x7d\x65\x45\x2b\x2d\xc0\xeb\x62\x6b\x69\xda\x3e\x6d\ -\x99\xa3\x87\xed\x33\xbd\x6a\x98\x26\xf8\x6a\x19\xa5\x50\xd0\x0f\ -\x1b\x5b\x27\x71\x45\xa6\xfa\xfe\x21\x59\xc0\x1f\xe2\x6b\x09\xb7\ -\xeb\x37\xf5\x57\xc9\xc4\xc0\xba\xd7\xb1\xa7\x90\xd0\xff\xaa\xbb\ -\x95\xa9\xd0\x9f\x51\xca\x7a\x11\xe3\x00\xa6\xbc\x0e\x50\x16\x62\ -\x1f\x92\x87\xd3\xaa\xbd\xfe\x7a\xd0\x4a\x02\xbc\x24\x5c\x8a\x55\ -\x98\xd6\xd6\xac\xfe\xae\x6f\x3b\x8d\xcd\x31\x35\x53\xaa\xf5\x6e\ -\x22\x03\x2f\x47\x02\xb8\xb1\xd3\x12\xe5\xd0\x29\xc2\x6e\x7a\xb6\ -\x7c\x52\x5b\xd4\x94\xeb\x7f\xb8\x9c\x3d\x51\x67\x7d\x4c\x28\x60\ -\x3d\x5d\x83\xe9\x56\xdd\xa2\x1a\xdd\x20\x00\x48\xc4\x68\x09\x37\ -\x29\x88\x03\x30\x0d\x43\x39\x6b\xa2\x97\xe5\xd8\x3c\xeb\x0a\x7b\ -\x49\x5d\x37\x53\x05\x5a\x42\x00\x74\x7f\xf8\xad\xc5\x9b\xb8\x4c\ -\x42\xae\x2e\xeb\x5d\xef\x1c\x79\x36\xc7\xd2\x85\xdf\x20\xec\xaa\ -\x26\x97\xdb\xe2\x83\xf0\x80\xa4\x68\x7f\x80\xd8\xac\x6d\x21\x09\ -\xc4\x06\xb1\xd7\x0b\x6d\xe0\x41\xf8\xcd\xb5\xd6\xc5\x44\xc5\xfa\ -\x73\x18\xc3\x7b\x7c\x0f\x6a\xfe\x81\x98\xcb\xa7\x23\xac\xe0\x32\ -\xad\x43\x4a\xc3\x85\x47\x61\x20\xb6\x6f\xea\xf1\xc2\x44\x98\xc5\ -\x3e\x50\xff\x1d\x65\x43\xab\x2c\xc0\x31\x98\xa2\x39\x61\xf4\x4a\ -\x33\x2d\x9b\xb6\xb5\x61\x76\x42\xf8\xf5\x75\x62\x5e\x77\x1c\xe5\ -\xbb\x02\x10\x3c\x3f\xa6\x9f\x8a\x98\x4f\x1b\x5e\x1a\xfe\xf1\xf0\ -\x1a\xf0\xd8\xff\x5d\x5b\x35\x4c\x6c\x6c\x3e\x8f\x6d\xc2\x5b\xfc\ -\xe7\x70\xc8\x87\x49\x60\x55\x98\x2a\x49\x33\x9d\x9e\x4b\x86\x63\ -\xd3\x31\x56\x02\xf1\xdd\xa0\x73\xaa\xbd\xf6\x5a\xd1\x2a\x02\xbc\ -\x24\x51\x22\x35\x45\xb8\x0c\xf1\xe5\x24\x21\xb8\xff\x9f\x8b\xb9\ -\x40\xa0\xb9\x32\x60\x76\x83\x7c\xcb\xea\xf8\x73\x5e\xc5\x36\x8c\ -\xed\xa7\x5d\x8a\xfe\x56\xa0\xaf\xd4\x18\xf0\x99\x27\x78\x10\xde\ -\xd2\x61\xce\xad\xc4\xb6\x0b\xd8\x0d\x78\x7f\xb7\x58\x69\x16\x40\ -\x87\x56\xf9\x7a\x7f\x80\x5b\x20\xa5\xb4\xaf\x3b\xa5\x1e\x2b\x0f\ -\x47\x55\x73\xcd\xf5\xa0\xf5\x04\xa8\xe4\xfa\xa4\x2d\x5b\xb0\x17\ -\x48\xd2\x45\x89\x2d\x2b\x0f\x2d\xa6\x8c\x88\x1f\xd4\x75\xca\x99\ -\x17\x4c\xf0\x5f\x87\x35\x84\x23\xb1\xcb\x08\xde\x77\xed\xff\xde\ -\xc1\x13\x77\xcc\x4f\x23\x80\xf5\x75\xa9\x5a\xb7\x15\x7d\xf8\x32\ -\x02\xee\x8d\x92\xf0\x7b\xc5\x89\xaa\x4f\x3b\xae\xc3\x3a\xac\xcb\ -\x5b\x33\x44\xba\xe9\x04\xa8\xda\xff\x57\x7d\x48\x55\xbb\x58\x30\ -\xa8\x0a\x34\x00\x24\x02\x56\xb5\x0c\x34\x32\xd8\x36\x74\x87\x2f\ -\x84\xcb\xf7\x52\x95\xc5\x98\xb1\x51\xde\x01\x97\xae\x8f\xd8\x26\ -\x6f\x13\x58\x57\x65\x15\x4c\x3a\xec\x7c\x03\x7b\x04\xeb\xee\xcf\ -\x89\x1e\x5c\x53\x20\xec\x23\x65\xe6\x0e\x84\x37\x46\x7a\x8d\xc2\ -\xaf\x1f\x47\x23\x03\xc6\x01\x2d\x19\x16\xd1\x0a\x0b\x70\x30\xa8\ -\xfe\xbf\x84\x51\xf0\x53\x7e\xe3\xb0\x60\x54\x17\xfc\x98\x1b\x43\ -\xe2\x65\xb1\x72\xf0\xdb\xed\x7b\x99\xd8\x39\x7c\x37\x5b\x2c\x48\ -\xa1\x0f\xc9\x40\x20\xf6\x05\x16\xf5\xb9\x3b\x1e\x3c\x97\xe5\xa6\ -\x27\x3b\xb0\x0a\xae\xae\xd8\x7b\x9b\xc8\x93\x62\xce\x3c\xd2\xe1\ -\xe7\x2c\x5e\xa7\xa9\xc7\x94\xc9\x51\xe6\x87\x6d\x22\x5a\x41\x80\ -\x55\xb1\xb5\x6a\x05\x5f\xc2\x61\x45\xbf\x58\x13\x72\x93\xdb\xa3\ -\x2e\x93\xe8\x58\x0e\xef\xe8\x61\x9a\xf6\xf7\x73\x16\x9f\x2a\x93\ -\x29\x0a\x4d\x7f\x66\x4e\x30\x4d\xc9\x01\x8f\xbd\x6f\x66\x7f\xc3\ -\xfb\x7f\xd0\x28\xff\x26\xcd\x2f\x73\xcd\x02\x30\x97\x74\x55\xb4\ -\x00\xa6\x53\xd8\x86\x2f\x67\x36\x01\xad\x27\x00\x87\x5f\x41\xc9\ -\x76\xe3\xd4\xe5\x40\x23\xd0\x98\xb2\x21\xc9\x43\x86\x87\xd6\x5c\ -\x20\x10\x65\x5d\xb9\x60\x3c\x90\x9f\xc4\x74\x20\xa1\xf0\xb3\x48\ -\xf8\xd5\xcf\xec\x02\xc4\x1f\x5e\xce\x83\x03\xda\xff\x57\x81\xd5\ -\xf0\xb5\x8a\x3d\xb8\xa9\x08\x6a\x0d\xeb\xb9\xbb\x5c\xec\x95\x0a\ -\xa7\xcc\x37\x93\x1b\x88\xd6\x12\x20\x53\x65\x32\x33\x09\x9c\x70\ -\xb4\x42\x58\xac\x5b\x61\x75\x85\x28\xeb\x72\x39\x67\x43\x7f\x38\ -\xf1\x2c\x89\xa6\xbe\x91\x44\xa0\x26\x89\xd7\xdd\x5e\x02\x73\xca\ -\xdc\xc5\x01\x05\xbc\xd7\x5f\x63\x56\x77\xcc\xc3\x78\x77\x40\x1a\ -\x01\x74\x99\x08\x5d\x20\x36\xdd\xfa\x17\xbb\xe9\x13\xb7\xb5\x82\ -\x00\x2b\x63\x6b\xe5\xdc\x9c\x72\xbf\xe5\x58\x87\x69\xfb\xd8\x2e\ -\xba\xf0\xc7\x97\xb7\x17\x8b\xf8\x30\x19\xc4\xbe\xbc\x12\x42\x2c\ -\xd3\x30\x40\x48\xb6\x5c\x88\x89\xd3\x0e\x85\x29\x82\x81\xb7\x30\ -\x3e\xe5\xd5\xb5\x99\x36\x36\x29\x37\x51\xc6\x7b\xe1\xab\x9e\x7f\ -\x8d\xa0\x6c\x4e\xd3\xc6\x8e\x35\x01\xe3\xe7\x02\x99\x96\xcb\xff\ -\x56\xd6\xe0\x56\xf8\x95\xe3\x4f\x0e\x81\x27\xe5\x67\x47\xc3\xcf\ -\x62\xb1\xf8\x87\xe8\x00\xa2\x0f\x28\x4a\xa8\xee\x10\x7a\x6e\x87\ -\x54\x3c\xd3\x01\x04\xac\xd6\xff\xa9\x66\xe3\x58\x2e\xc0\x67\x52\ -\xcc\x14\x00\x6b\xeb\xcc\x66\x4d\x6f\x0a\x6d\x2a\x01\xac\x8b\xf3\ -\xbc\x05\x60\x99\xf1\xc7\x72\x24\x30\x6d\x4b\xa1\x54\xe7\xe5\xfc\ -\x11\x6f\xf6\x5e\xf9\x8d\x2d\xae\xdb\x18\x55\x3e\x42\x2d\x49\x40\ -\x21\xfe\x71\x6a\x69\x0d\xc2\x9b\x82\x05\x1f\xde\x1a\xb4\x6c\x4c\ -\x05\x8c\x5d\xe4\x8f\x79\xda\x96\xba\x41\x65\xc5\xc3\xeb\x2e\x97\ -\xea\x02\x95\x3b\x96\x9d\xfc\x92\x7e\xa3\xd1\x6c\x0b\xb0\x2c\x76\ -\x8e\xac\xda\xde\x54\xa9\x1e\x29\x3f\xaa\xb0\x7c\x05\xf3\x7d\xff\ -\xe2\x74\xc3\x2f\xf9\x32\x65\xd1\x47\xe7\x74\x0b\x10\xe6\x4a\xb3\ -\xa8\x66\x29\xba\xe6\x8e\xc2\xb8\xcd\x63\x33\x4e\x48\xff\xcc\xa9\ -\xa9\xde\xd5\xf6\x0d\x1b\xab\x8e\x66\xa1\x89\xdc\x01\xc2\xe7\x6f\ -\x59\x30\x33\xf3\x7e\x35\xa2\xd9\x04\x98\x5e\xf3\x9e\xba\x39\xa5\ -\xfc\xd3\xcb\xda\x36\xba\x8f\xae\x35\x6f\x2a\xcb\xf7\xfd\xfc\x28\ -\xb6\xf7\x91\xd7\xb2\xe1\x0e\x0b\x5e\xa0\x8a\x80\x7b\x9a\xb6\x57\ -\xbf\xc2\xce\xd4\x78\x00\x22\x72\x60\xa5\xbd\xa2\xe6\xfb\x9a\x9c\ -\xf8\xff\x33\x6d\x65\x22\x83\xc3\xc6\xbc\x6a\xfd\x7f\x79\x38\x82\ -\x51\x40\x93\xd1\x6c\x02\xf4\x26\x4a\xf4\x0e\x93\xac\xae\x10\x83\ -\x58\x6b\x5a\x5a\x33\xa5\xde\xc6\x2f\x84\xf7\x8f\x72\x15\x09\x70\ -\x8f\xfc\xac\x90\xa7\xb8\x3b\xf2\xd3\xa2\x52\xe3\x53\xaa\xc4\x09\ -\x10\x09\xbf\x58\x3f\xb9\xcc\x95\x1e\x88\xa8\x4c\x80\x34\x4b\x80\ -\x04\xa8\x69\xa6\x24\x2e\x0b\x16\x34\x7d\xae\xa0\x66\x13\xc0\xcc\ -\xe0\x54\x41\x67\xe9\xbf\x79\x51\xcf\x81\xa9\x5d\x39\x46\x0c\xa5\ -\x15\x47\x20\x0c\xe4\x72\x36\xfc\x97\xfe\x91\x69\x19\x0b\xf8\x42\ -\x4f\x93\xb1\x81\x74\x81\xe4\x79\x71\xfd\xb4\x2b\xd7\x93\x29\xd3\ -\x1c\x4a\xdf\xc5\xb6\x60\xb6\xb6\xba\xbd\xc4\x83\xb4\x59\xa9\xe6\ -\x99\xc2\xc8\xe4\x27\x40\xd2\x02\x54\x03\x95\x0c\x6e\xd4\xa5\xae\ -\xbb\x24\x12\xa6\x96\x1b\x4c\x45\xfc\xf3\x80\x2c\xb7\x8f\x85\x9b\ -\x09\x81\xa2\x47\xa3\x8f\x4e\xbb\x6a\x4c\x00\xc9\x8f\x52\xab\xb1\ -\x81\xff\xcd\x38\x06\x1d\x68\x9e\x3f\x5e\xd7\xbd\x4d\x3e\xdc\x9a\ -\x28\x31\x9a\x60\x6d\xdd\x81\x7a\xa6\x89\xec\xaa\x63\xdf\x4c\x18\ -\x1f\x0b\xa0\x23\x4b\x2b\x90\x07\xb3\x12\x3e\xbe\x16\xb4\x82\x16\ -\xbc\x42\xf0\xdb\x8e\x1b\x8f\x8b\x8c\xf0\x83\x87\x32\xda\x63\xc3\ -\x7d\xf2\x2b\xeb\xe1\x97\x16\x69\x5c\xe8\x43\x0b\xc1\xa2\x38\x21\ -\x6c\x1e\x0d\xd6\xdf\x98\xad\x0a\x0e\x18\x6c\x08\x97\xc2\x0a\xd6\ -\xdb\x3b\x49\x82\x14\xcc\x66\x23\x35\x9f\xd1\x82\xce\x9a\xf7\xcd\ -\x7c\x8a\xe6\x22\x22\x40\xf6\x76\x00\xf3\xb6\x0c\x96\x84\x72\xae\ -\x69\x65\x45\xdb\x9b\x5c\xa0\xed\xfa\xa1\xba\x1c\xf8\x86\x2e\xfc\ -\x61\xd2\x48\xa0\x5a\x1c\xe9\x22\x71\x22\xb8\x00\xab\xbe\xb4\x91\ -\x1c\x5d\xc5\x5d\x4d\x76\xec\x00\xd3\xc0\xfe\x34\x2b\x20\x61\xb3\ -\xda\x65\x8c\x40\xd3\x9b\x9b\xc7\xcf\x05\xaa\x86\x10\x01\xba\xa1\ -\x04\xdb\x8c\x4d\x95\x0c\x12\xbd\xbb\x0a\x21\x76\xe8\x07\x7a\xe8\ -\x02\xf6\xbb\x3c\x81\xfe\x18\x09\x94\xc0\xd8\x53\x35\x3f\x0d\x5c\ -\x24\x3f\x56\x80\x78\xf3\x29\x96\x7d\xba\xea\xbb\x98\xbc\xd8\x99\ -\x28\x09\x85\x9f\x44\xeb\x6a\xe2\xb0\x59\xed\x5f\x87\xb7\x20\x57\ -\xf3\xbe\x99\x4f\x31\x89\x8e\xcf\x8a\x64\x87\xde\x46\xaf\x0e\x57\ -\x90\x65\x34\x4e\x88\x84\x05\xe0\xe8\x76\xe0\x66\xcf\x0b\x84\xdb\ -\xff\x8e\x96\xa7\x59\x00\x91\x54\x8b\xe0\x29\xae\x11\x2f\x2b\x31\ -\x78\xf3\x95\x2f\x90\x96\x0c\xda\x9a\x00\x88\x2b\x12\x5d\xf3\x8b\ -\x9c\xa8\x6e\x50\x50\x5c\x3b\x01\x58\x0d\x6a\xb2\x4a\x34\x9b\x00\ -\x8d\x9d\x27\xbf\x00\x83\x09\x21\x07\x48\xf4\xdc\xb2\x0c\x04\xe8\ -\xb4\xe1\x4a\xdc\x87\xfa\x82\xef\x05\xc2\xad\x7e\x54\x2e\xf6\x35\ -\x76\x9d\x18\x51\x7c\xd0\xe9\x95\xe0\xfb\x0d\xbd\xc7\x89\x8b\x84\ -\x25\x2d\x1b\xfc\xe2\x32\xe9\xa0\x7c\x08\x7b\xed\x03\xda\x58\xf3\ -\x47\xde\x36\x9b\x00\xe9\x13\x47\xa5\xf9\x8c\xe5\x30\x4a\xf2\x29\ -\x42\x9e\x88\x05\x94\x36\xfc\xe4\x83\x43\xdc\x77\x3e\x5b\xd7\xe7\ -\xc0\xbd\x2e\x55\xac\x80\xfa\x95\x45\xcd\x3d\xa2\x9e\x62\x01\x68\ -\xf0\x61\x44\x61\x05\xce\xfd\xe2\x0b\xe4\xd8\x1a\xee\x66\xb2\x61\ -\x17\x80\xec\x8d\x81\xd4\x26\xb7\xd8\x03\xe8\xa6\x46\xe5\x93\x19\ -\x14\x6a\x0f\xa0\x33\xa2\x75\x16\xa0\x1a\x81\x4f\xdb\xb6\x04\x87\ -\xaa\x9a\x3f\x0c\x54\x41\x5b\x57\x12\x4d\xb1\x00\x1c\x3d\x1d\xf0\ -\x61\x14\x72\xea\x8a\x4f\x87\x86\x9f\x17\x65\xc1\xba\x1a\x18\x7b\ -\x2c\x19\x28\x0b\x42\xd8\x6e\x09\xfe\xbf\x2a\xee\x6e\x52\x82\xbe\ -\x9b\x61\xdc\x0f\x7b\xfc\x15\xff\xf9\xe8\x2f\x4d\x28\xeb\x32\x26\ -\xe8\xac\xe3\x1b\xbc\x01\x89\x9a\xfe\xa5\x9d\x66\x8f\xb7\xce\x36\ -\x75\x20\xbf\xd9\xf2\xbd\xc0\xf2\xf7\x39\xac\x00\xeb\xa9\x0d\xcb\ -\x4d\xc3\x17\xd4\x75\xa5\x6c\x20\xed\xb0\x6b\xce\x63\x8f\x1d\x73\ -\x23\xb9\x67\xc8\x85\x33\x5c\x5b\x7c\x47\x97\x7f\x74\xda\x0b\xe6\ -\xfe\xe7\x44\xf0\x67\xfc\xf6\xe2\x13\xed\xca\x8f\x3f\xf3\x75\x4e\ -\x88\x02\xc0\xe9\x57\x3c\x4f\xae\xc5\xf2\xa7\x6d\x0b\x36\xe5\x08\ -\x6c\xc4\x7c\xc3\xc7\x17\x4e\xce\x89\x73\xcb\x80\x3f\xcf\x39\xe9\ -\x82\x0f\x71\x52\x58\xac\xf6\xa1\x30\x1c\x14\xf6\xd7\xb5\x7f\x06\ -\x4c\x0c\x02\xa4\xc1\x40\x0c\x36\x42\xb6\xd0\x2e\xb6\x5c\x15\x74\ -\x9a\x14\x7a\x95\x08\xf3\xca\x9d\xa2\xc7\x81\x0f\xed\x2f\xc2\xdf\ -\x51\xe3\x5b\x7c\xea\x38\x39\x45\x38\xff\xd0\x33\x37\x8f\x7c\x99\ -\xcf\xf1\x6d\xd1\x88\x00\x44\x7c\x18\x3a\x1c\xb4\x45\xfc\x8f\x66\ -\x7c\x48\x6e\x5f\x22\x41\xc5\x7e\x65\x3b\x29\xe1\x6f\x03\x48\x8c\ -\x7d\xb6\x0d\x7b\x71\xff\x5d\xf8\xfb\x0e\xcc\xb9\x55\xda\xba\x6d\ -\x10\xf6\x6e\x1b\x80\xcd\xff\xe7\x48\x76\x67\x5d\xf5\xd4\x3a\x44\ -\x75\x19\x23\x41\x90\x88\x4a\x06\x02\x45\xcc\xfa\xaa\x3e\x83\x72\ -\x5c\x54\x3e\xfd\xf5\x5d\x6e\x65\x34\x9b\x00\x66\x13\x96\xaa\xf1\ -\x49\x20\xb9\xe5\xac\xc1\x28\x71\xf8\xd7\xed\xd3\x04\xdf\x40\x8a\ -\x85\xe5\x2e\x70\xf5\xf9\xec\x89\x63\x6f\x24\xb7\x0e\x7a\x70\x36\ -\xd7\xfe\xb6\x27\x66\x48\xa6\x62\xb6\x64\x21\xf8\xf2\x35\xcc\x70\ -\xfa\x15\x3e\xa9\x2e\x0d\xca\x5d\x12\xbb\x83\xe0\x16\xf8\xf5\x58\ -\x90\x63\x36\xcc\x66\x14\x66\xe3\xa6\x2b\xf8\xf1\xf8\x7b\x9d\x7b\ -\x46\x01\x7e\xfd\x18\xc0\xb3\xbb\x82\x7d\xfe\xfa\x2c\x29\x9c\xb0\ -\x04\xbe\xf0\xdb\x13\xd9\xd7\xca\x5d\xeb\x78\xc2\xba\xc1\x9a\x86\ -\xcf\xad\x27\xe6\xe2\x98\x34\xbf\x24\xc3\x34\xef\x05\xcc\x96\x57\ -\x75\x12\xcd\x61\xc2\xb8\x6b\x4f\xbd\xd7\x5d\x09\xcd\x8e\x01\x92\ -\xee\x87\xf4\x1f\x63\xeb\x86\xe5\xb4\xfd\x4a\x70\x14\x9f\xe8\x56\ -\x15\x7c\xbd\xf7\x56\x23\x45\x59\x02\x70\x4c\xcb\xc3\x85\x16\x83\ -\x11\xee\xf7\x73\x12\x70\xed\x5f\x12\x31\x41\xc9\xd3\xe2\x01\x1a\ -\x35\x9b\xaa\xc1\xb2\xcb\x0c\xb1\x02\x0d\x82\x67\x75\x9c\xd1\x70\ -\x11\xe0\xfa\xd5\x91\xf0\x73\xec\x18\x82\x8e\xbb\x9e\x87\xab\x5f\ -\xff\x00\xf9\x45\xa5\x6b\x1d\x47\x44\xf5\x18\x6a\x69\x12\xf9\xfc\ -\xaa\xff\xcf\x09\xd0\xeb\x75\x54\x15\x00\xe8\x1b\x07\xc7\x4b\xf6\ -\x3d\x34\x18\xcd\x26\xc0\xa6\x9a\xf7\x34\xb5\x36\x04\xe8\xa3\xc3\ -\xe4\x11\x5d\xd0\x3d\x2d\x1e\xc8\x6a\x01\x38\xee\x3e\x8f\xed\x9d\ -\xdd\x09\x9f\x2b\xba\x51\x30\x2c\x49\x50\x12\xa4\x70\x95\xe4\xa9\ -\xa4\x50\x72\xd7\x44\x16\x71\x3c\x19\x34\x3f\x8f\x3a\x6d\xaf\xd2\ -\xb6\xc1\x63\x8d\xae\x5c\xf0\x95\xf9\x27\x77\xc2\x85\x17\xfd\x9d\ -\xfc\xb0\xe6\x3a\x6b\x2e\x82\x7a\xd4\xdc\x1e\x63\x22\xc0\xd0\xd2\ -\x2d\xa8\xfb\x8c\x9e\xb9\x05\xaf\x91\x68\x2a\x01\xe8\x75\xc5\x61\ -\xcc\xb6\x84\x05\x26\x96\x57\x5a\x36\x61\x80\x30\x4a\x93\x63\x75\ -\x52\x48\x50\x91\x00\x1c\xf7\x9d\xcf\xbe\x3b\x2d\x07\x8f\x15\xf1\ -\xb8\x3e\x11\x68\x14\x14\x73\x21\x2e\xca\xfe\x02\x85\x10\x9e\xdc\ -\x4e\x13\x7a\x8f\xc6\xfb\x14\xa4\xb5\xe0\xd6\xe0\x05\xc5\x26\x72\ -\x97\xa8\x33\x17\x24\x4e\x82\x3c\x3a\xa4\xcf\xee\x81\x8b\xdf\xff\ -\x24\xb9\x2a\xcb\x35\xb7\x14\xbc\x1e\x13\xda\x1e\xc2\x26\x4f\x42\ -\xa3\x59\x06\xac\x19\x1e\x57\x7c\xa6\x0f\xa3\x9a\x8e\x9b\x5c\x97\ -\x31\x00\x25\x4d\x9f\x82\xa6\x15\xef\x04\x3f\x63\x2c\xad\x46\xe0\ -\x75\x6b\xe0\xc2\xf1\x28\x4c\x83\xb1\xc1\x6b\x86\x41\x6c\xa2\x3c\ -\x13\x01\x38\x66\x74\xc0\x05\xf8\x00\x8b\x25\x21\xf0\x45\x21\xec\ -\x45\xaa\xb8\x46\x42\xa0\x4b\x8a\xbb\x24\xb5\x7c\x82\x0c\xda\xb2\ -\x24\x04\x87\x98\xa6\xc5\x4f\x92\x04\x1d\x4e\xf0\xfd\xde\x8d\x83\ -\xf0\xaf\x1f\x7d\x96\x7c\x22\xeb\x75\xb7\x08\x0b\xe3\xad\x3c\x06\ -\xf7\x47\x92\xa0\xc7\xeb\x8e\xed\x59\x95\x2f\x24\xf7\xf1\x8f\xd5\ -\xf4\x2f\x6f\xb6\x82\x00\xcf\x26\x4a\xca\x09\x7f\x36\x62\x74\xd2\ -\x41\xf2\x68\x42\xf8\x69\x7c\xa8\x82\x68\xb3\xcf\x4c\x00\x74\x85\ -\xd6\xcd\xef\x86\x4f\xa0\x50\xb3\xd0\xfd\x71\x23\x57\x88\x13\xc1\ -\x75\x23\x12\xb8\x8a\x8b\xe3\x0a\xf7\x29\x8c\x09\x34\x17\x48\x6e\ -\x7b\xe2\x22\xbc\x78\x47\x24\x29\xfc\x4e\xa0\xfd\xfd\x94\x0b\x82\ -\xf0\x1d\x23\xf0\xf5\x8f\xaf\x23\xef\xcd\x7a\xed\x2d\xc0\xc2\xb4\ -\x0e\xaf\x50\xfb\x73\xdf\xdf\xf1\xe7\x5e\x6a\xcc\xbb\x12\x25\xd8\ -\xd8\x90\xe3\x94\x41\xeb\x2d\x40\xad\xc2\xaf\x5b\x81\x21\xd2\xa7\ -\xba\x3e\x1e\x8d\x07\xa0\x8a\x35\x98\x76\xc6\x9d\x24\xf3\x8b\x15\ -\xab\x5f\xcf\xbe\x3f\xa7\x03\x6e\xe4\x6e\x50\x51\xb5\x04\x82\x0c\ -\x05\x5d\xe8\xc5\x7a\x68\x09\xdc\x78\x2c\x10\xba\x4a\xa2\xcc\x41\ -\x59\x79\xc9\xf2\xa4\xe6\xd7\x93\x65\x01\xd9\x53\x82\x1f\x7f\x6a\ -\x1d\x79\x7d\xd6\x6b\x6f\x2a\x7c\x17\x28\xa5\xcd\x5f\x10\xc1\x27\ -\xc3\x4c\x77\x33\x83\xc4\x2c\xa2\x59\xcf\x11\x25\x17\xf5\xcd\xd5\ -\x9e\xd9\x7b\x68\x20\x5a\x4b\x80\x8a\xad\x3c\x1c\xa4\x42\x6c\x10\ -\xfa\x9a\xc7\xd2\x51\xf2\xb8\xa7\x6b\x7d\xad\x25\x48\x10\xe3\xc4\ -\x6a\x2e\xf8\xa1\x37\xb2\x0b\x7b\x1d\x78\xb6\x28\xb4\x3f\xcf\x0b\ -\xc2\x02\x94\xe4\xb2\xab\x05\xcb\x5a\xe0\x2c\x49\x21\xad\x80\x8c\ -\x1f\xf8\x3e\xc7\xce\x43\x12\x1c\x0c\xd0\x9d\x37\x0b\x7f\xde\xf6\ -\xdf\x5c\xe3\x96\x80\x2c\x72\xe0\x37\x77\x6e\x27\x1f\xad\xe6\xfa\ -\x9b\x02\x5e\x87\x6a\x4b\x8f\x2f\xf0\x44\x19\x73\x22\x9e\x4b\x07\ -\xad\x7e\xf0\x9b\xe2\xf7\x87\x28\x36\x5f\xfb\x73\x8c\x4f\x0c\x20\ -\x2b\x51\x5d\x2f\xb7\x6c\x22\x0e\x0f\x74\xfb\xc9\x88\x3e\x44\x21\ -\xb4\x00\x71\x4b\x70\x5e\xb5\x17\x3d\xbb\x0b\xce\x44\x59\x1c\x2c\ -\x08\x12\x70\xcd\xce\x97\x25\x09\xb8\x55\x28\x28\x9a\x5d\x6a\xfe\ -\xa2\x74\x9b\x5c\xe1\x2e\xb9\x4a\x2b\x92\x17\xb5\x16\x1d\x32\x1d\ -\xe0\x74\x74\x87\x7a\xb8\x05\xc8\x25\x85\x3f\x2f\xd2\x98\x05\xd6\ -\xc9\x39\xf8\xfe\xea\xed\xe4\xc2\x6a\xef\xa1\x51\xb0\x7e\x62\xad\ -\x40\x61\x3f\xc2\xe8\xfe\xb0\x58\xf0\xbb\x16\xdd\x9f\xf8\x4c\x0e\ -\x35\xf9\xff\xf8\xbf\x08\x6b\xea\xbe\xf0\x0c\x68\x05\x01\xf8\xd4\ -\x7a\xe6\x31\x41\x3a\xf3\xab\x71\x81\x38\x5c\x38\x99\x16\xe0\xb9\ -\xd8\xdb\x5d\x54\x6b\x19\x0a\x88\x50\x35\x01\xee\x38\x87\xed\x58\ -\xd8\x03\x67\x61\x05\x0d\x17\xa4\xd6\x17\x42\x5f\x54\x04\xbd\x28\ -\x92\xeb\x25\x53\x51\xb3\x06\x7a\xd0\x3c\xb3\x03\xe0\x45\x73\x01\ -\x7a\xf3\x9a\xf0\x2b\xcb\x43\xbc\xa5\x08\xd3\x31\x39\xf8\xc5\xfd\ -\xdb\xc9\xd9\xd5\xde\x47\x43\x40\xe1\x1c\xbd\x9d\x1f\x94\x56\x1f\ -\x69\x09\x48\xaf\x57\xdd\xd0\xf0\xb4\x16\x20\x3c\x07\x29\x92\xdf\ -\x37\xe0\xca\x2b\xa2\xe9\x04\xa0\xd7\x71\xf1\x80\xbb\x13\x3f\xd4\ -\x42\x84\x24\x09\x08\xdd\x6b\xed\x48\xb3\x02\xca\x1b\x5f\x2b\x4f\ -\xb9\x8d\x54\x3d\xdb\xf0\x9d\xe7\xb2\x47\x16\xf5\xc2\x4b\xf1\xf1\ -\x8e\x16\x94\x80\x58\xc6\x07\x05\xaa\x2c\xab\xa4\x50\x05\x5f\xb3\ -\x06\x2a\x41\x38\x21\xf8\x67\x6b\x56\xf4\x04\x24\x50\x35\x7f\xce\ -\x09\xfa\x08\xf8\xb0\x0a\x3e\xa6\xb8\x87\xcf\xc9\x98\x87\xbf\xdc\ -\xbc\x89\xac\xa8\xf6\x3e\xea\x06\x23\xe7\x1a\xfd\x7d\xc5\x05\xb2\ -\x67\x79\x7c\xba\x99\x3e\x93\x37\x53\xdd\xb9\xfc\x44\x51\xb9\xfd\ -\xae\xee\xeb\xce\x80\x56\x7d\x21\xe6\xb6\xd8\x5a\x39\x01\x8f\x35\ -\xb1\xa5\x6d\xaf\xc4\x09\x25\xf8\x07\x8f\x0f\x90\x33\x08\xbf\xf6\ -\xda\x63\xd5\x56\x80\xe3\xce\x73\xd8\xfd\x8b\x7b\xe0\x65\x84\xc2\ -\xd8\x98\xb0\x00\x05\x69\x09\xdc\x28\x97\xcb\x25\x11\x1c\x17\x5d\ -\xad\x05\x49\xba\x48\x6e\x44\x14\xe9\x12\xf1\x7b\x99\x8d\x42\xdf\ -\x63\x47\x9a\x9f\x77\x8c\xf1\x26\x51\x9e\x6e\xc6\x63\xfe\x04\xb7\ -\xb9\x1e\x15\xe3\xa3\x1d\xf0\xf0\x67\x9f\x21\xdd\xb5\xdc\x4b\x2d\ -\xb0\x7e\x64\xf7\xe1\xf5\x9d\x95\xea\xfb\xcb\xe5\x6e\xaf\xb6\x17\ -\x5f\x74\xb7\x8a\xa3\x00\xdb\x31\x00\x1e\xad\xff\xea\x2b\xa3\xf5\ -\x04\xa8\x46\xd3\xab\xcb\x69\x65\x0c\x1c\xba\xdb\xea\x77\xf5\xe6\ -\x47\xdd\x22\xd4\x10\x07\x48\xa0\x25\x58\x8d\x24\x78\x39\xf5\xa0\ -\x54\x28\x45\x6e\x50\x48\x06\x85\x10\xc5\x52\xb0\xce\xcf\x5f\xf4\ -\x22\xa1\x2f\x29\x79\x49\x27\x83\x17\xb4\x14\xe5\x5d\x3e\x07\x70\ -\x40\x00\xae\xfd\x65\x7a\x12\x65\x6c\x87\x15\x8c\x3f\xea\xea\x86\ -\x69\x7d\x33\x60\xd3\xe5\xf7\x92\x7c\xad\xf7\x53\x15\x18\xbc\x0a\ -\x53\x2e\xde\xde\x2f\x7c\x7f\x41\x02\x67\x8e\xbb\x0e\x95\x4c\x72\ -\x06\x87\x4c\x8d\x1e\xc9\x72\x52\x82\x47\xeb\xbf\xf0\x6c\x68\x15\ -\x01\xf8\xb4\x24\xc3\xb1\x12\xa9\xc9\xc3\x65\x88\x2f\x9b\x2c\x40\ -\x9a\x55\xf0\xe0\x44\x6f\x88\xac\xd1\xb5\xbf\x46\x82\x53\x5f\xf4\ -\xb7\xda\xe7\xf2\xb9\xf3\x3c\x76\xf7\xa2\x6e\xf8\x8a\x2f\xf4\x25\ -\x91\xdc\x28\x15\xf5\xe5\x52\xdc\x1d\x52\x2d\x82\x6a\x05\xf4\xc4\ -\xfb\xce\xdd\xd1\x40\xf3\x4b\x22\xd8\x6a\xc2\x2a\x9b\xd6\x0b\xb3\ -\x3b\x96\xc3\xfa\x5a\xef\xa5\x2a\x50\x38\x37\xd2\xf6\x10\x0c\x8d\ -\x55\xb4\x3f\x61\x30\xc6\x3a\xa9\xef\xfb\xd7\xe5\xfe\x28\xfe\x3f\ -\x1d\x83\xbf\xd4\x7f\xe1\xd9\xd0\x12\x02\x24\xe2\x80\x34\x81\xae\ -\xa4\xed\x63\x65\x71\x37\x89\xf5\x93\x45\xa8\x55\xc7\x62\xda\x3f\ -\xbe\x6c\x63\x7a\x6d\x3d\xf7\xb1\xfa\x7c\x76\xd9\xdc\x2e\x78\x8c\ -\x0b\xef\x98\x1b\x27\x40\x98\xbc\x68\x79\x54\x10\x21\xb4\x00\x5e\ -\x60\x21\x4a\xc2\x52\x14\x15\x62\x14\x15\x0b\x31\x3c\x08\xb0\xbf\ -\x3f\x10\x76\x4e\x04\x5b\x0c\xc3\xf6\x87\x6a\x0b\x22\xcc\x9c\x01\ -\x8b\xbf\xbc\x9d\x3c\x5d\xcf\xfd\x54\x82\x75\xbd\x6d\x63\xfd\xbe\ -\x36\x16\xf8\x4a\xdf\x9f\xbb\x6e\x5c\xfb\x2f\x28\x3d\xc7\x98\x61\ -\xfa\x92\x6a\x98\xa0\xb9\x40\x18\x00\xb7\x6c\x50\x60\x2b\xbf\x14\ -\x7f\x5b\x6c\xad\xa2\xcb\x93\x9c\x63\xa6\xc2\x3e\x4b\xbd\x7e\xb2\ -\x3a\xe1\x02\xc5\x97\x3f\x54\xef\x4d\xcc\xe8\x80\x57\x77\x38\x28\ -\xff\x9c\x04\x8a\x15\x90\xf1\xc1\x98\x92\xa4\x55\x18\x53\x88\x10\ -\x5a\x04\xc5\x02\x14\xb4\x78\x81\xaf\xef\x1f\x00\x78\x61\x2b\xf8\ -\xb3\xd4\x49\xa1\xb7\x44\x92\x43\xb2\xe7\xcd\x86\x55\x5f\xdc\x4a\ -\xee\xaf\xf7\x9e\x52\xc1\xe0\x4d\xf8\x1c\x66\x87\x81\xaf\xa7\x06\ -\xbe\x04\xec\x4e\xba\xd3\xb3\xd9\x91\x55\x6b\x7e\x93\xd2\x93\xeb\ -\x05\xd8\x47\xbf\xe6\xb5\xec\x33\x54\xad\x24\xc0\x9f\xc2\xa5\x58\ -\x05\x68\x63\xcb\x13\xbf\x57\x28\x53\x97\x47\xc8\xa9\x18\x10\x3f\ -\xa3\x8f\xce\x54\x5e\x77\x3c\xf5\xe8\x3f\x93\xba\x3e\xc2\x7c\xc7\ -\xb9\x6c\xeb\xc2\x9e\x60\x56\x38\x1e\x5c\x73\x12\x8c\x09\x97\x28\ -\xb4\x0a\x2a\x31\x04\x11\xc6\x54\xd7\xa9\x24\x62\x05\x37\xde\xcb\ -\x2c\x63\x08\x49\x90\x7d\x43\x00\x4f\xad\x0f\xca\xa4\xfb\x63\x29\ -\x89\x93\x60\xf1\x7c\x38\xe9\xf2\xcd\x24\xdb\xe4\xb5\x55\xc0\xba\ -\xce\x76\x50\xd0\xbf\x98\x08\x76\x23\xd7\x87\x92\x59\x2e\xff\xf2\ -\x66\x28\x43\x8d\x70\x7f\x60\x0c\x9e\xaa\xf7\xda\xab\x41\xcb\x08\ -\x80\x6e\xd0\x43\x98\x45\x26\x3b\xab\xdf\x5f\xf6\xf7\x04\x79\x3a\ -\x30\x20\x76\x50\xe0\x47\xd4\xe1\xcb\xb1\xa1\xcc\x0c\xbe\x7c\xcc\ -\x5f\x32\x7d\x02\x3a\x15\xf7\x9e\xc7\xae\x9d\xd7\x0d\x77\x84\x0d\ -\x51\x28\xac\xa3\x9c\x00\x45\x80\xa1\x02\xc0\x00\x2e\xef\x2b\x06\ -\x65\x85\x52\x64\x29\xc6\xdc\xb8\x95\x28\x2a\x84\x91\xbf\xa9\xc3\ -\x2f\x78\x1a\xc4\x78\xe0\x61\xac\xb5\x81\x21\x61\x01\x94\x97\x72\ -\x24\x11\x0e\x5e\x04\x67\x5f\xb2\x89\xfc\xaa\x9e\x7b\x4a\x80\xc1\ -\x7b\x51\x20\x57\xfa\xf5\xea\x91\xb8\xf6\xc7\xe5\xfc\x82\xd2\x16\ -\x5c\xec\x35\x6a\xff\x2c\x4c\xd0\x5b\x7f\xa4\x2b\x3b\x06\xff\xd9\ -\xa8\x5b\xc8\x82\x56\x5a\x00\x8e\xff\x88\xad\x55\xd4\xf0\x24\xd9\ -\x44\x96\xb6\xad\x5c\xa7\xb0\xdc\xdd\x6d\x3d\xa8\xbb\x42\x0a\x09\ -\x8e\xc5\xf4\x96\x7a\x6f\x64\x5a\x27\x9c\xdb\xed\x04\xd3\xb4\xf8\ -\xa7\xc6\x85\x7d\x28\x18\x9b\x50\xf0\x9f\x47\xa1\xdd\x86\xf9\x4e\ -\x2c\x1b\x0e\x5e\x97\x8c\xb9\x46\x63\xc2\x65\x1a\x15\x71\x82\x1a\ -\x4f\x8c\x29\xd6\x42\x2e\x0f\x8e\x21\xe9\xd6\x02\x6c\xdd\x15\x17\ -\xfc\xf0\x93\x50\xbc\x2f\x61\x09\xbc\xe9\x53\xeb\x1a\xf3\x2e\x81\ -\xf5\x43\xbb\x13\xf5\xfb\x65\x52\xd8\x63\x6d\xfe\x48\x86\x5c\x9f\ -\xb7\xd1\xb5\xd8\x52\xb5\xee\x33\x6b\xff\x32\xad\x3f\x50\x44\x1b\ -\xbe\x92\xfc\xa0\x8e\x4b\xaf\x1a\xad\x26\x40\xc4\xee\x34\x37\x28\ -\x2c\x33\x6d\x67\xda\xc6\x40\x92\x22\x9c\xe9\x0e\x45\xf1\x40\x89\ -\x2a\x23\x33\x83\xf1\x39\x57\x1e\xf9\x27\x52\xd7\xeb\xa0\x77\xbd\ -\x8e\x0d\xa0\x15\x78\x0f\x0a\x9f\x3f\xf5\xc1\x30\xfe\x19\x54\x1e\ -\xae\x23\x5a\x70\x78\x63\x65\xae\x0f\x53\x77\xa0\x48\x43\x6b\x50\ -\x8a\x07\xcb\xa3\x8a\xf0\x8f\x96\x92\x41\xf6\x08\x92\xe0\xae\x27\ -\x00\x9e\x7c\x1e\x92\x5f\x23\x15\x84\x38\x62\x19\x5c\xfc\xf1\x67\ -\xc9\x97\xeb\xb9\x2f\x1f\x94\x7c\x14\xeb\x72\x71\xc2\xf5\xc1\x1b\ -\xb0\x6c\x36\xc4\xa6\x79\x0b\x4d\x7a\xc9\x47\xb5\x7e\x90\xe2\xfe\ -\xb0\x61\xf8\x13\x7d\xaf\x1c\x30\xde\x1a\xb4\x94\x00\xe8\x06\xf1\ -\x61\x11\xab\xc3\x82\x4c\xbe\x7e\x4a\x30\x5c\xce\x0a\x60\x62\xfb\ -\xc9\xe1\xa5\x22\x3c\x2f\x3b\x9b\x4a\xf1\x61\xc9\x2b\x31\xaf\x7b\ -\xa8\xf1\xea\xd7\xb3\xdf\xcc\xeb\x82\xdf\xf1\x53\xaa\x33\x38\xe5\ -\x94\x0e\x2d\x49\x84\x69\xbd\x00\x4b\x16\x01\x2c\x5a\x80\xe5\x79\ -\x21\xec\x8a\x7b\xc4\x35\xbe\x2a\xf8\x21\x19\xb4\xe5\x7b\x9f\xc1\ -\x38\xe4\x89\xe0\x3c\x24\xfc\x13\x64\x0e\x52\xfa\xa8\x43\xe0\x73\ -\x1f\x79\x92\xd4\x3c\x73\xb5\x75\xad\xc3\x3b\xbe\xfe\xd5\xd7\xfc\ -\xd2\xf5\xf1\xc2\x56\x1f\x96\x9b\x57\x1a\xc1\xd8\x27\x5f\x97\xf6\ -\x37\xb9\x3f\x0c\x29\x30\x4a\x2e\xad\xf5\xba\x6b\x45\xab\x2d\x00\ -\x47\xd2\x0d\x92\x79\x39\xad\x5f\x56\xf8\x0d\x56\x80\xc1\x0c\xba\ -\xd3\xb2\x31\xb8\xdc\xa5\x8e\xc7\x97\x43\x10\x70\xfd\x0b\xab\xfe\ -\x58\xff\xb7\xbe\x7a\x7a\x81\x8f\x1c\xdd\xe5\x29\x65\x61\x6f\xae\ -\xec\xd1\x55\x7a\x75\x67\x4c\x43\x21\x5d\x0e\xf0\xa2\x55\x00\xb3\ -\xa7\xa3\x50\x7b\x9a\x6b\x54\x52\x52\x8a\x85\x78\xe4\x79\x80\x9b\ -\xd6\x04\x4d\xae\xe2\xee\xc3\x9c\x8f\x23\x3a\x6e\x05\x7c\xf3\xfd\ -\x7f\x27\xef\xaa\xe9\x86\x28\x7c\x12\xd3\xec\x58\x93\xa7\xb0\x04\ -\x9d\x0b\x4b\xeb\x5d\x31\x33\x44\x63\xb5\x3f\xa6\x11\x58\x4f\xaf\ -\xf6\x9e\xa8\xe9\x9a\xeb\xc0\x78\x10\x80\xb7\xf1\xba\xfe\x92\x1e\ -\xd0\xa6\x09\xbc\x59\xc0\x2b\xbb\x47\x0c\x96\x7a\x3b\xad\xdd\x48\ -\x82\xe1\xf0\x5d\x5f\x1a\x0e\x4e\x5b\x82\xeb\x9f\xab\xf7\x66\xee\ -\x79\x15\x2b\xcd\xe9\x84\x37\x39\xca\x14\x29\x52\xd8\xc5\x90\xe6\ -\xd0\x0a\xc4\xda\xf1\x7b\x00\x4e\x58\x09\xf0\x9a\x93\x00\x56\x2e\ -\x0e\x3a\xeb\xc6\x84\x15\xe0\x69\x84\x0b\xbd\x08\xa4\xc3\xbc\x14\ -\x6d\xb3\x76\x0b\xc0\x0d\xb7\xa2\xdb\x25\xde\x2f\x56\xc3\xfa\x6e\ -\xa4\xf5\x21\x8b\xe0\xff\x9c\x70\x13\x39\xaa\x9a\x7b\xb1\x7e\xe0\ -\xac\x44\x61\xff\x97\x84\xe6\xc7\xbc\x63\x5e\x69\x7d\x89\xb0\x15\ -\x4c\xd6\xaf\x40\xb5\x32\x6f\xd6\xfe\xbe\xfb\x73\x5d\xb5\x87\x6a\ -\x04\x08\xab\x63\xf2\xae\x5a\x61\x5d\x9c\xe7\x2d\x16\x6f\x0a\xae\ -\x00\x02\x1a\xfa\x39\xd3\xd6\x95\x5c\xff\x4d\x5f\x56\xf7\xd7\x7f\ -\xb7\xe1\x81\xdc\x02\x7a\x3c\x0a\xa1\x93\x53\x7a\x58\x51\x30\x19\ -\x6a\xe8\xf3\xd6\x9f\xc3\x6e\xa9\xf7\x9e\x16\xfd\x82\xfc\x79\x7b\ -\x01\x5e\xc1\x47\x75\x62\x80\x0c\x7d\x28\x84\xbd\x9d\xc1\x98\xff\ -\x1e\x91\x3a\xd5\x57\x20\x9d\x68\xd4\x67\x5e\x44\x23\x4f\xbd\x10\ -\x68\xf7\x01\xd1\x67\xee\x4f\xbd\xc2\x17\x98\xc1\xcb\x63\x41\xea\ -\xed\x02\x78\xc7\x99\x00\x07\xcf\x0d\x7e\xdb\xb6\x0f\xe0\x6f\x8f\ -\x03\x3c\xb4\xc1\x1f\x6a\xfd\xe8\x86\xb7\xb2\xe3\xb3\x5c\x3f\x0a\ -\x7f\x2f\x0a\xff\x1a\x14\xf6\x23\x13\xc2\x3f\xdb\xdd\xe8\xe6\xe9\ -\x32\x90\xe7\x05\x83\x05\xa8\x24\x46\xba\x72\xa2\x22\xe7\xe7\x28\ -\x92\x31\xd8\x4b\xfa\xe8\x55\x5e\xbd\x5f\x02\xad\x1a\xe3\x45\x00\ -\xd4\x7b\x10\x75\xe0\xc4\x04\x9e\x09\x81\x07\x03\x19\x58\xb2\x3c\ -\x41\x06\x03\x51\x78\xca\xc1\xdd\xb9\x79\xf4\xc5\x28\xf8\xb6\xf4\ -\xcd\xc5\x80\xb3\xfd\x58\x76\xca\x86\x73\x58\xdd\x6f\x1f\xcd\xfd\ -\x39\x79\xb0\x48\xe0\x04\x2e\x94\x9c\x00\x3d\x1d\x81\xe0\x77\x8b\ -\xa4\x0a\x7f\x87\xfa\x1a\xa4\x13\x0d\x7e\xe3\x9a\xfc\xb9\x6d\x18\ -\x5f\xe0\xd5\xbc\xb0\x07\x40\x7f\x3c\xfa\xd3\x92\xeb\xb3\xc5\x44\ -\xf4\xbb\x07\xe3\xdb\x2c\xe8\x85\x63\x9f\x7c\x23\x7b\xac\xdc\x75\ -\xa3\xf0\x13\x14\xc8\x1b\x51\xd8\xdf\x10\x36\x77\x4a\xe1\x9f\xe1\ -\x6e\xf6\x3a\xe9\xd2\x50\xe8\x59\x74\xde\xaa\x09\xa0\x27\x11\x58\ -\x93\x7e\xf8\xbd\x77\x39\xad\xab\x7f\xa6\x56\x8c\x87\x0b\xc4\x83\ -\x61\x3e\x36\xe8\x6f\x61\x41\x25\xdf\xbf\x52\xd2\xf7\x31\x1d\xc3\ -\x85\xd3\x4b\x3b\xad\xfb\xd0\xed\x29\xc5\xc6\xe8\x7b\x30\x1d\xd3\ -\x6f\x0f\xbe\x85\xd4\xfd\x45\xc2\x5d\x6f\x63\x27\xce\x77\xe0\x64\ -\xf4\x6e\xd6\x58\x14\x0a\xd2\xdd\x71\xec\xf8\x58\x1e\xb5\x57\x57\ -\x6d\xd2\xe4\x89\x5b\xa6\xa3\x96\x02\x7c\xf0\xe5\x00\x1f\x38\x3b\ -\x58\x26\x24\x35\xd6\x0f\x96\x59\x20\xf8\xaa\xf0\x4b\x39\x65\xf9\ -\x0c\x63\x86\x3c\x74\x05\xa5\xf0\xab\x9a\xbf\xcf\x7b\xda\xeb\xa2\ -\x4b\xc2\x73\xd5\x23\xfc\xa6\x32\x61\x05\xd8\x30\xb9\xac\xe2\x35\ -\x36\x09\xe3\x62\x01\x38\xd0\x0a\xbc\x0a\xd4\xaf\x90\x97\x73\x77\ -\xb2\x5a\x01\x75\x1b\xa3\x75\x80\xc0\x1d\x9a\x47\x8f\x42\xa1\xec\ -\x72\xd4\x51\x97\x36\xdc\x84\xf9\x1b\x37\x9e\xdb\xb8\x0a\x39\xf5\ -\x0f\xe4\x24\x2b\x0f\x57\x77\x77\xc3\xa9\xb3\xfb\xa0\x8b\x5b\x81\ -\xf0\x65\x78\x3c\xf7\xb1\x98\x1f\x82\xf9\x6d\x32\x46\x50\x07\xbf\ -\x29\xed\xfd\xfd\x43\x00\x77\xae\x45\x56\xad\x0f\x7a\x8c\x25\xca\ -\x7d\x1f\x8d\xa3\xc3\x86\x3d\xdb\xdf\xc1\xca\x0e\x00\xb4\xae\x71\ -\x5e\x83\xc2\x7e\x0b\x0a\xa3\x15\xb5\xf6\xa0\xf0\x4f\xf7\x1e\xa5\ -\x5d\xde\x31\x34\x78\x1a\xa1\x1b\x56\xb7\xeb\xa3\x69\x7f\x18\x82\ -\x8d\xf4\xf3\xf4\xe0\x0a\x47\x69\x1a\xc6\x8d\x00\x1c\x48\x82\x87\ -\x31\x0b\x7c\xd4\xac\xb1\x40\x26\x37\x08\xe2\x24\xd0\xb7\xb3\xe1\ -\x51\x67\x2e\x5d\xe1\x38\xd0\xeb\x28\x41\x2a\xa6\x4b\xb6\x9e\xcf\ -\xea\x6f\x47\x37\xe0\xe5\x7f\x23\xab\xf2\x79\xf8\xfa\xc2\x3e\x78\ -\xd9\x85\xf3\xa0\xf7\xb4\x7c\xf0\xfd\x28\x5e\xfb\xdf\x43\x52\xb8\ -\xca\x75\x48\xc1\xb7\x35\xeb\x30\x52\xc0\xa0\x1b\x5d\xa3\x3b\x9f\ -\x0a\x7a\x88\x01\xcc\x82\x2f\x1f\xe9\xac\x2e\xf8\xf4\xfa\xb7\xb0\ -\xaf\xa7\x5d\x93\xf5\x5d\xe7\x50\x14\xf6\xfb\x51\x18\x67\xa8\xc2\ -\xdf\x39\xc7\xdd\xe0\x3a\xf4\x90\x98\xec\xb2\xa4\xa1\x4e\xae\x18\ -\x50\xce\xf7\xc7\x73\xb1\xed\xe4\x53\xec\xab\xde\x37\x2a\x1c\xa5\ -\x69\x18\x6f\x02\xbc\x0d\xd4\xce\xb1\x4a\x82\x9e\x46\x10\xa3\x35\ -\x48\x89\x05\xa2\xed\x9f\xb1\x67\xd3\xce\x5c\x1e\x0e\xb2\x23\x02\ -\x50\x4c\x6f\xd8\x76\x01\x6b\xea\xdb\x48\xf7\x6e\x20\xa7\xed\x65\ -\x70\xcd\x61\xdd\x70\xdc\xf2\x3c\x38\x7f\xc0\xf3\x3f\xeb\x44\xd6\ -\xc8\xd2\x48\xc0\x41\x94\xf6\x7e\xde\x55\x74\xdf\x3a\x80\xdf\xdc\ -\x1f\x58\x84\x18\x09\xc4\x4a\x97\x03\x9b\xb7\xbd\x83\x1d\x94\x76\ -\x0d\xd6\x77\x73\x33\x51\x08\xef\x44\x81\x3c\x8a\x78\x61\x93\x27\ -\xed\x5c\x50\xdc\x85\x91\xe8\x7c\x5d\xf8\xc3\x65\xf5\x20\xb5\x68\ -\x7f\x75\x6c\xd1\x30\x6c\xa6\x9f\xa3\xa9\xd7\xd8\x0a\x8c\x4b\x0c\ -\xa0\xe0\x97\x10\xbc\x33\x1c\xc0\x14\x0b\xa4\xe5\x95\x7c\xfe\x4a\ -\x13\xb8\x52\x58\xe5\xed\xb6\x66\x14\x86\xc8\x1a\x25\x1e\xb0\x8a\ -\x1e\xfc\x7a\xfe\x6f\xc8\x87\x1b\x78\x8f\x09\x9c\x7a\x08\xbb\xe7\ -\x75\xcb\xd9\x49\x87\x2e\x60\xb9\xbf\x0e\xc0\xe2\x07\x5e\x80\x9f\ -\x3d\xb7\x15\x76\xa0\x86\x67\x72\x22\x5e\x99\xc0\x90\x73\x4b\x71\ -\xda\x2a\x80\xf7\xbf\x34\xae\xf5\x95\x16\x1a\xd6\x95\x87\x0f\xa6\ -\x9d\xdf\xfa\x4e\xee\x50\x8c\x89\x56\xa3\xe0\x1f\x25\x35\x3f\x2a\ -\x81\xfe\x8e\x45\xc5\xe1\x86\x09\xbf\x09\xf1\xfa\x67\xd0\x4f\xde\ -\x5f\xc3\x51\x1a\x8a\x71\xb5\x00\x1c\x68\x05\xce\xc7\xec\xa6\xa8\ -\x00\xb2\x59\x81\x4a\xb1\x40\x5a\x3c\x90\x4c\xfc\xab\xbf\x77\xe4\ -\x66\xb1\x33\x78\x0b\x91\x6d\x85\x7e\xf8\x77\x30\x7d\x62\xfb\x05\ -\x35\x7d\xe7\xbc\x26\x7c\x7a\x3b\xb1\xb7\x6d\x87\xcb\x67\xf5\xc0\ -\xbb\x97\xce\x83\x25\xb3\xa7\x05\x8a\x5f\xd5\xfe\x40\x22\x22\x70\ -\x5c\xf5\xdb\xa0\xe9\x93\x43\x3e\xc9\xde\x1c\xac\xde\x72\x11\x3b\ -\xd5\x74\x0e\xeb\xdb\xb9\x33\x51\xf8\x6e\x42\xc1\x9f\x2d\x35\x71\ -\x47\x8f\xf7\x2c\x9b\xe6\x1d\x4c\x59\xf0\x51\x3a\x35\xe8\xad\xc9\ -\xef\x57\xb7\x49\xd3\xfe\xfb\xe0\x2e\x7a\x19\x3d\x33\xc3\x91\x9a\ -\x8a\x71\x27\x00\x07\x92\x80\x0f\x95\x7e\xa5\xbf\x52\x49\xc8\x63\ -\x6e\x4f\x19\x37\x27\x2d\x1e\x48\x4b\x18\x17\xd8\xb3\xe8\x4c\x27\ -\x07\x07\x29\x6f\x61\xdd\x8c\xe9\x6d\x3b\xdf\xc0\x86\x5b\x50\x0d\ -\x09\xbc\xf3\x11\xf2\xcf\x48\x86\x8f\x2e\x9e\x0b\xcb\x17\x4c\x0f\ -\xe6\xda\xd4\xc7\xb1\xfe\xfc\x1e\x80\xbb\x45\x03\x2e\x7f\x92\x78\ -\xd9\xee\xcc\x3c\xac\xda\xf0\x76\xb6\x41\x3f\x9e\xf5\xad\xdc\x3b\ -\x51\xf0\x7f\x84\x42\x98\x17\xaf\x35\x96\xba\xe6\x95\x9e\x2b\x59\ -\xec\x70\xc6\xc2\x2e\x87\x48\xf8\x19\x94\xd0\x3a\x8c\x32\x4a\x8a\ -\xcc\x62\x79\xbc\x02\xde\x73\xce\x5f\xc5\x24\x65\x2f\x5c\x17\x7e\ -\x0e\x55\xf8\x4b\xf8\x6f\x0b\x39\x94\x7e\xcb\x9f\x43\x74\x5c\x31\ -\x51\x08\x70\x38\x66\x7f\x07\x10\x9f\xc5\xd4\xad\x40\xb9\x80\xb8\ -\x62\x30\x0c\xd9\x08\x10\xa4\x51\xd2\xc5\xd6\x38\xd3\x7d\x6b\xe0\ -\x08\x12\x3c\x82\x7e\xf8\x39\xbb\xdf\xc4\xb6\x34\xbf\x26\xd2\xf1\ -\xb6\x07\xc9\xdb\x67\x4e\x83\xcf\x1e\x34\x07\x8e\x58\x34\x0b\x64\ -\xc7\x33\xdc\xbe\x16\xfd\x48\x65\x06\x9d\x69\x1d\xf0\x7f\xb7\xbc\ -\x8d\xbd\x5b\xdd\x17\x05\x9f\xb7\xf3\x5f\x81\x3e\xfe\xa5\x52\x10\ -\x3b\xa6\xd1\x0d\xa4\xd7\x9b\x87\xf1\x44\x27\x94\xc8\x76\x5a\x82\ -\x61\xea\x82\xcb\x5c\x62\x33\x0f\x7a\x70\x1b\xfe\x25\x98\xce\xd0\ -\x9d\x94\xc1\x2b\xf3\xbf\xda\xb2\x03\xeb\xb8\x00\x0e\xeb\x82\x2e\ -\xd6\x0d\x3d\x6c\x36\xae\x47\xc3\x4a\xd2\x02\x5f\xd1\xf2\xc3\x76\ -\x91\xeb\xd9\x97\xbd\x8b\x9b\x52\x51\x55\x62\x42\x10\x80\x03\x49\ -\xc0\x5b\x02\x82\x09\x61\x13\x82\x9c\xd1\x15\x2a\xe7\x0e\x65\x27\ -\x01\x3f\xc6\xb3\xd6\x74\x56\x70\x3a\xd9\xd1\xa2\xdd\x7e\x2b\xa6\ -\xf3\xfa\xdf\xcc\x1e\x6c\x7a\x45\x64\xc0\x5b\x1e\x24\xaf\x9a\xde\ -\x0d\x57\x2c\x99\x03\xc7\x17\x5d\xe8\xb8\xe6\x4f\x81\xaf\xde\x9b\ -\x87\x9b\xb7\x5d\xc4\x62\x2f\xff\x5b\xdf\xcc\x75\xa1\xe0\xff\x04\ -\x85\xef\xad\xfe\xf4\x25\x36\x0c\x75\xce\x2d\x0d\x96\x4a\x84\xb8\ -\xa3\x64\xaf\x57\x84\x43\x80\xbf\xd0\x9e\x16\x2b\x29\x13\x5f\xa5\ -\xc4\x52\x3c\x2f\x61\xc4\xfe\x10\xeb\xa3\x5d\x64\x3a\x5d\x85\x96\ -\xa2\x33\xd5\xf5\x19\x45\xe7\x67\x1f\x99\x47\xbf\xda\xfa\x5e\x5f\ -\x13\x26\x12\x01\xf8\xe7\x74\xf8\x0b\x33\xc1\xbc\xf2\xa6\x56\x9f\ -\x4a\xae\x50\x59\x02\x40\x76\x12\x04\xe7\xa7\x68\x8f\xee\xb1\xa7\ -\xd3\x65\xe8\x16\x2d\x45\x02\xb8\x16\x81\xeb\x31\xbf\x0c\x89\xb0\ -\xbb\xa9\x95\x51\x05\x5e\x71\x1b\x39\xfa\xe9\x6d\xb0\x08\x05\x6d\ -\xf7\xa6\xb7\xb3\x87\x64\x39\x0a\x3e\x41\xc1\x7f\x1b\xde\xc5\x57\ -\x30\x1d\x84\xc2\x57\x74\x7a\xbd\xbf\x33\xc2\xba\xdd\xa2\xbf\xfd\ -\x8c\xf4\x06\x04\x88\x0b\xbf\xae\xc9\x8d\x65\xa1\x95\xa0\xe0\xc0\ -\x06\x98\xed\x75\x40\x1f\x5b\xa2\xbf\x50\xcf\xb6\x91\x8b\xd9\xd7\ -\xbc\xeb\x5b\x50\x35\x99\x30\x61\x08\xc0\x81\x24\xe0\x23\x18\x7f\ -\x1a\x15\x40\x65\x57\xc8\x14\xec\xd6\x4b\x02\x88\xad\xbb\x48\x84\ -\xd5\x76\x5f\x40\x04\x24\xc1\x7e\x24\xc1\x55\x98\x7f\x77\xdf\x85\ -\xac\xd0\xb4\xca\xa8\x03\xf6\xd7\xf3\x67\xa0\xc0\x7d\x0b\xd3\xc9\ -\x28\x98\x05\x66\xd3\xbb\x20\x47\x97\xa1\x70\x1e\x6a\x14\x74\x30\ -\x94\xa5\x4d\x84\xab\x93\x80\x82\xd9\x4a\xf0\x65\x1b\x1e\x81\x05\ -\x74\x11\x74\xd1\x79\x7e\xa7\xd7\x20\x3c\x4d\x2f\xa5\x87\xb7\xa6\ -\x16\xb2\x61\x42\x11\x80\x03\x49\xc0\x5b\x84\xce\xf7\x57\xca\xb9\ -\x42\x69\xf1\x40\x45\x02\x40\x79\x12\x40\x6a\x99\x4f\x04\x6b\x1a\ -\x5d\x80\x44\x38\xd4\xb2\xe0\x79\x24\xc1\x67\x87\xde\xca\x26\xcc\ -\x67\x8d\xec\xaf\xe5\x57\xa0\xf0\x5d\x8d\xc2\xf7\x46\xbc\xe0\x41\ -\xe6\x78\x6b\xc1\x66\xcb\x81\xe9\x5f\x76\x4c\x49\xe1\x6f\x29\xc2\ -\x6f\x24\x00\x31\xff\x16\xfa\xfd\x04\x2d\x29\x7b\x18\xe6\x7a\x2b\ -\xa1\x9f\xbc\x9c\x7e\xc3\x6b\xde\x4b\xfc\x35\x60\x22\x12\x60\x16\ -\x66\x7c\x62\xa4\x25\x7e\x41\x56\x7f\xbf\x6a\x12\x68\xdb\x43\xca\ -\x36\x7a\xb9\x7f\x91\xf0\x24\xe9\x64\xbb\xed\x5e\x76\x1c\x5a\x83\ -\xb5\x48\x84\xcf\x0c\xbf\x8d\xdd\xd1\xf8\xda\xc8\x06\xfb\xea\xfc\ -\x7c\x14\xb6\xcf\xa0\xd0\x7d\x04\xaf\xed\x31\x96\xa3\xa3\x78\x6f\ -\xa7\xf0\x06\x5e\x7f\x83\x8a\xda\x5e\xfd\xbd\x8c\xf0\x27\x84\xbc\ -\x8c\x8b\x24\x2d\x43\x54\x36\x8c\xe9\x32\x7a\x5d\xf1\x9b\x4d\xad\ -\x8c\x2a\x31\xe1\x08\xc0\x81\x24\x38\x0b\xb3\x5b\x41\x76\xd4\x65\ -\xf1\xf7\x2b\x8d\x06\xad\x44\x02\x30\xfc\xa6\x97\x41\x62\x79\x0c\ -\xcd\xfc\x43\xa4\x9b\x39\x76\x27\x9b\x86\x56\xe1\xcf\x78\xda\xdf\ -\x10\x02\x77\x21\x21\x9a\xda\x7f\x80\x42\xcf\xdf\xc9\x7d\x03\xa6\ -\x0b\xf0\x3a\x16\x32\x87\xee\x43\x6d\xbf\x18\xf8\xab\x8c\xba\xa0\ -\xab\xcb\x65\x49\x40\xca\x6f\x43\xb5\x6d\x4d\x1a\xbf\x9c\x5b\x14\ -\x80\xbb\xb8\x1f\x44\x22\x14\x1b\x59\x1f\xb5\x62\x42\x12\x80\x03\ -\x49\x70\x05\x66\x5f\xf0\x57\x54\x21\xcc\xd4\xfc\x59\x25\x09\xc0\ -\xe0\x12\xe9\xe7\x05\xc3\x72\xbc\xcc\xc5\x7c\x2d\xc9\xb3\x3d\xa4\ -\x13\x4f\x9d\x67\x6b\x91\x08\xbf\x43\xeb\xf0\xb7\xd1\xb7\xb3\x86\ -\xb4\x78\xd8\x5f\xcd\xaf\x02\x3e\x57\x0f\x61\x67\xf0\x66\x47\x66\ -\xb3\x0e\x54\x08\xc7\x60\x59\xf0\x3d\xde\x72\x82\xaf\x2e\x1b\x05\ -\xdc\xa0\xf9\xe5\x36\x89\xe0\x97\xa4\xc4\x02\x90\x4e\x80\x38\x6e\ -\xc7\xf4\x06\x24\xc1\xb8\x7f\x48\x7c\x22\x13\x80\x77\xfc\xf0\x8a\ -\x3a\xdd\x2f\xc8\x2a\xe4\xd5\x90\x40\x3d\x6e\x39\x77\x08\x2a\x2c\ -\x9b\x72\xfe\x9a\xb0\x05\x9b\x80\x7f\x14\x9b\x13\xc3\x62\x5b\x30\ -\x86\xd8\x65\x39\xb0\x07\x35\xf5\x0e\xcc\xb7\xe1\x36\x5b\x0b\x17\ -\x45\x9d\x6c\x28\xe0\xfc\x9e\xe7\xa3\x50\x2f\x03\xde\x1a\x46\x60\ -\x36\x23\xac\x07\x8f\xb3\x04\xaf\xef\x48\x14\xa4\x95\x58\xc6\x7f\ -\xcb\xc7\x04\x34\x2d\xcf\x44\x82\x0a\x2e\x4f\x9a\x95\x48\xd3\xfe\ -\xba\x6b\x94\x6e\x07\xf9\xa7\xb3\x5e\x87\x24\x48\x7e\x42\xab\x85\ -\x98\xb0\x04\xe0\x40\x12\xf0\x81\x52\xfc\xdd\x81\xe0\x7d\xa7\x84\ -\x40\xb3\xda\x47\x84\x02\xa4\xbb\x44\x90\xb2\x9d\x69\xb9\x5c\x0e\ -\x29\xeb\x41\x19\x1f\x0f\xc9\xbf\x9b\xc0\xbf\xa6\xcf\xbf\x1d\xc9\ -\xa7\x17\x9c\x01\xfc\xeb\xea\xcc\xf0\x01\x73\x66\x58\x4e\x2b\x4b\ -\x23\x43\x62\x9d\x24\x7f\xaf\x56\xf8\x2b\xb9\x46\xe5\xc5\x8b\x5b\ -\x80\xd7\x20\x09\xee\x2b\xbb\x55\x13\x31\xa1\x09\xc0\x81\x24\x78\ -\x31\x04\x2f\xcf\x04\xb3\x0f\x57\x65\x05\x00\x8c\xef\x06\x00\x54\ -\xb0\x08\x29\xd6\x00\xaa\xc8\xcb\x2d\x57\x0b\x93\xa0\xab\xcb\x55\ -\x5b\x01\x52\xc1\x1d\x32\x25\x83\x60\xd7\x27\xfc\x12\x7c\x1a\xc4\ -\x13\x91\x04\xdb\x33\x6d\xdd\x60\x4c\x78\x02\x70\x88\x01\x73\xbf\ -\x06\x53\x50\x6c\xb2\x02\x69\xee\x50\xa5\x04\xfa\xba\x81\x08\x60\ -\xd8\x5e\xcd\xcb\x2d\x97\x2b\xd3\x61\x7a\x2c\xd5\x0a\xbf\xcc\x63\ -\xcb\x24\x83\x65\x80\x74\x97\x26\x95\x00\x06\xeb\x90\x1d\x7c\xe2\ -\xe4\x97\x22\x09\x5a\xde\x3b\x3c\xde\xc3\xa1\x33\x01\x2b\xe6\xb7\ -\x98\x7d\x2c\x2a\x80\xca\x9a\x29\xf1\x70\x2a\xf8\xba\xa9\x1d\x3c\ -\x15\x34\x9f\x9e\x97\x5b\x56\xcb\x2a\x25\xd3\xf6\x69\xe7\xce\x72\ -\x4f\xb4\x42\x1d\xd0\xb4\x6b\x6b\xba\xf0\x73\xf0\x38\xef\xdb\x55\ -\xef\xd5\x00\x4c\x0a\x0b\x20\x81\x96\x80\xb7\x21\x47\x93\x3e\x65\ -\xb5\x04\x31\xab\xc0\x22\x0d\x2c\xb7\x07\xc8\x18\xf4\xb2\xda\x5d\ -\x20\xd3\x7a\x25\x34\xc2\x0a\xa4\x4d\x3e\x5c\x49\xeb\xab\x82\x5d\ -\x56\x59\x90\x64\x79\xed\x78\x2f\x2a\xbb\x1b\xea\x3a\x42\x95\x98\ -\x6c\x04\xe0\x4f\x93\xf7\xbc\xbe\xd9\x2f\x30\x05\xb0\xa6\x98\x20\ -\x6d\xbb\x4c\x6e\x90\xa1\xdc\x44\x04\x7d\x3b\xbd\x4c\x47\x5a\x79\ -\xda\xe3\x30\x09\xbe\xba\x1c\xcb\x49\x0a\x19\xb4\xe5\x54\x12\x18\ -\x04\xdf\x68\x6d\x1a\x2a\xfc\x1c\x7c\x82\xbd\x53\x90\x04\x65\x67\ -\xb1\x68\x24\x26\x85\x0b\x24\x81\x15\xc3\xab\xf8\x22\x4c\xff\xe5\ -\x17\xa4\x3d\x10\x93\x1b\x91\xd8\x8e\x94\x77\x33\xca\xb9\x2f\xbe\ -\x5b\x94\xc1\x3d\x2a\x77\x2d\x59\x5c\x1f\xd3\xfe\x65\xdd\x2b\x62\ -\x16\xca\xb2\x4d\x96\x7a\x22\xd9\xae\xcb\x54\xd7\xf5\x83\xb7\x84\ -\x5d\xdd\x90\x23\x65\xc4\xa4\xb2\x00\x12\x68\x09\x38\x71\xaf\xc5\ -\x14\xbd\xf6\x57\xf3\x3b\x00\x29\xdb\x81\x61\xb9\x62\xce\xb2\xb9\ -\x3d\x8d\x0c\x82\xd3\xb4\xbd\x9e\x57\xd2\xfe\xbc\x51\x96\x7f\x92\ -\x92\xcf\x3a\xe1\x8a\x75\xf1\x01\xbf\xc4\x00\x44\x9b\x98\x8f\xd5\ -\x38\x9c\x85\xca\xee\xce\x86\x1f\xd5\x80\x49\x49\x00\x09\x24\x02\ -\x9f\xf1\xe0\x93\x51\x01\xd4\x48\x02\x65\x5b\x80\xda\x88\x60\x2c\ -\x63\xc9\x6d\x6a\x01\xd3\x4e\x50\xd1\x05\x4a\xc9\xf5\x65\xae\xb9\ -\x79\x37\x9c\x3f\x87\xbb\x72\xcc\x2c\xee\x19\xef\xb2\xe3\xdf\x78\ -\xe5\x79\xe3\xfd\x88\xbb\x91\x00\x67\x34\xfc\xa8\x06\x4c\x6a\x02\ -\x70\x20\x09\x3e\x8f\xd9\x97\xc2\x82\x44\x0c\x50\x85\xbf\x9f\xa5\ -\x37\xb8\x5c\x5e\x6e\xd9\xb4\x5e\x09\x59\xad\x40\x25\x42\xe8\xcb\ -\xdc\xd3\xe6\x5f\xe0\x1e\x11\xeb\x69\x75\x63\x3a\xb7\x3c\x96\xea\ -\xf6\x70\x12\x74\x08\x32\x34\x0e\xe7\x20\x09\x9a\xfe\xb1\xec\x49\ -\x4f\x00\x0e\x24\xc1\x47\x30\xbb\x06\xe4\x23\xa8\x26\xe8\x35\x92\ -\x22\x85\x08\xfa\x32\x40\xb6\xc0\xb7\x5e\x0b\xc0\xa1\x3f\xa6\xac\ -\x56\x40\x5d\xe6\x2e\xcd\x1e\xc2\xdf\xca\x8a\xee\x23\x4d\x59\x94\ -\xbb\x06\xdf\x7a\x18\x62\x0d\xde\x7f\xcd\x89\xd0\x18\x8b\xc0\x47\ -\x04\xbf\x48\xc4\x7d\x4d\xc3\x01\x41\x00\x0e\x24\xc1\x3f\x42\x10\ -\x1c\x47\x6f\x94\xd5\xe2\xef\x57\x22\x02\x18\xf6\x83\x0a\xcb\xa6\ -\xf5\xac\xa8\xd6\x0a\xa4\x91\x80\x0b\xfd\x5e\x12\x08\xab\x05\xe6\ -\xb7\xed\xd2\x2c\x9e\xe9\x98\x7a\x1f\x83\x1a\x0c\xf3\x37\xbb\x3b\ -\x1b\xc1\x7a\x78\x2d\x12\xe0\x8f\x8d\x38\x50\x1a\x26\x55\x2b\x50\ -\x39\x60\x45\xdd\x8e\xd9\x09\x98\x82\x71\xf9\x89\x56\x0b\x48\xb6\ -\x5c\x54\xec\x74\x22\xd1\xc3\xd5\x5b\x55\xaa\xed\x00\x2b\xdb\xa2\ -\x92\x71\xdb\x4a\x1d\x62\xa6\x5c\x6a\xfd\x5d\xe2\xde\x6d\x99\x70\ -\xc5\x61\x81\xd6\xd6\x93\xad\xe4\xb6\xe1\x37\x5b\xdf\x56\x39\x16\ -\x97\x28\xde\x9f\x3b\xc2\x1a\x11\x1c\xbf\xbe\xee\x23\x54\xc0\x01\ -\x63\x01\x24\xd0\x12\xf0\xc7\x70\x15\xa6\x4f\x85\x85\x59\xac\x81\ -\xbe\x1d\xa4\x2d\xb3\xea\x62\x02\xd3\x7a\xb5\xa8\xd5\xfd\xe1\xaf\ -\x21\xee\x84\x80\x04\x5c\x30\xfd\x80\x95\x45\x16\xc0\xf4\x7a\x29\ -\x18\x72\xfd\x7c\x26\x02\xea\xcd\xa8\x9e\xd8\xbf\xab\x2e\x97\x88\ -\xcf\xc4\xb1\xb4\x99\x6e\xd0\x01\x47\x00\x09\x31\x7e\xe8\x06\x4c\ -\xd3\xfd\x82\x4a\x2e\x4e\x35\x44\x90\xfb\x82\xa1\xbc\xdc\xb2\x69\ -\x3d\x0d\x59\x5d\x1f\x75\x99\x89\x13\x48\x01\xe5\xc2\xcf\x9b\x34\ -\x65\x4b\x8d\xcd\x22\x22\x48\xc1\x37\x8d\x97\x4a\xbb\xce\x34\x6b\ -\xaa\x92\xc0\x93\xb9\x62\x39\x39\x09\x6a\x0f\x90\x4f\x42\x02\x34\ -\x6d\x36\x8e\x03\xc6\x05\xd2\x21\xc6\x0f\xf1\x2f\xa4\x04\xb3\xce\ -\x19\x5d\x0b\x92\x74\x8b\x4c\xee\x86\xc9\xe5\x09\x3b\xc2\x64\x6e\ -\xd8\xc6\x74\xce\x2c\xe3\x80\xb2\xec\x1f\xfb\x4d\xbb\x0e\x2e\x84\ -\x7c\xde\x0a\x29\xfc\xd2\xdd\xd1\x5d\x1b\xf9\x9b\xcd\xe2\x65\xaa\ -\x1b\xa4\xbb\x45\xe1\xba\x61\xbf\xd8\xbe\x2c\x22\xda\x68\x5d\xee\ -\xd0\xb9\x35\xef\x99\x01\x07\xac\x05\x50\x81\xd6\x80\xfb\x92\xdf\ -\x07\xf5\x3d\x63\x63\xf0\xcb\x92\x65\x60\xd8\x56\x2f\x03\x53\x19\ -\x4b\x96\x9b\xa0\xfe\x56\xee\x51\x30\x65\x87\x4a\x2e\x50\x3f\x04\ -\xed\xfa\xa1\x80\x83\x62\x05\x44\xae\xce\xaa\x67\x1a\x3a\x92\x76\ -\x0d\xa9\x2e\x10\x31\x58\x01\x08\x3f\xb4\xe7\x1f\xb3\xbb\x26\x5f\ -\xf0\x21\x54\x66\x27\xd6\xb2\x63\x16\x4c\x09\x02\x70\x20\x09\xf8\ -\x6c\xe4\xbc\xbf\xe0\x7f\x81\xb4\x7c\xa9\xae\x8f\x46\x04\x30\x6c\ -\xa3\x96\xe9\xbf\xeb\x65\x3a\xc2\x72\xbd\xee\x95\x1d\x6a\x75\x81\ -\xf8\xab\x35\xbc\xc5\x47\x17\xfe\x50\xf0\x21\x72\x85\x2a\xcd\xad\ -\x1a\x1c\x93\x4f\x9a\x48\x52\x83\x75\xdd\x12\x79\x10\x27\x02\x4f\ -\xae\x28\xe7\xd6\xa1\xb6\xd6\xa1\xf9\x48\x82\x9d\xb5\xec\x58\x09\ -\x53\x86\x00\x12\x48\x84\x93\x31\xe3\x1f\x63\x3e\x39\x2c\x4c\xf5\ -\xf9\x53\xfc\xe2\x2c\xc1\x6f\xa3\x02\xe1\x2c\x01\xb0\x5c\xe6\xef\ -\x97\xf1\x9e\xdd\xd0\x1d\x31\x69\x7f\x16\xb7\x04\x92\x00\x7c\x42\ -\x2b\x8f\x3c\x86\x7f\x6f\xc3\xb5\xa7\x70\xfd\x11\xcc\x1f\xa1\xdf\ -\x70\xc7\xac\x4f\x3a\xfc\x03\x4c\xc7\xe2\xb6\xc7\x60\x7e\x0a\xee\ -\xfb\x5a\x3c\x4e\xd0\xdc\xac\xbb\x6e\x62\xde\xff\x90\x08\xe1\xb0\ -\x0a\x12\x2c\xf3\x78\xa0\xfa\x2f\x34\xbf\x18\x09\xb0\xa6\xea\xbd\ -\x32\x60\xca\x11\x40\x02\x89\xc0\xbf\x49\x75\x19\xa6\x93\xc2\xc2\ -\xb2\xae\x4f\x4a\xd0\xdb\x4c\xe1\x57\x51\x49\xfb\x73\xad\xcf\x5f\ -\xae\xe4\xc2\x1c\xfa\xe8\xa0\x59\x00\xa6\x59\x02\xe0\x82\xb9\x1d\ -\x05\xf4\xa7\x78\x9c\x2b\x51\xd8\x47\xb2\x5e\x8e\xf5\x09\x67\x0e\ -\xde\xd7\xa7\xf1\x18\x17\xe3\x71\xfb\x12\xae\x4f\xf8\x9d\x31\x88\ -\x5b\x01\x7e\xbd\x3d\x55\x57\xc8\x05\x22\xa6\x6b\x38\xa6\x2c\x01\ -\x24\xca\x12\x01\x20\xc5\xf5\xa9\xb1\x05\x28\xad\xcc\x84\x4a\x2e\ -\x90\xba\xce\x87\x36\x0c\x8a\x63\x87\xed\xf2\xa0\x69\xff\x98\xf0\ -\x33\x14\xfc\x35\x28\xac\xff\x9b\x7e\xd3\xad\x7b\xa2\x2a\xb4\x10\ -\xdf\xc0\xe3\xff\x6f\xe0\x5d\x60\x6a\x2b\x90\x4a\x00\x49\x02\x6e\ -\x05\x78\x6f\x71\xae\xaa\x53\x7c\x18\x09\xf0\xc3\x7a\xaf\xd3\x84\ -\x29\x4f\x00\x09\x41\x04\xfe\xa5\xf2\x53\xc2\xc2\x2c\xc1\x2f\x49\ -\x09\x76\x1b\x69\x05\xd2\x04\x9f\xe7\x7c\x76\x9d\x21\x88\x77\x72\ -\xe9\x04\x90\xc2\xcf\xbb\xa8\x28\xe1\xad\x62\xff\x44\xbf\xe5\x36\ -\xd4\xa7\xb6\x3e\x8e\x6e\x12\x81\xbf\xe0\xb9\x5f\x1c\x09\xbd\x6e\ -\x05\x20\x20\x01\x27\x08\xb7\x02\xd9\xeb\xe4\x4a\x24\xc0\x65\x8d\ -\xbc\x5e\x89\x36\x01\x34\x20\x11\x8e\xc3\xec\xbd\x10\xbc\x77\x10\ -\x7d\x60\x2e\x73\xf0\xcb\x9a\xef\x02\x71\x70\x21\xe2\x0e\x4b\x41\ -\x39\x87\x74\x7d\x62\xbd\xb6\xfc\x7a\xc8\x3e\xdc\x9f\xc7\x3d\x97\ -\xd3\xef\xb8\x6e\x03\xae\x26\x15\x48\x84\x7f\x43\x12\xbc\xdf\x48\ -\x02\x49\x00\x9e\xf3\x77\x9b\xf2\x99\x0f\xfb\x6f\x48\x80\xd4\x2f\ -\xde\xd4\x83\x36\x01\x52\x80\x44\xe0\x46\x9a\x5b\x85\xf7\x60\x7a\ -\x2d\xa8\xa1\x5b\x56\xff\x3f\x26\xf8\xcc\x50\x56\x01\x4c\xdb\x41\ -\x3e\x2a\x2e\x4c\xc3\x2c\xc8\xc3\x0b\x16\x57\x18\x0d\x49\x18\xe3\ -\x53\x96\xe3\x13\xfe\x0e\xfd\x9e\xfb\xab\x2a\xce\x5a\x37\xac\x7f\ -\x71\xfe\x09\x89\xf7\x5d\x24\x29\x49\x12\x00\x02\x12\x70\x64\x6f\ -\x16\xbd\x05\x09\xd0\x94\xfe\x80\x36\x01\x32\x00\xc9\x30\x1f\xb3\ -\x37\x62\x7a\x05\xa6\x97\x40\x30\x7f\x4f\x80\xac\xfe\x7f\xa3\x5a\ -\x81\xb8\xc6\x1f\x35\x3c\x33\x2e\xf4\x39\xb6\x0f\x6c\x72\x3b\x6a\ -\xfe\xef\xd2\x6b\x4b\xb7\xd6\x78\xc6\x86\xc0\xfa\x98\x73\x09\x92\ -\xf1\x8b\xb1\x00\x58\xb7\x02\xd9\xdd\xa0\x3b\x91\x00\x67\x35\xe3\ -\x3a\xdb\x04\xa8\x12\x62\xc6\x3a\x1e\x30\xbf\x5c\xa4\xd3\x40\x37\ -\xe6\x59\xfa\x02\xf4\xdf\xcb\x3d\x06\xee\xee\x14\x58\x30\xc8\x4c\ -\xdd\xce\xc2\x12\x3e\xf3\x9c\x0d\x7f\xc4\xf4\x0d\xfa\xe3\xd2\xb8\ -\xce\xb2\xa6\x03\x49\xf0\x27\xb0\xd8\x2b\xc3\x26\x50\x93\x1b\x94\ -\x2d\x18\xbe\x19\x09\x70\x5e\x33\xae\xb1\x4d\x80\x3a\x81\x84\xe8\ -\xc6\x8c\xf7\x54\x1e\x81\xe9\x70\x25\x2d\x83\xb4\xa1\x26\x59\xb4\ -\x1e\x7f\x2c\x5c\x48\x4a\xbe\xab\xc3\x3b\xa3\x86\xf0\x68\x9b\x31\ -\xff\x3b\xa6\xdb\xf0\x97\xff\xa6\x37\x94\xb6\x35\xe0\x16\x9a\x0a\ -\x74\x87\xb6\x00\x63\x8b\x42\x12\xa8\x6e\x10\xaf\x87\xae\x4c\x26\ -\xe0\xa7\x48\x80\xf7\x34\xe3\xfa\xaa\xef\x92\x68\x23\x06\x7c\x30\ -\x3c\x14\xbd\x53\xa4\x10\x48\x0c\x3e\x93\xdd\x2a\x4c\xcb\x01\xfc\ -\xc9\x6b\xa7\x85\x89\x85\xcb\xbd\xb8\xcc\xc5\x61\x10\x85\x61\x0f\ -\x6a\xfa\x12\xef\x8e\x02\xfe\x09\x51\xc6\x82\x11\x3d\x16\x3c\x8d\ -\xe9\x76\x14\x76\xda\xca\xfb\x6a\x18\x3c\x74\x1d\x6d\xb8\x37\x6c\ -\x44\x50\x7b\x9d\xb3\x87\xe3\x4d\x9b\x44\xb7\x6d\x01\xda\x68\x3a\ -\xac\x7f\x76\x78\xaf\xf2\x71\xa1\x1b\xc4\x5d\xb9\xea\xe2\x80\x4b\ -\x51\xd1\x7c\xa9\x29\xd7\xd6\x8c\x83\xb6\xd1\x46\x0c\x14\xde\x91\ -\x78\x8f\x42\xa6\x6c\xfa\xb7\x69\x9f\x53\x6d\x13\xa0\x8d\xa6\x83\ -\x7e\xcf\x7d\x1c\x28\x79\xda\x5f\x51\xfb\x53\xfc\x1f\x33\x1d\xe2\ -\x81\xc6\x5f\x55\x80\x36\x01\xda\x68\x0d\x18\xdc\x18\x6f\x1d\x63\ -\xb2\xbc\x12\xf8\x20\x8f\xa7\x9a\x72\x4d\xd0\x26\x40\x1b\xad\xc3\ -\x77\x12\x25\xd9\x5c\xa0\x07\xd1\xff\x6f\x5a\x03\x40\x9b\x00\x6d\ -\xb4\x04\xf4\xfb\xee\x6e\x14\xf6\x5d\x89\x1f\x2a\x4b\x60\x53\x3f\ -\x9e\xd1\x26\x40\x1b\xad\x03\x23\xeb\x13\x65\x95\x5b\x80\x7e\xd7\ -\x8c\x4b\x91\x68\x13\xa0\x8d\xd6\x81\x41\xf4\x15\x18\xf9\x2e\x76\ -\x79\x09\x5c\x87\xee\xcf\x3d\xcd\xbc\xa4\x36\x01\xda\x68\x25\x36\ -\x87\xaf\x53\x72\xe8\x2d\x42\x49\xfc\xac\xd9\x17\xd4\x26\x40\x1b\ -\xad\x03\x83\xf5\xca\x72\x16\xfc\x7b\xb3\x2e\x45\xa2\x4d\x80\x36\ -\x5a\x89\xae\xd8\x4b\xf5\xe5\xb5\xff\x9f\xd1\xfd\x59\xd7\xec\x0b\ -\x6a\x13\xa0\x8d\xd6\x81\xc1\xf2\x18\x01\x9c\xb2\x0c\xb8\xa4\x15\ -\x97\xd4\x26\x40\x1b\xad\xc4\xd2\x70\xfa\x14\x8e\xf4\xa1\x98\x37\ -\xa1\xf6\xaf\xfb\x5d\xe5\x2c\x68\x13\xa0\x8d\xd6\x81\xc1\x82\x50\ -\xfb\xcb\x59\xe3\x92\xe0\x14\xb9\xb4\x55\x97\xd4\x26\x40\x1b\xad\ -\x03\x65\x87\x84\xf3\x07\xa5\xbb\x3f\xd7\xa1\xf6\x7f\xa2\x55\x97\ -\xd4\x26\x40\x1b\x2d\x81\x75\x71\xee\x68\x14\xfc\x69\xbe\xfb\x23\ -\xa7\x6f\x49\xe2\x19\x50\x3f\x79\xd5\x8a\xeb\x6a\xe5\xc9\xda\x98\ -\xc2\x60\xf0\xa9\xe8\x4b\x32\x46\xed\xcf\xdf\x12\xb8\x48\xbc\x60\ -\xd4\x32\xb4\x09\xd0\x46\x6b\x40\xd9\xab\x43\xed\x6f\x7e\x0f\xf8\ -\x72\x14\xfe\xa6\x0d\x7b\x4e\x43\x9b\x00\x6d\x34\x1d\xd6\x07\x72\ -\xe7\x82\x4b\xe6\xf9\xda\xbf\xc3\xa8\xfd\xff\x13\xd3\x57\x5b\x7b\ -\x55\x01\xda\x04\x68\xa3\xf9\xf0\xd8\xf5\xbe\xfb\x93\x33\xbe\xfe\ -\xf8\xdf\x98\xde\xdd\xcc\x21\xcf\xe5\xd0\x26\x40\x1b\x4d\x85\xf5\ -\xfe\xdc\x07\xc0\x23\x0b\xc2\x99\xeb\xe2\xf8\x2b\xa6\x0b\x51\xf8\ -\x9b\x3a\x5b\x5d\x39\xb4\x5f\x8a\x6f\xa3\x69\x40\xd7\x67\x3a\x86\ -\xb6\x5b\x50\xfb\xf7\xf8\xdf\x05\x88\x6b\x7f\xfe\x0d\xe0\xb7\xa0\ -\xf0\x0f\x8f\xcf\xd5\x05\x68\x5b\x80\x36\x9a\x07\x17\x1e\x44\xbf\ -\xdf\x24\xfc\x5f\xc1\x74\xde\x78\x0b\x3f\x47\x7b\x5e\xa0\x36\x9a\ -\x02\xeb\x7d\xb9\x9b\x51\xf3\xaf\xd0\xbe\x08\xc3\x9b\x38\xdf\x87\ -\x82\xff\x8b\x71\xba\xac\x04\xda\x16\xa0\x8d\x86\x03\x85\xff\x1c\ -\xd4\xfc\xaf\xd3\x84\xff\x76\x08\xbe\xf8\x38\x61\x84\x9f\xa3\x6d\ -\x01\xda\x68\x3c\x2c\x62\x83\x1d\x3a\x3d\x3b\x30\x7d\x0a\x05\xbf\ -\xe9\x63\xfb\x6b\x41\x9b\x00\x6d\x34\x1e\xb6\xdf\xb4\x79\x31\x26\ -\xfe\x1d\xb1\x6b\x50\xf8\xf7\x8d\xf3\x15\xa5\xa2\xdd\x0a\xd4\xc6\ -\x94\x46\x3b\x06\x68\x63\x4a\xa3\x4d\x80\x36\xa6\x34\xda\x04\x68\ -\x63\x4a\xa3\x4d\x80\x36\xa6\x34\xfe\x5f\x00\x00\x00\xff\xff\xc6\ -\x30\xe2\x20\xb7\x02\x1a\x29\x00\x00\x00\x00\x49\x45\x4e\x44\xae\ -\x42\x60\x82\ -\x00\x00\x05\x62\ -\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\x05\x29\x49\x44\x41\x54\x78\x5e\xed\x59\x4d\x4b\x34\x47\ -\x10\xae\xd9\x1d\x3f\xa2\xac\x87\xe8\xc5\x80\x88\x78\x10\x54\xfc\ -\x38\xf8\x03\x5c\x6f\x12\xf0\xa0\x42\xf0\x20\x7a\xf6\x4f\x78\xf4\ -\x1c\xf0\xe6\x31\x88\xb9\x18\x24\x22\x88\x82\xe2\xc5\x9b\x92\x83\ -\x0a\x1e\x34\x68\x54\x50\xa2\x22\x2f\xf8\xb5\x1f\xe9\x67\xe0\x81\ -\xa6\x99\xee\xde\x71\xe3\x48\x20\x05\x45\x55\xf7\x74\x75\x55\x75\ -\x55\x57\xcf\xf4\x04\xe5\x72\x59\xfe\xcb\x90\x91\xaf\x85\xff\x1d\ -\x08\xf5\xc6\xd0\xd0\xd0\xef\x85\x42\xe1\xc7\x20\x08\x24\x93\xc9\ -\x48\x73\x73\xf3\xdf\xf7\xf7\xf7\x2f\x10\x40\x9f\x0e\x33\x33\x33\ -\xdf\xf7\xf6\xf6\x7e\x87\x14\x2c\x16\x8b\xd1\xf3\x30\x0c\xa5\xb6\ -\xb6\x56\x6a\x6a\x6a\xa4\x54\x2a\x09\xe5\xb2\xd9\xac\x10\xd0\x0f\ -\x7c\x7d\x7d\x95\xf7\xf7\xf7\x08\x01\x18\x73\x70\x70\xf0\xcb\xea\ -\xea\xea\xcf\x8a\xff\x8d\xfa\x14\x6d\x52\x24\xa7\xf4\x9c\xaa\xfe\ -\x91\x9d\x9d\x9d\xbf\x44\x03\x7d\x0f\xc8\xe0\xe0\x20\x1b\x91\x03\ -\x2d\x2d\x2d\x72\x77\x77\xa7\x1b\x4f\x5e\xa6\xa7\xa7\x65\x60\x60\ -\x40\x08\x30\x1c\x32\x70\x02\x0e\x00\xc1\x53\x86\x7a\x4e\x4e\x4e\ -\xe4\xe8\xe8\x88\x8e\x44\xce\x0f\x0f\x0f\x0b\x60\x6f\x6f\xaf\xb8\ -\xb9\xb9\x89\x81\x21\xe5\x8c\xc5\x3b\x7f\x7b\x7b\xcb\xef\xef\xef\ -\xff\x99\x28\x85\xa8\x9c\xbc\x4e\xb9\x7a\x30\x06\x46\x33\x02\xa4\ -\x8d\x8d\x8d\xd2\xd0\xd0\x10\x61\x7d\x7d\xbd\x9c\x9e\x9e\xca\xda\ -\xda\x9a\xac\xaf\xaf\xcb\xc6\xc6\x86\x28\x83\x21\x4f\x3d\x59\x85\ -\xa1\x42\x9b\xae\x0e\x35\xef\x8e\x6d\x0f\xe8\x03\xf5\x95\x23\x9a\ -\x13\xc2\x68\xf0\x88\x16\x8c\x85\x21\x66\x14\x30\x07\x28\x11\xcf\ -\xe3\x16\xc0\xa6\x03\xd4\xc4\x1f\x6c\x0e\xe8\x02\x74\xc0\xba\xf2\ -\x04\x7d\xac\xda\x3f\x30\x26\x42\xee\x23\x22\xfa\xe0\x18\x78\x53\ -\x97\xe9\x94\x49\x4d\xde\x15\x81\x38\x61\xab\x13\x50\xcc\x8d\x0b\ -\x44\x9a\x90\x67\x04\x98\x1e\x74\x04\x8e\x99\xc0\xc8\x31\xa2\x00\ -\x4b\xe4\xad\x0e\x58\x57\xd5\x15\x21\x28\x84\x72\xf2\x18\x4f\xe4\ -\xaa\xc2\x41\x1a\xc8\x67\x9c\x83\xc0\x08\x59\x56\xde\xa4\x89\x22\ -\x00\x6a\x8d\x06\x0d\x03\xad\xab\xab\x03\x6f\xee\x21\x38\x86\x7e\ -\x3d\x02\x71\x3a\x38\x16\xbc\xcf\x96\xc0\xe5\x80\x4e\xe3\x94\x99\ -\x06\x32\xb7\xb9\xea\x48\x1f\xca\x99\x79\x0f\x1a\x67\x14\xe4\x51\ -\x4e\x7d\x11\xf0\xa6\x50\xdc\xaa\x90\x77\x55\x29\xae\x32\x73\x1f\ -\xd1\x00\xcf\xe8\x90\x32\x85\xe2\xf2\x9c\xa5\xd8\xbb\x1f\x4d\x1b\ -\x42\xc3\x78\x2a\x70\xf5\x99\xcf\xe8\x0c\x56\x11\x46\xc4\x55\x21\ -\xca\xe3\xf0\xa3\xd3\x18\x8f\xca\xc5\x62\xe0\xd2\x61\xec\x4b\x7f\ -\x04\x30\x39\x0c\xb1\x86\xf4\xec\xec\x0c\xcf\xb9\xc2\xfa\xc6\xa5\ -\x61\x78\x5d\x00\x65\xf8\xa3\xd7\x86\xae\xae\x2e\x99\x9c\x9c\x94\ -\x89\x89\x09\x19\x1b\x1b\x93\xf1\xf1\x71\xca\xcb\xf5\xf5\x35\xc7\ -\xda\x0a\x87\x3f\x02\x3a\x3c\x3d\x3d\x49\x7b\x7b\xbb\xf0\x7d\x47\ -\xaf\x3e\xc7\xc7\xc7\xb2\xb8\xb8\x88\xd2\x19\x29\x37\xd3\x83\xab\ -\xae\xa7\x99\xb9\x49\x59\xb9\x00\x0f\x0f\x0f\x72\x73\x73\x43\x19\ -\xd2\xb8\x68\x04\xd6\x77\xa1\x9e\x9e\x1e\x36\x28\x4c\x9a\xa4\x8f\ -\xc0\xfe\xa4\xf3\xf9\xe6\x2d\xa8\x77\xa1\x9a\x0f\x94\x51\x7f\x5f\ -\x0c\x54\x35\x9f\x8e\x36\xc8\xa4\xa0\xac\x52\xc7\xab\x3e\xc8\xaa\ -\x99\xd8\xa5\x24\x89\xe3\xe4\x2b\x8e\x72\xe8\x08\x3b\xbf\x11\xf0\ -\x61\xe3\xca\x51\x6f\x79\x8d\x01\x5b\xee\x13\xf8\xed\x80\xef\x11\ -\x67\x19\x0d\xc5\x01\x0b\x0b\x0b\x92\xcf\xe7\xa3\xc3\xc9\x00\x56\ -\x14\x22\xdb\xb6\x3e\x3a\x96\x48\x0e\x65\x78\x79\x79\x59\xb6\xb7\ -\xb7\x75\xe3\xfd\x07\x19\xa1\xbf\xbf\xdf\x3c\x60\xc0\x27\x31\x9c\ -\xed\xc4\x72\x3c\x9d\x91\x01\x5b\x5b\x5b\xd6\xc3\x34\x74\x85\x1f\ -\x13\x68\x50\xbd\x91\xc9\xe5\x68\x0b\x79\x7f\x04\x2c\xf0\x09\x46\ -\x26\xea\xf3\x47\xc0\x95\x4a\xbc\x45\xd8\xdd\xdd\xe5\x73\x17\x5a\ -\xc7\x70\x2e\x80\x43\x0e\x07\xaa\x34\x35\x35\xb1\xdf\xb4\x29\xf0\ -\x46\x40\xf7\x96\xe1\xc4\x46\x1e\x19\x19\x49\x63\xb5\xf5\xb6\xf7\ -\x85\x32\xe3\x39\x03\xcc\xf7\x18\xb6\x6d\x7d\x6c\xdb\xe4\x12\xcf\ -\x05\xf8\xe8\xf7\xc0\xbf\x6d\x24\xf8\x44\x7d\xe4\x4d\x47\xfc\x11\ -\xa0\xd0\xd7\x47\x80\x34\x71\x04\x00\x3e\x23\xc1\x7f\xb6\x73\x71\ -\x8b\xeb\xdc\xc4\xbe\xf2\x99\x7a\x39\xd5\x20\x71\x19\x35\x8f\x75\ -\xdc\x5d\x42\xe6\x53\x4a\xa7\x3e\xa6\xbb\xbb\x5b\x72\xb9\x1c\x75\ -\x8b\x05\xbc\x65\x94\x13\xf3\xe6\x00\x97\xb0\x9f\x7d\x78\xd9\x72\ -\x1f\x36\x25\xda\xc4\xa4\x69\xe6\x3b\xdb\xae\x3d\x50\xf1\xbb\x50\ -\x9a\xf9\xee\x6a\x9b\x36\x39\x4f\x62\xd3\x5b\x9b\xa2\x34\x9d\x63\ -\x14\x3e\xf4\x3d\xe0\x52\x96\xaa\x23\xe6\xde\xac\xf4\xff\x40\xda\ -\xf9\xee\x7c\x17\x02\x24\x39\xc8\x6c\x87\x59\xea\x27\x33\xa1\xe2\ -\x8b\xad\xce\xce\xce\xe8\x57\xd0\xf9\xf9\xb9\xa9\x5c\x5e\x5e\x5e\ -\x2a\x4d\x81\xaa\xbe\x21\xf8\x6f\x8d\x7d\xb0\xa7\xad\xad\x2d\x3a\ -\x8b\x2e\x2f\x2f\xed\x9b\xb8\xb5\xb5\x55\x96\x96\x96\x04\xb0\xb2\ -\xb2\x42\x65\xbc\x16\xc4\x6d\x1c\x78\x1f\x52\xb9\xeb\xb0\x8a\x6d\ -\x13\x3b\x3a\x3a\xa2\xcb\x61\xca\x4c\x4d\x4d\xc9\xe8\xe8\xa8\x00\ -\xe6\xe6\xe6\xec\x11\xa0\xe7\xe4\xa9\x88\xbf\x81\xfa\xfa\xfa\x52\ -\xfd\x16\xd0\xbf\x8d\x09\xe0\xad\x0e\x5c\x5c\x5c\xc8\xfc\xfc\x7c\ -\x14\xb2\xc3\xc3\x43\x78\xfd\xa5\xef\x41\x8c\x9e\xfa\x77\x8c\xbf\ -\x9b\x51\x0a\x5f\x5d\x5d\xb9\xf7\x80\xfa\x91\xac\xd7\x5a\x53\x59\ -\xea\x11\x00\xdc\xde\xde\xc2\xae\x8a\x4e\xe2\x3f\x14\xf6\x53\x10\ -\xde\xe2\x56\x9a\xe0\xbb\xeb\xf1\xe7\xb7\x7f\x8c\xd9\xf7\xf8\xf8\ -\x08\xaa\xa7\xf6\x91\xe9\x00\x56\x3c\x0b\x5e\xdd\xc0\xfd\xa4\xd2\ -\x67\x52\x09\xe4\x50\x62\x67\x67\x67\x33\xa0\xea\x79\x44\x89\xea\ -\x39\xfa\xb2\xe0\x15\x64\x15\x84\xaa\x8f\xe3\x02\xf4\x1b\x6d\x58\ -\x50\x52\xed\x12\x28\xf6\x13\xdb\xa4\x44\x63\x1c\xe4\x40\xa3\x3e\ -\xa5\xe7\xdb\xf3\xf3\xf3\xaf\x8a\x6f\x14\x91\x37\x85\x85\x20\xee\ -\xb7\x11\x0d\x35\x30\x4b\xea\x41\xc8\x84\x9a\x1c\xa0\xa4\x61\x91\ -\xa8\xb5\x0b\x7a\x9b\x3c\x51\x6f\x97\x0d\x83\xff\x01\xe4\xd7\x4f\ -\xa9\xe7\x7f\xad\x74\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\ -\x82\ -\x00\x00\x05\xfd\ -\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\x05\xc4\x49\x44\x41\x54\x78\x5e\xed\x5a\x4d\x88\x5c\x59\ -\x19\x3d\xe7\xbb\xdf\x7b\x35\x1d\x7b\x02\x6a\x86\x19\x71\x50\xe6\ -\x47\x74\x21\x64\x33\x19\x14\x57\x61\xc0\x9f\xb8\x1a\x41\xb7\x13\ -\x5c\x64\xe5\xc2\x85\x8b\x59\xb9\x98\xa5\x8b\xc1\x1f\x66\x13\xf0\ -\x07\x5c\x08\x6e\x1c\x17\x2e\xd4\xb5\x20\x66\xeb\x4e\x67\x1a\x9b\ -\x18\x06\x3a\x62\x57\x75\x25\x9d\xea\xf7\xee\xf7\x0d\xfd\xa8\xaa\ -\x9b\xae\xfb\xee\xa3\xaa\x69\x92\x0e\xe4\x54\x17\xaf\xfb\xdc\x07\ -\xef\x9c\x7b\xce\xbb\xf7\x55\xd1\x74\x77\x3c\xc9\x10\x3c\x5e\x3c\ -\x35\xa0\x58\x13\x24\xf9\x08\x0d\x9b\xbb\xfb\x99\x19\x20\x29\x37\ -\x6e\xdc\x78\xf1\xca\x95\x2b\xaf\x36\x4d\xd3\x99\x30\x33\xe2\x8c\ -\x21\x22\x5e\x55\x95\xdd\xba\x75\xeb\xdf\x24\x6f\xbb\xbb\x9d\x55\ -\x02\x5b\x57\xaf\x5e\x7d\xeb\xda\xb5\x6b\xef\xcc\x0d\x61\x71\x24\ -\xb9\x6a\x36\x3b\xce\x51\x38\x37\xc7\xc5\x8b\x17\x7f\x7c\xf3\xe6\ -\xcd\x77\x01\xdc\x3b\x2b\x03\x6c\x9a\x66\xcb\xcc\x4a\x17\x4d\x7c\ -\x8e\x8d\xcf\x9f\xcd\x66\x5b\x00\x78\xaa\x0a\xfd\xec\xcf\xfb\xbf\ -\xbe\x30\xf2\x37\x1e\x1e\xfb\xf9\x9f\x76\xd9\x1e\xed\x6e\x3f\x3c\ -\xe3\xc5\xdf\xcb\xc7\x8d\x0d\x6f\x6c\xe0\x9d\x3f\xee\x7f\xeb\x4b\ -\xcf\xdb\xf5\x10\x70\x02\x87\x74\x04\x27\x1e\x95\x01\x77\xe7\xa9\ -\x12\x68\xdd\x3e\x6b\x70\x58\xc4\x09\x34\xd1\x41\xf7\x4c\xf0\xa9\ -\x0c\x24\xee\xec\x13\x30\x03\xda\xe8\x58\x45\x8c\x0e\x33\x94\xc4\ -\x9f\xb9\x81\xd9\x27\x5e\xfa\xc1\x4f\xde\xdf\xb9\xfe\x8b\xbf\xfe\ -\xcf\x4f\xf0\x0d\x3e\xdc\xb9\xf7\xe9\x6f\xbe\xf7\x5d\x4c\x8b\x06\ -\x9a\xdc\x40\xc7\xa9\x7b\x12\x7b\x66\x55\xca\x41\x12\x95\x72\x7b\ -\x7b\xe4\xdb\xcf\x8c\x0c\x0f\x63\x7b\x84\xcf\xec\xdf\xbf\xfb\x26\ -\x70\xe9\xb7\xfd\x06\x60\x7d\x09\x74\x9c\xd9\x5a\xb3\xbf\xb6\x70\ -\x77\x2f\xf5\x7f\xd1\x84\xfe\x36\x38\xeb\xf2\x3d\x30\x90\x80\xb9\ -\x67\x02\xd7\x37\x90\xc4\xe5\xc7\x1c\xe6\xde\xe9\x08\x3d\x5a\x8e\ -\xcc\xaa\x44\xac\x59\xa1\xd6\x1c\x96\xe8\x75\xc4\x67\xc2\xdd\x7d\ -\x03\x03\xdd\x35\x7b\xb5\x98\x11\x65\x03\x11\x03\x15\x4a\x09\xac\ -\x53\xa5\x24\x3c\xbd\x91\xb8\xc1\x2a\x99\x39\x5a\xf4\x27\x60\x86\ -\xb2\x81\x08\x2b\x57\x68\xb8\x36\xc5\x59\x37\xb3\x8d\x53\x30\x47\ -\xa7\x43\x7a\xb4\xb8\xd3\x87\x2b\xd4\x1a\x56\xd0\x71\x51\x3c\x09\ -\x2c\x54\x29\x09\xcd\xde\x1b\x19\x88\xe6\x68\xcc\x20\x3d\x5a\x62\ -\xf4\xb2\x01\x1f\xda\x07\xe0\x3d\xa2\x87\xc5\x9b\xd9\xa9\x6a\x64\ -\xe6\xdd\x35\xdb\x4d\x2b\xd4\x5a\xa9\x42\x80\x49\xbf\xf8\x39\x32\ -\xe1\x9b\xa6\x90\x57\x08\x60\xdf\x64\xc2\x86\x2b\xd4\x16\x57\x21\ -\x1f\x7a\xaa\xcc\xc4\x0f\x1b\xc9\x85\xbb\xa7\x84\xcd\x1d\xad\x15\ -\xee\x81\x38\x78\x13\x0f\xec\x03\x56\x4e\xc0\xcc\x8a\xe2\x13\x5f\ -\xae\x51\xbe\x91\x75\x3a\x7a\x13\x30\x0c\x18\x68\x5a\x1b\x1d\xb2\ -\xc7\x40\x4b\xdc\x53\xc5\x9d\xfd\x36\x5b\x7d\x8a\xd5\xc9\xb9\xe2\ -\x6a\xb4\x8a\x7b\x51\xf1\xa0\x25\x62\x93\x8f\xcd\xa2\x9d\xdc\x89\ -\x5f\x7b\xfb\x1f\xdf\x00\xf9\x1d\x3a\x19\x02\x5e\x56\x65\x4f\x6c\ -\x11\xbb\x81\xb8\xf3\x87\x9d\x25\xc7\xc5\x18\x3a\x15\xcb\x63\xce\ -\x75\x4c\xf7\x82\x23\x8d\x63\x61\x00\x19\xfe\xbb\x47\xdc\x8f\x53\ -\x30\x1c\xe6\x75\x6e\xfd\xcd\x2b\x6f\xdf\xb9\xec\xec\x9c\xbf\xaf\ -\x6f\x5c\x7e\xe1\x97\xaf\xbd\xfc\xec\xc5\xf9\x65\x82\x19\x32\x38\ -\x1c\x02\x47\x5d\x85\xa5\xf8\x34\x56\x80\x17\xc9\xf2\x29\xa9\x09\ -\x30\xb0\x7b\xad\x42\x04\x5f\x25\xf8\x3a\x00\xdc\xfa\xe0\xe0\xdb\ -\xfa\xe1\x5e\x9c\xdd\xde\x3f\x98\xa2\x03\x6a\xc2\x2f\xf4\xf5\x52\ -\xc5\xb0\xbd\x35\x42\xbf\xbd\x5c\x51\x9a\xe7\xb2\x99\x12\xee\xcf\ -\x5a\xb4\x2e\xbd\x06\x1c\x3c\x04\x70\x04\x00\x47\x4d\x9c\x69\xad\ -\xd5\xa4\xd6\xb0\x55\x98\x97\x64\x80\x86\x4a\xb5\xa0\xa3\x6c\xa6\ -\xcc\x97\x51\x05\x82\x2e\x85\x47\xef\xc4\xc1\x65\xa2\x75\x5d\x8f\ -\x6b\x0d\xcf\x2f\x05\xb8\xa3\x94\x40\xad\xf5\xc0\xec\x6f\xc6\x27\ -\x2a\xff\x53\x1a\xa0\x66\x00\x7a\x0c\x90\x4c\x26\x18\xc7\x5a\xab\ -\x4e\xea\x4a\x17\x42\xe9\x6e\xbd\x06\x2a\x71\x54\x95\xae\x0c\x14\ -\x84\x79\x41\xb2\x27\xae\xfb\x49\x04\xc0\x54\x1f\xad\x46\x03\xdf\ -\x7e\x08\xd3\x18\x8f\x13\xd0\x71\xad\xc9\x80\x99\x21\x47\x57\x21\ -\xd4\xaa\x89\xc9\x94\xae\xf0\xf9\x21\x8d\xba\x23\xc6\x08\x91\x00\ -\x52\x40\x02\x66\x86\xc3\x59\x84\x84\x1a\x81\x82\x12\x44\x92\x01\ -\x10\x63\x1d\x55\x61\x52\x05\x2e\xb6\x70\x9a\x11\x19\xba\x0a\x11\ -\x95\xae\xac\x3f\xce\x24\x6e\x88\x5f\xce\x38\x97\x4b\xa7\x4a\x40\ -\x55\x55\x9d\x70\xb3\x88\x07\x8d\x81\x22\xa8\x29\x00\x39\x60\x80\ -\x94\xf9\x38\x19\x26\x5a\xab\x8c\x35\xa4\x47\x89\x48\x47\x9f\xa6\ -\x4a\x80\x4a\x97\x7e\xd0\xab\x7b\x1d\x0e\x58\x7e\xb6\x10\x31\xc0\ -\x0d\x8d\x45\x18\x89\xaa\x92\x64\xb8\x80\x20\x80\xc8\xb2\x4e\x63\ -\xad\x14\xe3\x65\x02\xe6\x6c\x23\x91\x63\x6e\x20\x30\x29\x03\x57\ -\x97\xc8\xc4\xe7\xdc\x89\x4d\x2d\x02\x50\x95\xce\x48\xeb\x11\x06\ -\x76\x7b\xcc\x3a\xd0\x00\x8a\x2c\x12\xf0\xe3\x0a\xc9\xc1\x22\x81\ -\x68\x24\x85\xe5\x04\x2a\x16\x56\x8e\x45\x2c\xec\xe1\xb3\x36\x22\ -\x04\x82\x04\xda\x18\x11\x3b\xf1\x79\x6d\xca\x06\xc8\x20\x5c\xd4\ -\xe9\x40\x47\xca\xfd\x30\x37\xd0\x46\x82\x28\x18\x08\x40\x1d\x16\ -\x04\x4b\xeb\xfa\x0a\xef\xd9\xb9\xde\x99\x10\xcc\x8e\x22\x0c\x82\ -\xba\x62\x32\xbe\x9e\x81\xee\x7d\x8c\x40\xec\xeb\xa8\xf2\x8f\xe6\ -\x99\x38\x49\x02\xe5\x0a\xa9\x72\x60\xa9\x64\x0f\x8f\x3e\xae\x5b\ -\x6d\x22\x04\xaa\x25\xf1\x65\x54\x4a\xce\x0d\x50\xc5\x3e\x52\xad\ -\x75\x27\xc0\x05\x40\x64\x29\x47\x27\x08\x47\xd3\xb4\x28\xc3\xb1\ -\x0e\x9a\xd6\x61\x90\x54\xc7\x0d\x51\x05\x72\xbe\x1a\x4a\x84\xee\ -\xe8\xf4\x8b\xdc\x7d\xee\x83\x65\x8a\x64\xc9\x03\x02\x5a\x1f\x12\ -\xb9\x9e\x20\x2a\x51\x83\x38\x2d\x34\x80\x5d\xed\x1c\xd8\x7b\x85\ -\xbb\xfa\xa3\x4f\x49\xfc\xdd\xae\x4d\x1d\xd8\x32\x27\x87\x85\x10\ -\x8f\x1b\xaa\x5d\x02\x20\x30\x3d\xd6\xae\x00\x50\x2b\xc6\xc7\x06\ -\x62\x74\xa1\xe2\x5c\x23\x88\x4b\xad\x00\x81\xf1\xf2\x13\xd9\x48\ -\x31\x31\xf0\x85\xa6\x45\x10\xe2\x5c\x43\x04\xa1\x56\x42\xe0\x93\ -\xa5\x81\x23\xe3\xe4\x41\xeb\x9c\x1e\xc6\xe0\x6e\x38\xcf\x20\x25\ -\xb8\x28\x9f\x51\x4e\x16\xa5\xe6\x6f\xfe\x76\xf7\x57\x07\x36\xfa\ -\xde\xf4\xf0\xe8\x02\x9e\x00\x6c\x6f\xd5\xf7\x9f\x95\xd9\xef\xaf\ -\x7f\xed\xd2\xf7\x09\x20\x00\xf8\xc2\x97\xbf\xf2\xf5\x1f\x6e\x7f\ -\xf2\xb9\x17\x1d\x2e\x70\xc7\xb9\x04\x09\x82\x36\xfd\xff\xde\xed\ -\x7f\xfe\xfd\x2f\x3f\x05\xf0\x2f\xba\x3b\x48\xd6\x00\x3e\x0f\xe0\ -\x73\x00\x2e\x01\xa8\x70\x3e\xd1\x00\xb8\x0b\x60\x17\xc0\x7f\xdc\ -\xfd\x88\xe9\x0b\x25\xca\xfc\x9e\x10\x9c\x6f\x18\x80\xd6\xe7\x37\ -\xeb\xd3\xff\x56\x79\xdc\xf8\x18\xcd\x4f\x3b\x6b\x2b\xe2\x5f\xe1\ -\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x40\x67\ -\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\x06\x00\x00\x00\xc3\x3e\x61\xcb\ -\x00\x00\x40\x2e\x49\x44\x41\x54\x78\x5e\xed\xbd\x07\x94\x5d\x57\ -\x99\x2e\xb8\x4f\xbe\x39\x56\x8e\xca\xc1\x8a\xb6\x2c\x47\xc9\xc2\ -\x39\x83\x81\x36\xe9\x11\x1f\xdd\x4c\x33\x84\xd5\x8b\x99\x37\xcc\ -\xac\x37\xdd\xc0\xf4\x62\xcd\xa2\x9b\x0e\xb8\x5f\xf3\xa0\xdf\x33\ -\xe9\x35\x98\x38\x06\x0c\x4e\xd8\x38\x0a\xcb\x96\x2c\x2b\x67\x97\ -\x54\x41\x95\xeb\xde\x5b\x37\x9e\x7c\xe6\xfb\xf7\x3d\x47\x75\x5c\ -\x4f\x6e\x56\x77\x83\xb0\xca\xb5\x61\x7b\x9f\xb3\xcf\xbe\xb7\xaa\ -\xf4\x7d\x7f\xdc\xe1\xb0\x37\x45\x59\x2c\x8b\xc5\xf3\x3c\xf6\xc3\ -\x1f\xfe\x50\xf8\xfc\xe7\x3f\x2f\xe0\x5a\xd8\xb3\x67\x0f\x5d\x8b\ -\x54\xef\xbb\xef\x3e\x91\xfa\x9e\x7a\xea\xa9\xe0\x39\x43\xfb\xa6\ -\x00\x40\x58\x88\x60\x13\x78\x97\x5c\x72\x89\xd0\xda\xda\x2a\xe0\ -\x56\x58\xb6\x6c\x99\xb0\x6f\xdf\x3e\xd1\x75\x5d\x29\x91\x48\xf0\ -\x3e\x51\x14\x85\xdf\xbc\x74\x40\x1b\x1d\x9f\xd4\x36\xae\x5b\x55\ -\x5f\xb9\xac\xd7\x46\x9f\xd7\x68\x34\x3c\x5d\xd7\x5d\x7c\xd6\x41\ -\xf1\x56\xac\x58\xe1\xde\x7f\xff\xfd\xec\x73\x9f\xfb\x9c\x2b\x08\ -\xc2\x22\x01\xde\xc8\xa0\xa3\x88\x3b\x76\xec\x10\x24\x49\x12\x27\ -\x27\x27\xe5\x57\x07\xc7\x63\x0f\x3d\xf2\xf4\xc6\x4a\xb5\xbe\xdc\ -\x76\x9c\x1e\xdb\xb6\xfb\x1c\xc7\xed\xf2\x98\x1b\x65\x1e\x8b\x10\ -\x11\x3c\xae\x1e\x18\x61\x6b\xe3\xd6\xc0\x45\x59\x96\xa5\x11\x7c\ -\xc7\x90\x2a\xcb\x23\xd9\x6c\xfa\xe8\x27\xff\xe4\xdd\xc7\x45\xc1\ -\xb3\xd2\xe9\xb4\x33\x35\x35\xe5\xd2\x27\xde\xf5\xae\x77\x79\x8b\ -\x04\x78\x03\x14\x52\xeb\x91\x48\x44\xc8\xe7\xf3\x72\xbd\x5e\x97\ -\xff\xe6\x1f\xff\xc7\x2a\x48\xf5\x36\xd3\xb0\x36\x5b\xb6\xb3\x0a\ -\xc0\x8a\x00\xd5\x45\xeb\x76\x77\x76\xc8\xcb\x97\xf5\x47\xfa\xfb\ -\xba\x22\xc9\x44\x42\x8e\x46\x23\x52\x34\xa2\x49\xb6\xe3\x7a\x7a\ -\xa3\xe1\xd4\x1a\xba\x3b\x53\x28\x5a\x03\x03\x43\xc6\xa9\x81\x33\ -\x46\xb9\x52\x23\xd3\x21\x81\x18\x75\x45\x91\x0f\x6a\xaa\xb2\x17\ -\xda\xe2\xd7\x1f\x7e\xdf\x5b\xa7\xa0\x4d\xec\x62\xb1\xe8\xde\x7b\ -\xef\xbd\x17\xb5\x66\x10\x2e\x66\xe0\x35\x4d\x13\x01\xbc\xf2\x8d\ -\xef\xfe\xb4\xf5\x95\xfd\xc7\x6e\xaa\xd5\xeb\x37\x2a\x8a\xba\x0e\ -\xc0\x46\x2a\x95\xf2\xf0\xd5\x57\x5c\x9a\xd8\x76\xcd\xd6\xcc\xc6\ -\x75\x6b\x33\x2b\x57\x2c\xc9\x00\x6c\xc5\xf3\x5e\x4b\x7c\x80\x47\ -\x3d\x54\x79\x09\x2e\x69\xdc\xd4\xf4\x8c\x7e\xf8\xe8\xc9\xd9\xbd\ -\xfb\x0f\x57\x1e\xfb\xd5\x33\xa5\xd1\xf1\x29\x0f\x45\x54\x14\x69\ -\x6f\x22\x1e\x7f\xfc\xed\x77\x5e\xff\xcc\x35\x57\x6e\xae\x75\x77\ -\x77\x3b\xdf\xfb\xde\xf7\xdc\x8b\xd1\x6f\x10\x2e\x46\xe0\xd1\x88\ -\xb0\xd1\xca\xd7\xbf\xf5\x93\x5e\x00\x74\x2f\x24\xf8\x8e\x64\x32\ -\xd9\x02\x50\x32\xd9\x4c\x5a\xbd\xf5\xa6\xed\xea\x8e\x6d\x5b\x9d\ -\xb6\xd6\x96\x68\xa0\xdf\x51\xc4\xd7\xf2\x3e\x60\x82\x80\xe7\xcc\ -\xc4\x18\x27\x78\xea\x02\x64\x30\x40\x0a\xb3\xc2\x75\x5c\xf7\xc0\ -\xe1\x63\xc5\x07\x7f\xfe\xe8\xf8\xa3\xbf\x7a\xb6\x82\x5b\x0d\xfd\ -\xe5\x78\x2c\xf6\xe3\xdb\x6f\xba\xf6\xc1\x2b\x2e\x5b\x5b\x19\x19\ -\x19\xb1\x3f\xf5\xa9\x4f\x5d\x54\x1a\x41\xb8\x98\x6c\xfc\x87\x3e\ -\xf4\x21\x71\x60\x60\x40\xf9\xe6\x77\x7f\xd6\xb9\xef\xc0\xb1\x0f\ -\x03\xb9\x5b\xb2\xb9\x5c\x57\x3c\x1e\x4f\xa8\x8a\xec\xdd\x74\xfd\ -\xb5\xda\x1d\xb7\x5c\x17\x49\xc4\x63\x02\x99\xf7\x26\x0e\x02\x0b\ -\xb5\xe7\x2d\x00\xcc\x96\x65\xb1\xca\xbc\x26\x2d\x6c\xdb\x49\x91\ -\xa4\x7b\xde\x39\xfc\x05\xdc\xd3\x9d\x4b\x8f\x5f\x1d\x18\x2c\xdc\ -\xf7\xb5\x6f\x9d\xde\x77\xe0\x88\x05\x9f\x42\xc3\x13\x23\x16\x8d\ -\xfc\xf8\xfd\xef\xba\xf3\x81\xcb\x36\xad\xa9\xdd\x74\xd3\x4d\x0e\ -\x69\x96\x45\x02\xfc\x8e\x0a\x85\x67\x70\xbe\x24\xc7\x13\x63\x5f\ -\xfe\x87\x6f\xdf\xa3\x1b\xe6\x87\x72\xd9\xdc\x92\x64\x2a\x99\xd2\ -\x00\x7c\x3c\x1e\xf3\xde\x7b\xef\x5d\xb1\xf5\x97\xac\xd2\x48\xa5\ -\x13\xce\xd4\x12\xe2\x74\x4d\xad\x24\x0a\x86\x88\xea\x4b\xba\x00\ -\xa4\x45\x8f\xf1\x2a\xe0\x59\x43\x04\x09\x38\xd4\x54\x5d\x57\x86\ -\x16\x90\x5c\xd7\x53\xa0\x5d\x12\x64\x0f\x80\x3f\x21\xca\x5b\x8c\ -\x30\x1d\xdb\xa9\xdf\xff\xed\x1f\x1c\x7b\xf0\xa1\xc7\x4a\xd0\x06\ -\x51\x10\x21\x0a\xd0\x27\x5b\x5b\x72\xff\xf0\xa5\xcf\xff\xd9\x0b\ -\x47\x8e\x1c\x31\x3f\xf6\xb1\x8f\xfd\x7b\xb5\xc1\x22\x01\xfe\xf6\ -\x6f\xff\x56\x5c\xb3\x66\x8d\xf2\x5f\xbf\xf9\xe3\xd5\xa7\x06\x86\ -\x3f\x03\xe0\xaf\x4e\x67\xd2\xb9\x88\xaa\x7a\xaa\xa6\x3a\xaa\xa2\ -\xba\xf7\xdc\x7d\x63\x7c\xe3\xba\xd5\x61\xf0\x99\x20\xf2\x2b\x4f\ -\x81\x64\xc3\xab\x9f\x25\x80\x7d\x4d\x10\xe8\xfe\x80\xfd\x9e\x17\ -\x5c\x7a\xbe\xb4\xf3\xa6\x09\xb6\x0d\x60\x4d\xcb\x6e\xc3\x35\x6b\ -\x56\x26\x80\x20\x82\xdb\xbc\xa9\xfe\xf5\x57\xbe\xf6\xfc\xae\x97\ -\x5e\x31\x30\x2e\x0e\xc7\x30\xe6\xd8\x6e\x54\x56\xe5\xe7\x77\x5c\ -\xb3\xe5\xcb\xb7\xdd\x70\x55\x61\xff\xfe\xfd\x0e\xb4\x97\xb7\x48\ -\x80\x7f\x43\xe2\xe6\xe9\xa7\x9f\x96\x10\xba\x69\x7f\xfe\xc5\x7f\ -\xbc\xbd\xae\x9b\x9f\xec\x68\x6f\x5f\x15\x8b\xc5\x94\x08\x80\x87\ -\x03\xe8\x12\x01\xba\x3a\xdb\xc4\xf7\xbc\xe3\x8e\x2c\xa4\xdb\x23\ -\xe0\x51\x39\xba\xa2\xc8\xec\xa8\xa6\x0e\x89\x92\x60\xfa\x76\x3e\ -\xc0\x99\x1a\xef\x7c\xcc\x3f\x87\x12\x49\x3b\xbf\x69\xb6\xba\x69\ -\xb7\xda\x96\x93\xe7\x98\x63\x94\xeb\xa2\x7a\x2e\x27\xc2\xe4\xe4\ -\xf4\xf4\x97\xfe\xfe\x6b\xfb\x8b\x85\x62\xad\x56\x6f\x48\x0e\x34\ -\x06\x6a\x1c\xe3\x8a\x3d\xdd\x1d\x7f\xf9\xff\xfe\xc5\x9f\x1d\x90\ -\x65\xd9\xba\xfc\xf2\xcb\xbd\x45\x02\xfc\x2b\xc0\x7f\xe2\x89\x27\ -\xe4\x43\xc7\x5e\x4d\x7e\xe3\x9f\x7f\xfa\x49\x98\xf8\x77\xb6\xb6\ -\xb4\x74\x45\x22\x9a\x1b\xd1\x34\x07\xad\xa3\x82\x00\x9a\x2a\xbb\ -\xeb\xd6\xae\x8c\x5c\x79\xf9\xa6\x04\x24\x9c\xe3\xcb\xb5\x00\x27\ -\x80\x60\xa8\xaa\x3c\xa9\xca\x52\x19\xd7\xf6\x1c\xbe\x34\xe8\xbc\ -\xd8\x13\x45\xc2\x54\x20\xbb\xcf\xaf\xe0\x00\xaa\xa6\xe5\x64\x2d\ -\xcb\xc9\x39\x9e\xa7\xf1\x7e\x9f\x04\x20\x28\xbb\xff\x3b\x3f\x29\ -\xd6\x1b\x0d\x61\x6a\x72\xf2\xf4\xd8\xd8\xd8\x78\xc3\x30\x34\x68\ -\x82\x84\xed\xba\x4a\x3a\x99\xf8\xda\xd7\xfe\xee\x2f\x7e\x02\xe2\ -\x5a\xeb\xd7\xaf\x77\xd9\x1b\xac\xc8\x6f\x44\x67\xef\xb1\xc7\x1e\ -\x93\x9f\x7f\x71\x7f\xfe\x67\xbf\xfc\xf5\xff\xd5\xda\xd6\x76\x77\ -\x2a\x95\x4a\x22\xb2\xb3\x51\x89\x00\x36\x24\xdf\xd5\x14\xc5\x55\ -\x60\x06\x00\x8a\xe9\xa0\xb8\x8c\xab\x7d\x4b\x53\xa4\x49\x11\x2d\ -\x39\x76\x90\x50\xcb\x75\x59\x19\x02\x1d\x46\xd6\x13\x50\xc2\xc0\ -\x87\x88\x37\x8f\x88\xc1\x33\xaf\xae\xc8\x42\xc9\xb2\x3c\x86\x1f\ -\xd5\x06\xf0\x69\x2c\x99\x01\xd6\xd0\x0d\x37\x16\x8d\xda\x92\x28\ -\x8a\x4a\x57\xd7\x12\x38\xa5\xcb\xca\xe5\x4a\xb5\x54\x2a\xd5\xa6\ -\x67\x66\xca\xe5\x72\xf5\xe3\x1f\xfd\xe4\xe7\x5a\xef\xfb\xd2\x67\ -\xff\xe9\x9b\xdf\xfc\xa6\xf1\x91\x8f\x7c\xc4\x5d\xd4\x00\xaf\x2f\ -\xf9\x1c\xfc\x9f\x3e\xfc\x74\xe7\xce\x5d\xfb\xfe\x73\x67\x57\xe7\ -\xad\xa9\x44\x32\x8a\xb8\xde\x89\x50\xd5\x22\xae\xa6\x29\x8e\xa6\ -\x6a\x2e\xd4\xaa\x6b\xea\xd5\x17\x3c\xcf\x1c\xb8\xe7\xee\xbb\xde\ -\x0d\x93\xd0\x0e\x02\x98\xb2\x24\x95\x7c\x37\x80\x3c\xfb\x8a\xef\ -\xd9\x13\xd1\xc5\x58\x44\x19\x0c\x6b\xbe\x30\x09\xc2\x6d\x78\x0c\ -\x91\x22\x68\x6b\x0d\x6b\x25\x34\x41\xe7\x39\x5f\xc0\x73\xd9\xab\ -\x03\xc3\x8d\xc3\xc7\x5e\x6d\x98\xa6\x25\x18\xa6\x21\xea\xba\x2e\ -\x81\x14\x12\x52\xca\x54\xc5\x62\xa9\x34\x3b\x39\x39\x35\x21\x49\ -\xd2\xaf\xfe\x8f\x4f\x7f\xf8\x6f\x0a\xd3\xe3\x8d\xcf\x7c\xe6\x33\ -\xee\xa2\x06\x38\xbf\xcd\x97\x1f\x7f\x6a\x57\xdb\x6f\x5e\xdc\xf7\ -\xb9\xee\x9e\x9e\x9b\x52\xc9\x44\x84\x24\x1f\x0c\xe0\x6a\x5f\x53\ -\x55\x57\x45\x55\x14\xd9\x2d\x15\xc6\xbe\x5f\x9c\x3a\x7b\x18\xd7\ -\xce\xae\x17\x9e\x1b\xbb\xe2\xaa\xeb\xfe\x52\x91\x25\xd9\x12\x9c\ -\x16\xc2\xcb\x0f\x00\xda\xc1\x84\x1a\x34\x42\x43\x91\xc4\xa2\x25\ -\xb1\x86\x1f\xf6\xfd\x56\x22\x9e\xa7\x08\x0d\xdd\xcc\x92\xe6\x67\ -\xfe\xf3\x52\xa9\x6c\x0f\x8e\x8c\x57\xf1\x7b\x09\x22\x42\x09\x49\ -\x16\x19\x08\xc8\x00\xb6\x07\x8d\xc0\x44\x5e\xa5\x0c\xb1\x71\x74\ -\x6c\xfc\x2d\x7f\x75\xdf\xb7\xc4\x2f\xff\xe5\xff\xf6\x25\x10\x48\ -\x47\x9f\xb7\x48\x80\x10\xf8\x8f\x3c\xf2\x88\xbc\x67\xdf\x91\xcc\ -\x53\xcf\xed\xfe\x3f\x7b\x7a\xfb\x6e\x4c\x26\x13\x1a\x81\x4f\xea\ -\x35\x0a\xdb\x0f\x09\x27\xf0\xb9\xe4\xdb\xb6\xbe\xbf\x52\x18\x3b\ -\x48\x3e\x01\xd9\xfc\x42\xa9\x9e\x3c\x70\xe8\xc4\xcc\xba\x35\xfd\ -\x43\xf9\x6c\x6a\x12\x00\xca\xf0\xca\x93\xd0\x00\x65\x59\x12\xeb\ -\x01\xe8\x64\xaf\x43\x04\xf8\x57\x91\x80\xc2\x3c\xdb\x76\x1a\x70\ -\x00\x65\x92\xff\xc9\xc9\x82\x71\x66\x78\xac\x4e\x40\x33\x55\x11\ -\x24\x47\x14\x70\xed\x89\xa8\x60\x83\x87\x3b\x10\x0d\xf7\xa8\xd0\ -\x14\x09\xf0\xa7\x13\x9a\xe0\xfa\xcf\x7e\xee\xef\x8a\x88\x4c\xbe\ -\x8e\xd9\x48\xc3\x77\x0c\x17\x09\x00\xc7\x49\x9c\x9e\x99\x8d\xfd\ -\xe4\xa1\x27\x3e\xd5\xd3\xdd\x7b\x27\xc0\x8f\x00\x78\x27\x4a\xe0\ -\x47\xc9\xd9\xe3\xd2\xef\x91\xe4\x43\xae\x67\xa6\xc7\x87\x7f\x09\ -\xfb\xef\x40\xca\x5c\x49\x12\x59\x2a\xd3\xba\x75\x6a\x62\xf8\x1b\ -\x0f\x1d\xdf\x7d\xf2\xd2\x4b\x2f\xed\xc4\x0c\xde\x52\xcc\x0f\xc4\ -\xe0\xbc\x79\x86\xc3\x44\xc7\xf1\x00\x00\x13\x41\x86\x2a\xf1\x20\ -\x20\x01\xd9\x71\x94\x79\xb8\x7b\x01\x49\xe6\xa9\x7f\x67\x85\x61\ -\x39\xb1\x4a\xa5\xa6\x8f\x8d\x4f\xeb\xf5\x86\xee\x88\xa4\x66\x20\ -\xf1\x4c\xe4\x4e\xa7\x47\xff\x21\xc0\x51\xa9\x0b\xb7\x0c\x64\xe0\ -\xc6\x04\xbf\xa6\x94\x57\x15\x25\x36\x3a\x3e\xf6\xf6\xcf\x7e\xfe\ -\xef\xa7\xbf\xf6\x77\x9f\xfb\x11\x98\x61\x11\x81\xdf\xd4\x04\xa0\ -\x79\xf9\xe3\xc7\x8f\x6b\xff\xf0\xdf\xbe\xf7\xf6\x8e\xb6\x8e\x7b\ -\x12\xc9\x64\x8c\xc0\x8f\x45\x63\x76\x24\xaa\x39\x24\xfd\x0a\xa9\ -\x7d\x49\x86\xef\x65\x1d\x1f\x1f\x3a\xfe\xdd\x78\x22\x93\xee\xe8\ -\x5a\x76\x87\x24\x2b\x89\xc9\xb3\x27\x7e\x30\x35\x76\xf2\x87\x9e\ -\xeb\xd8\x04\x1a\xe2\xee\xb3\x07\x0f\x1e\x3c\xdb\xdf\xdf\x9f\xee\ -\xee\x5d\xb6\x45\x89\xc4\xaf\x97\x24\x39\xcb\x50\x24\x81\x15\x93\ -\x71\xf9\x69\x68\xeb\xfa\xbc\x4c\xe0\x7c\x89\x0f\x83\xef\x62\x92\ -\xa9\x36\x31\x55\x7a\x71\x7a\xd6\x6c\xb1\x2c\x5b\xa2\x7e\x91\xd0\ -\xf5\x33\x08\x50\xf8\x1e\x47\x5a\x70\x83\x1c\x84\x83\x6e\x2f\x08\ -\x3d\xe7\xd2\x0c\x5e\xb4\x5f\xe9\x5f\x37\x3e\x3e\xfe\xf1\xcf\x7e\ -\xfe\xef\x4e\xfd\xc5\x7f\xfa\xd8\xcb\x20\x01\xfd\xde\x6f\x4e\x02\ -\x90\x04\xc2\xee\x2b\x5f\xfa\xca\x37\x37\x21\xd4\xfb\x8f\xf0\xa0\ -\x5b\xc9\xe1\x0b\x24\x1f\x52\x4c\xe0\x3b\x90\x7c\x4f\x16\x29\x35\ -\x2f\x46\x97\xac\xd8\xfc\x29\x00\x9f\x23\xd0\xea\x95\x99\x07\x00\ -\x9d\x43\x55\x84\x24\x06\x79\x00\x45\x8b\xc6\x1a\x4e\xf4\xd6\xc1\ -\xd1\xd2\x65\xb0\xd4\x02\x3e\x5f\x41\xf4\x20\xa1\x8d\x16\x4a\xd2\ -\xa5\xd9\x84\xf0\xa0\x84\x22\x36\x0b\x01\xea\xf1\x48\x02\xc5\x46\ -\x81\xf3\x66\xa2\xea\x70\xe1\x1b\x00\xab\x6a\x9a\x26\xcf\xfb\x68\ -\xb1\xf4\xf1\x74\xbe\xfb\x3f\x42\xbd\xe7\xbd\x80\x38\x68\xf1\x31\ -\x3f\xcd\x0c\xe9\x67\xe7\x20\x77\xa1\x06\x7c\x16\x78\x2c\xc8\x26\ -\xe2\x89\xd4\xde\xd1\xbe\x02\xf3\x06\x7f\xf6\xfd\xff\xef\xb1\xcf\ -\xac\x5e\xbd\x7a\x82\xbe\xe2\x4d\x47\x00\x92\x9e\x17\x5f\x7c\x51\ -\xfa\xe9\xc3\xbf\x6e\x2d\xcd\x56\x3e\xde\xdf\xbf\x64\x25\x01\x1e\ -\x8d\x00\x7c\xee\xf1\x6b\x8e\xef\xf0\x79\x32\xa4\x5f\x94\xc8\xbe\ -\xca\xdd\x80\xb8\x29\x7d\xcc\x33\x2b\xc5\xb1\x83\xe4\x70\xe1\x9e\ -\x83\x11\x4b\xe6\x3a\x35\x2d\xde\xa5\xc5\xd3\xdb\x68\xec\x9c\xfd\ -\x76\x3c\x24\x69\x6c\xc0\x7b\xba\x3c\x33\xfc\x2d\xd7\x36\xea\xbf\ -\x85\x98\x41\x4b\x55\x00\x57\x58\x2c\xdd\xb6\x32\x9e\x6c\xf9\x08\ -\xba\xe4\x60\x12\x09\x4f\xf9\x7f\xf1\xbb\x81\x41\x2e\x59\x00\x0e\ -\xb5\xec\x13\x11\xff\x71\x9b\x0c\xe1\xf8\x33\xb0\xc8\xe7\x01\x93\ -\xdb\xdb\xda\xb6\xec\x7c\xe1\xe5\x3f\xd9\xb7\x7f\xff\x5f\x43\x0b\ -\xea\xe4\x0f\xbc\xa9\x08\xf0\xa3\x1f\xfd\x48\xc4\x02\x0b\x75\xe7\ -\xae\x57\xde\xd6\xdb\xd7\x7f\x25\x00\x07\xf8\x48\xf2\x70\x87\x0f\ -\xde\x3e\xee\x39\xf8\x04\xb0\x8c\xea\x4b\x37\xb5\x28\x68\x45\x35\ -\x96\xcc\xe6\x1b\xd5\xe2\x04\x11\x20\x9a\xc8\xb6\x67\xf2\xbd\x9f\ -\xc0\x18\x75\x2e\x88\x13\xbc\xd7\xa8\x57\xd7\x1e\xf4\x1c\xb3\x4e\ -\x7d\x41\x0d\x80\x0e\x5f\xa3\x86\xc9\x40\x85\x19\xd5\x99\x13\x30\ -\x25\x0f\x44\xa2\xe9\xdb\xe1\xdc\xb5\xcc\x8d\x10\x38\xba\x60\x09\ -\xcd\x21\x30\xb0\x31\xf8\x42\x8e\xbd\x0a\x13\x12\x10\x09\x9a\xc2\ -\xc1\x18\x01\xd7\x0e\x63\xc9\x0c\x4c\xcb\x8d\x5f\xfc\xf2\x7f\xfb\ -\xcd\x9f\xff\xa7\x8f\x3d\x1d\x32\x05\x0b\x9f\x00\x94\xec\xe9\xe8\ -\xe8\x90\xfe\xfe\xab\xdf\x59\x9d\x4e\x67\xdf\x9a\x88\x27\x12\x1a\ -\xa4\x5f\xe3\xa1\x1e\x08\xa0\x90\xb7\xef\x83\x4f\x61\x15\x97\x26\ -\x2e\xf9\x81\xcd\x26\x64\x1a\x8e\x65\x96\x9b\x1a\x40\x12\xd2\xf9\ -\x9e\x0f\x08\xa2\xa8\x02\x56\xa0\x11\x36\xf0\xbe\xb4\x7a\xee\xa4\ -\x51\x2f\xbd\x80\xf1\x2e\xf5\x86\x73\x00\x61\x92\xd0\x75\xd0\x1f\ -\x10\x81\x54\x7c\x22\xdb\x7d\x95\xa2\xc6\xae\x00\x94\x20\x90\xc8\ -\x9f\x12\x85\xc2\x64\x61\x4d\xf0\x99\x88\x2a\x34\x55\x07\xb5\xd4\ -\xe5\xba\xb8\x85\x8d\xe1\x24\x70\x5c\xde\x21\x20\xc9\xb5\x62\xf0\ -\xcc\xc0\xbb\x1f\x7b\xf2\x85\x7d\x88\x72\x0a\x44\xd1\x37\x05\x01\ -\xb0\x5e\x4f\x3c\x3b\x36\x11\x3d\x3b\x3e\xf5\x47\xcb\x57\xac\x5c\ -\x03\x0f\x9f\xa4\xbe\x09\xbe\xa6\x34\x25\x9f\xa4\x5e\x96\x49\xe2\ -\x3d\xdb\x36\x0f\x58\x46\xed\x70\x3c\xd5\xf2\x5e\xf2\xb0\x2d\xb3\ -\xf6\x4c\xb5\x3c\xb5\xd3\x75\x8c\x3a\x91\x22\x12\x4f\x65\xa1\xf2\ -\x5b\x01\x55\xc9\xb6\x1a\x2f\x62\xec\x09\xd7\xb1\xca\x10\x34\x13\ -\xe4\x50\x94\x48\xa2\xdf\xac\x97\x8e\x79\xae\xad\x93\x3a\x47\x09\ -\x6b\x06\xef\x75\xc2\x3f\x0f\x85\x83\x4f\x9f\xd1\x22\x89\x1b\x98\ -\x20\x66\x03\x6f\x8e\x37\x68\xfd\x0c\x74\x10\x51\x34\x8d\x82\xd0\ -\xfc\x1c\xc8\xeb\xc9\xcc\xef\x23\x4d\xc0\x09\xe0\xb0\x80\x08\xc0\ -\x5b\x6a\x6b\xeb\xd8\xfc\xcc\x6f\x76\xdf\xb1\xe3\xda\x4b\xbf\x0f\ -\xc1\x30\x51\x17\x36\x01\x48\xfa\xb1\x98\x43\xfe\xe2\x97\xff\xe9\ -\xb2\xd6\xd6\xb6\xab\x01\xba\x04\xf6\x3b\x92\xe0\x8d\x01\xb4\xc9\ -\x72\xa9\x72\x58\xf4\xac\xc1\xce\xbe\xe5\xf7\xd8\xa6\x3e\xa9\x45\ -\x62\x9b\x1b\xd5\xc2\x73\x86\x5e\x9d\x4a\x66\xda\x48\x7b\x4e\x1b\ -\x8d\xd9\x7d\xb6\x51\x2b\x48\xbe\xe3\xe7\xb9\x56\x15\x64\x78\xa1\ -\x5a\x18\xf9\x39\x9e\x5b\x61\x15\x0f\xa1\x63\x66\xcd\x28\x06\xd2\ -\x3d\xbf\x0d\x8a\xa2\x25\xda\x95\x68\xe6\x1a\xf4\xc6\xaa\x85\xc1\ -\xef\x06\xcf\xa1\xf6\xc5\x58\xa6\xfb\x8f\x10\xdb\x67\xe7\x27\x8f\ -\x9b\x8a\xe8\x9c\x1a\xf1\x50\xd0\xf2\x31\xdc\x54\x11\x3f\x70\xc1\ -\x88\xcc\x94\x3e\x88\xb0\x88\x6b\x3b\x0e\x23\x7f\x13\x17\x7c\x32\ -\x29\x93\xc9\x74\x4f\x4f\x4f\xbe\xe5\xa1\xc7\x9e\x7b\xf2\xd6\xeb\ -\xaf\x1c\x23\x2d\xb0\xa0\x09\x80\x45\x9b\x48\x8f\x96\x23\xe5\x6a\ -\x75\x47\x57\x4f\xff\x52\x8a\xef\xc9\x39\x3b\xfd\xea\xa9\x1f\x45\ -\x35\xb9\x1c\x89\xa8\xc6\x3b\xde\x76\xf7\xf2\x4c\x36\xbb\xfb\xf1\ -\xc7\x1e\xdd\x0b\xcf\x7b\x67\xbd\x52\x38\xdb\xd2\xb1\xec\x2a\xc7\ -\x36\xf6\x17\x27\x06\xbe\x0f\x14\xec\x00\x7c\x4a\xbc\x30\xd7\xd1\ -\xab\x85\xe1\x07\xd1\xef\xe2\x9e\xfa\xc2\xe0\x06\xf7\x5e\x38\x7c\ -\x0b\x17\x2d\x96\x5b\xab\x44\xd2\x1f\x04\x8c\x2a\xbe\x6c\x9a\xcc\ -\x4f\xa0\x0d\xd4\x78\x7e\xbd\x24\x6b\x57\xcc\x53\x17\x61\x2b\xe3\ -\x13\x0d\xe0\x07\x8c\x10\x7c\x73\x00\x73\x4f\xbf\x1e\xf5\xb4\xb5\ -\xe4\xe4\xde\xae\xf6\xc4\x8b\x2f\x1f\xa8\x12\x01\x6c\x1b\x44\xf0\ -\x68\x5a\xd9\x15\x3b\x3a\x3a\x57\x1d\x38\x74\xfc\xba\xf7\xbf\xeb\ -\xae\x9f\x5c\x68\x2d\x20\x5f\x68\xe9\x87\xe3\x27\x7d\xf9\xbe\x6f\ -\xae\x6b\x6b\x69\xbf\x5c\x53\x15\x41\x51\x15\x7b\x76\x66\xf2\x65\ -\xca\xd8\xe1\xde\xbe\x62\xeb\x96\x3c\x96\x71\x2f\x21\x60\xef\xb9\ -\xe7\x9e\x2b\x31\x37\xb0\x0b\xd7\x00\x29\x79\xa5\xe7\xd8\x67\x01\ -\x81\x15\x00\x1c\x22\x01\x37\xd5\x94\x79\x0b\x83\x1f\x5c\xcf\xb3\ -\xf1\xe1\x3e\x4f\x52\x22\x29\x35\x96\xfd\xa0\xef\xdd\xbb\xa0\x54\ -\x36\x9e\xed\xff\x88\x63\xd5\x5e\x32\xeb\xc5\x63\x5a\x24\x75\x27\ -\xd0\x74\x9b\x7a\x3f\x4c\x1c\xae\xd6\x03\xd0\x29\x02\x98\xb3\x09\ -\xc1\x30\x91\xf1\xbe\xd6\x5c\x2e\xb2\x7c\x49\x57\x1c\x63\xc5\x0d\ -\x97\xac\x8c\xec\xde\x7b\xa8\xee\xd8\x8e\xe4\xb8\x0e\xb8\xeb\x4a\ -\xd0\x02\x7d\x13\x13\xe3\x57\x3f\xf4\xc8\x33\x4f\xde\x7d\xfb\x8e\ -\x69\xd2\x02\x0b\x55\x03\x88\x58\xd9\xa3\x4e\xcd\xcc\x5c\xbe\xf6\ -\x92\x0d\xcb\x15\x9a\xd1\x93\xe5\x7a\xb5\x52\x38\x15\xd1\x64\xab\ -\xbd\xbd\x4d\xda\x7e\xed\xb5\x9b\x55\x55\x51\x38\xe8\x5a\xb6\xed\ -\xad\x6f\x7d\xeb\x36\x90\x60\x27\x14\xea\xac\xeb\x39\xe3\x00\x3d\ -\x0c\x6c\x70\x3d\x1f\x78\x7e\x8f\x12\xee\x0b\x93\x60\x4e\xfa\xe3\ -\x2d\xb7\x11\x78\xa4\x55\x5c\xdb\x7c\x4e\x94\xb5\xed\x9e\x24\xae\ -\x92\xe4\xcc\x32\x45\x8b\x1f\x82\x21\x4f\xe1\xa1\xc3\x23\x8a\x73\ -\x8e\x61\x10\x26\xfa\xfa\x1e\x2d\xa7\x07\xda\x60\x0a\x11\x0d\xbf\ -\xcc\x65\xb2\xea\xd2\xfe\xae\x18\x42\x59\x6e\xad\x7a\x7b\x3a\xb4\ -\xe9\x62\xc9\x3c\x79\xea\x8c\x69\x23\x28\x00\x11\x60\x1e\xc8\x17\ -\x68\x5b\xfe\xe2\x9e\x7d\x97\x6d\xbb\x6a\xe3\x93\x0b\x96\x00\x58\ -\x2b\x27\x3c\xf0\xe3\x5f\xb4\x26\x13\xa9\x8d\x08\xfb\x08\x67\xab\ -\x5e\x2b\xef\x92\x24\x41\x57\x15\xd9\xba\xed\x96\x9b\x36\x22\x0d\ -\x98\x20\x00\x7d\x80\x3d\x4c\x05\xb7\x2d\x5d\xba\x34\x77\xe2\xd4\ -\xe9\x1f\xcb\x92\x22\xf9\x2a\xde\x0b\x81\xcf\xef\xfd\xcd\x1e\x61\ -\x22\x84\xb5\xc3\x7c\xf0\x81\xab\x1a\xd5\xe2\xf9\x5b\x44\x59\xdd\ -\x4c\x12\x07\x14\x46\xf9\xe7\x11\xbb\xfb\x4b\x41\xf0\x83\x94\x8d\ -\x1c\xfc\xb0\x83\x28\x08\xbe\xf4\x87\xbc\x41\x8e\x7b\xa8\xf5\x09\ -\x90\x4d\xa7\x23\xfd\xbd\x9d\x09\x90\x9c\x49\x32\x88\x0b\xce\x12\ -\x2f\x2e\xdd\xb0\x3a\x31\x3d\x5d\x2c\xd8\x54\x14\x99\x51\x74\x98\ -\x4e\x67\x3a\xc7\xc7\x46\xd7\xc3\xe7\x78\x16\x0b\x5f\xed\x0b\xb5\ -\xef\x40\xbe\x90\xea\x7f\x78\x78\x58\x3e\x72\xec\xd5\x75\xad\x6d\ -\x1d\x9d\xb0\xb3\xb6\xac\xc8\x4e\x75\xa2\x78\x02\x5e\xbf\xd9\xdb\ -\xd3\x13\x59\xb2\xa4\x7f\x05\xfa\x45\x94\xc0\x53\xf7\xce\x9e\x3d\ -\x7b\xe8\xf0\xe1\xc3\x63\xe8\x23\xa7\x9e\xf9\x5e\xfc\x7c\xc9\x9f\ -\x2f\xf5\xfc\x3e\x4c\x84\xf9\xd7\x5a\xb2\xf5\x46\x44\x8d\x5b\xd0\ -\x65\x53\xbf\x65\x94\x7e\xa0\xc4\xb2\x1f\xc2\x08\x3b\x04\x2d\x0b\ -\x9a\x26\xf6\x74\x13\x06\x9e\x9b\x01\x5e\xcf\x99\x7f\xbf\x8f\xc0\ -\x6e\x6f\xcb\x6b\x32\x80\x47\x15\x88\x00\x12\x3a\x69\x88\x04\xc6\ -\x6f\xde\xb0\x3a\xfe\xcc\xf3\xbb\x67\x6d\xc5\xa6\x2c\xa4\x14\x8f\ -\x46\x53\xc8\x80\xf6\x7c\xf7\xc7\x0f\x77\x6f\xdd\xb8\x7c\x80\x88\ -\xb7\xa0\x08\x40\xa1\x1f\xec\xbf\x82\x5d\x3a\xab\x97\xaf\x48\x77\ -\xc0\x33\xa6\x14\xaf\x0d\x27\x5b\x97\x5c\xc9\xbe\xe9\xa6\xeb\x37\ -\xaa\xaa\x1a\x09\x80\x45\x65\x86\x61\x14\x9f\x7c\xf2\xc9\xbd\x01\ -\xb8\x00\x9f\xf7\x87\x1d\xbd\x30\xd8\xf3\x6d\x7e\xf8\xbb\xa0\xea\ -\x2f\x77\xac\xfa\x19\x44\x82\xd3\xfc\x99\x24\xa7\xa0\x32\x1c\x16\ -\x14\xcf\x2a\x78\x76\xed\x41\x51\x49\xdc\x0d\x14\xd3\xc0\x2f\x1c\ -\x1a\xfa\x77\x1c\xc0\x39\x35\xcf\xd0\x72\x55\xdf\x04\x96\xc7\xfc\ -\x21\x13\x30\x7c\x76\xa2\xb8\x6e\xcd\xb2\x36\x80\x2f\x81\xd8\x20\ -\x40\x10\x99\xb8\xac\xaf\xb7\x33\x9a\xcb\xa5\x67\x2d\x1b\xc5\x71\ -\x78\x96\x10\x66\xa0\x7b\x78\x64\x74\xed\x1f\xdd\x7d\xc3\x19\x0a\ -\x77\x30\x76\xe1\x10\x00\xa1\x9e\xf0\xe8\x93\x3b\xf3\x89\x44\xbc\ -\x47\xd5\xd4\xa8\x42\x1a\x40\x12\x0d\xd8\xdd\xd9\x8e\xf6\x56\x65\ -\xd9\xd2\xa5\x6b\xe5\xa6\xf8\x0b\xc1\x86\x0d\xac\xac\xdd\xe5\xa0\ -\xcc\x07\x1f\xed\xbf\x48\x04\x2a\xc1\x33\x2a\x92\xac\x46\x30\x29\ -\x74\x3b\x9a\xe3\x46\x65\xfc\x87\x1c\x4a\xcf\x3a\x21\xb8\xce\x90\ -\x28\x69\xeb\x81\x4a\x06\x43\x2d\x10\x64\x00\x1e\xff\x6e\x51\x8a\ -\x5c\xef\xcb\x79\x10\xe3\xd1\x75\x88\x10\xc1\x85\xdf\x2f\xf8\x0b\ -\x44\x38\xf2\xbe\x56\x40\x9f\x69\x9a\xce\xc8\xe8\x64\x61\xd5\x8a\ -\xbe\x76\x28\x36\x26\x8b\x12\xcf\x4a\xb9\x6e\x53\x53\x6d\x58\xb7\ -\x2a\x51\x28\xee\x46\xee\x42\x62\xf8\x2b\x3d\x4c\x84\xb5\x9e\x1d\ -\x19\xe9\xc3\xfe\x45\x19\x99\x52\x9b\x78\xb4\x20\x08\x40\x52\xf1\ -\xdc\x73\xcf\x89\x47\x8f\xbf\xda\x0f\x1b\x1f\x97\x24\xd1\x06\x4e\ -\xe5\xe2\xcc\xe4\x73\x78\x6a\x5c\x79\xc5\xe5\x7d\x70\x08\x62\x3e\ -\x68\x02\x0a\x43\x9a\x74\x14\x39\xf2\x33\x00\x3e\xf0\xf6\x83\xd6\ -\x9b\x1f\x05\x50\x0d\xf7\x07\xb5\x19\x3d\x64\x2f\x81\x63\xd7\x2f\ -\x0a\xa2\xe3\x32\x67\x36\x20\x89\xdd\x28\xbd\xa8\xc6\x72\x9b\x98\ -\x6b\xed\xc3\xf3\x6d\x8a\x96\xec\x12\xd5\xf8\x36\xc4\xfb\x2b\x80\ -\xa3\xe3\x03\x4f\x58\x06\x56\x1e\xa5\xd9\xf2\x07\x84\x34\xc7\x3a\ -\x94\x13\xe4\x9f\xa1\x7b\x7a\xe0\x72\xfa\xc0\xd6\x97\x7b\xbb\xdb\ -\x53\xd9\x4c\x32\x29\x89\x92\x40\xc5\x6b\x72\xd9\x5d\xda\xd7\x15\ -\xdb\x9f\x4e\x16\x2d\xcb\xb2\x65\xc7\xf1\x30\x0b\x9a\x84\xe0\x67\ -\x1e\xff\xf5\x0b\xa9\xcd\xeb\x97\x1b\x0b\x86\x00\x60\xb3\x40\xac\ -\xae\x54\x6b\x7d\xc0\x77\x1a\x60\x98\xc5\xc2\xd4\x8b\xb3\xa5\xe9\ -\x63\x89\x98\xe6\x2e\x5f\xbe\xac\x0f\x60\x2a\x04\x7e\xa0\x01\x30\ -\x5b\x76\x10\xd7\xe7\xb3\xf5\x01\xf8\xe7\x05\x9c\xc6\x06\xf7\x92\ -\xac\xa8\x88\xf2\xee\x62\x9e\x33\x09\x4c\xf7\xc9\xaa\xba\xd9\x31\ -\x94\x27\x3d\xd7\xb1\x68\x9c\xa2\x46\xaf\xb2\x2d\xfd\x79\xc7\x98\ -\xbd\x1f\x90\xd1\xba\x3e\x99\xa6\x72\xe7\x56\x88\xcf\x25\x7b\x38\ -\xb2\x24\xe3\x81\xf2\xf7\x25\x9d\x8a\xaf\x74\x82\x3e\xff\x33\x22\ -\x5d\xf3\x7a\x7a\x70\x64\xa2\x25\xb7\x2e\x29\xc9\x7c\xbd\x40\x10\ -\x49\x08\x88\x82\x84\x4b\x56\x2f\x8f\xff\xa6\x34\x5b\xb2\x24\xd1\ -\xc3\xbd\x1c\x8b\xc7\x23\x47\x8e\x9d\xec\xb9\x7c\xf3\xea\x19\x0c\ -\x72\x17\x8a\x09\x20\x50\x25\x5d\x37\xfa\xe0\xfc\xdb\x46\xa3\x76\ -\x66\x7a\x72\xfc\x54\x2c\xaa\xba\x30\x8f\x4e\x7b\x5b\xeb\x32\x11\ -\x66\x52\x6a\x8a\x3f\xe9\x47\x17\xd2\x7f\xd4\x0f\xf9\xc2\xd5\xf3\ -\xc1\x7f\x3d\xfb\x1f\xae\x40\xc9\x35\x1c\xb3\xf2\x43\x7c\x77\x4c\ -\x56\xe3\xb7\x01\x2a\x4b\x96\xb5\x38\x22\x80\x9c\xa4\xc6\xae\xc5\ -\x8f\x4a\xa9\x5a\xfc\x0e\xc6\xe2\x21\xba\x86\xbc\xfe\x60\x5a\xc0\ -\xe3\x90\x07\x1d\xb8\xe2\xc2\x1f\x76\x02\x7d\xff\x80\xf7\xf1\xd5\ -\xc2\x9c\x30\xbe\xee\xc0\x26\xd3\x6a\xa9\x5c\x2d\xb7\xb7\xe6\xf2\ -\xfe\xdf\x47\xc5\x75\x24\x97\x61\xe9\x78\x0c\x64\x9e\x81\x9b\x20\ -\x38\xa2\xc3\xd2\x28\xe5\x52\xa9\x0d\xfb\x0d\x05\x3f\xcf\x70\xf1\ -\x13\xe0\xea\xab\xaf\x66\x3f\x7e\xf0\x17\x51\xc7\x75\xd3\x60\x82\ -\x3e\x3c\x32\xf4\x8a\x42\x7f\x2f\xc0\x5f\xb3\x76\x75\x5a\xd3\x22\ -\x69\x20\x0f\xfc\xb9\x8e\xa4\xc5\x94\x23\x95\x4a\xc5\x08\x01\x3f\ -\x5f\xc5\x87\x09\xf1\xba\x0e\x21\x15\xc7\xac\x0e\x88\x5a\xa2\x03\ -\x11\xc4\x6f\x30\xc0\x95\xd4\x48\x5e\x51\xe3\x37\x79\x40\x9d\x54\ -\xfd\xfc\xe5\xa1\xde\x3c\xd6\x72\x6c\x03\x38\xc3\x64\xf0\xf5\x3f\ -\xf3\xfc\x27\xbe\x13\x40\xa6\x41\xe4\xd2\xef\xfa\x3e\x42\x73\xfb\ -\xd1\xe8\xd8\xe4\x64\x57\x47\x4b\x8b\x88\xc2\x39\xc3\xe7\x8a\x44\ -\x96\x8c\xc7\xe4\x5c\x36\x2d\x8c\x9b\xa6\x4d\x53\xde\x08\x8f\x95\ -\xa2\xeb\xa6\xe1\x3f\x88\x0b\x26\x0a\xc0\x0a\x1d\x71\xf7\xde\xc3\ -\xad\x80\x85\xb2\x21\xe4\x1c\xd5\xb5\x78\xc4\xa1\xa8\xa8\xb3\xbd\ -\x3d\xd1\x04\x8f\xdb\x7e\x91\x6a\xb5\x5a\x1d\x0e\x03\x1c\x06\x14\ -\xa6\x21\xbe\x64\xc9\x92\x2a\xdd\xcf\x07\xfc\x3c\x91\x00\x27\x8d\ -\xac\x68\x39\xcf\xb3\x07\x25\x49\xed\x90\xd4\xe4\x1d\x84\xc9\x79\ -\xc3\x2c\x61\xbe\xef\x12\x48\x79\x78\x4c\x68\x26\x88\x79\xa1\x1c\ -\x00\x47\x95\xc1\x9e\x8b\xf0\x5b\x05\x5a\xc5\xe4\x4f\x03\xf2\x67\ -\x93\x88\xfb\x81\xb1\x11\x8f\x45\xe2\xe8\x21\x47\xd0\x03\x01\x04\ -\x08\x01\xeb\xe9\x6a\x57\xe1\x2b\xd4\xa0\xb0\x6a\x53\x53\x93\x43\ -\x88\x0a\xd2\x08\x09\xa5\x2f\x7c\xe1\x0b\x9c\x5b\x17\x3d\x01\x90\ -\xea\x64\x93\x53\x85\xb6\x80\x70\x40\x99\x35\xd7\xf3\x49\x4e\x3a\ -\x9d\x8a\x32\xc6\xc5\xc5\xf1\x6d\xaa\x57\xab\xd5\xa6\xa9\x0d\xab\ -\xf3\x40\xf5\x23\x2f\x90\x83\x76\xe8\xdf\xb8\x71\xe3\x11\xdc\xbb\ -\x61\xe0\xc3\x44\x09\x47\x0a\xae\x63\x0c\xc3\x19\xbc\x1b\xf7\x39\ -\x3c\x71\x79\xca\xd7\x57\xf1\x61\xcc\x7d\xbc\x03\xdb\x1e\xdc\x94\ -\xca\xb3\x45\x0f\xeb\x14\x87\xd1\x91\x86\x9b\xd0\xdf\x84\x9e\x48\ -\xe6\x53\x82\x0a\x3a\x74\x5d\x57\x0e\xec\xdb\xd3\xba\xf5\xca\x6b\ -\xc7\x38\xf8\x8c\x01\x64\x81\x93\x80\x06\x60\x0e\xa4\x90\x4c\xc6\ -\x93\xb8\x11\xf0\x8b\xfb\xf3\x16\x82\xd7\xd1\xde\x62\xe9\x7a\x7d\ -\xd0\xb6\x4d\x19\xd4\xa5\x35\x03\xd1\x97\x5f\x39\xac\xde\x75\xd7\ -\x5d\x0d\xca\x9f\x5c\xd4\x04\x20\x50\x7f\xfe\xf3\x9f\x8b\x0d\x43\ -\xcf\x32\xe0\xe1\xef\xd2\x75\x41\x02\x92\x00\x0f\x3b\x7b\xa3\x24\ -\x8d\x1e\x8a\x8b\x02\x90\x6c\x10\xa0\x14\x52\xfd\x41\xf2\x87\x5f\ -\x2f\x5f\xbe\x7c\xe6\xf0\xe1\x23\x1b\x77\xef\xde\xb3\x6a\xd9\xb2\ -\xa5\x4f\x75\x75\x75\x15\xc3\xda\x22\x5c\xa9\xec\xdc\xb9\xb3\xb7\ -\xb3\xb3\x53\x5f\xbf\xf9\x1a\x70\x4e\x0a\x54\x3e\x6f\x5e\x4f\x03\ -\x78\x3e\xb2\x8e\x6d\x57\x1e\x7e\xe8\x07\x83\x06\x90\xdd\xbc\x79\ -\xf3\x91\x96\x96\x36\x03\x53\xd2\x5b\x10\x56\x6e\xc2\x58\x98\x2a\ -\x43\xae\x56\xca\x5a\xad\x56\xd6\x66\x67\x4b\xd1\x52\xb1\x10\x4f\ -\x65\x72\x25\xc8\xb5\x4d\x14\x11\x19\x07\x9e\x93\xd0\x03\x09\x0a\ -\xc5\xd9\xc2\x92\xfe\xae\xa5\xdc\x6c\x88\x02\x15\x4e\x80\x96\x7c\ -\x36\x32\x36\x3a\xf2\xb2\xaa\x46\x7b\xe9\x9e\xf2\x05\x27\x07\x06\ -\x63\x9b\x37\xae\x29\x2f\x08\x0d\x90\xcd\x66\x69\xd2\x83\x80\x16\ -\x7c\x75\x4f\x6a\xc0\x23\x12\x68\xb0\x79\xc0\xdd\xf2\x53\xb9\x62\ -\x60\x7a\xc3\x76\x9f\x4a\x90\x07\x80\x73\x54\x1d\x1a\x1a\x7a\xb9\ -\xa5\x25\x2f\x21\x4f\x70\xed\x89\x13\x27\x0c\xf8\x4d\x67\x93\xc9\ -\x64\x19\x63\x5d\xf8\x0f\x71\xd4\xa4\x20\xca\x7d\x91\x68\xfc\x2a\ -\xcc\xe3\x17\x0f\x1e\x3c\x34\x54\x98\xad\x6d\x48\x26\x53\x56\x26\ -\x9b\xab\x45\x63\x31\x4b\x53\x23\xb4\xbd\xcc\x86\x7e\xd8\x15\x8d\ -\x27\x7b\x68\xc2\x8e\x52\x0e\x86\xde\x90\x6b\xb5\xaa\x5a\x2c\xcc\ -\xc4\x86\x07\x07\x62\xc5\x42\x61\x02\x09\x9a\xca\xde\xbd\x7b\xaf\ -\xb3\x6d\x3b\x46\xb6\x3b\xd7\xd2\x9e\xc3\x34\x75\x2b\x42\x57\x27\ -\x1a\x8d\x9b\xf0\xdc\xf5\x96\xb6\xf6\x52\x2c\x91\x2c\x2e\x5d\xb6\ -\xa2\xca\xbc\x20\x88\x64\x5c\xfa\x7d\xd2\x0b\x53\x33\x85\x69\xc2\ -\x3d\x98\x3e\x0e\xaa\x22\xcb\x6e\x22\x16\xb5\x87\x47\xc7\xce\x80\ -\x2c\x2a\xff\x3b\x74\x43\xc6\xea\xe6\x85\xe1\x03\x00\x10\xc1\x01\ -\x01\x7c\xad\xe9\x01\x7f\x17\x68\xf3\xd9\x3b\xdb\xb2\x0c\x48\x09\ -\x55\x91\x14\x00\x15\x80\x2d\x12\xf8\xaf\xe3\xe8\x79\x20\xc1\x2c\ -\x81\x75\xf3\xcd\x37\xff\x02\x64\x68\x99\x99\x99\xe9\x40\xed\xc2\ -\xe7\x25\xac\x2b\xac\x82\x0c\x85\x15\xab\x37\xe4\x3a\x3b\xfb\x4e\ -\x21\xf4\x72\x07\x06\x5e\x4d\xf7\xf7\x2f\x3d\x51\x2a\x15\x22\x07\ -\x5f\xd9\xf5\x2c\x9c\xd1\x9c\x61\x18\x4a\x32\x95\x5d\x0f\xd0\x6f\ -\x9b\x9c\x18\x3d\x99\x6f\x69\x07\xa0\x5a\x1c\xd5\x8a\x44\xa3\x26\ -\x72\xf3\xf5\xee\x9e\xfe\xe3\x97\x6e\xde\xf0\x44\x4b\x7b\xef\x72\ -\x18\xeb\x59\xc0\x56\x01\x79\x33\x68\x27\x01\xc0\x24\x91\xe1\x9c\ -\x63\x88\x3a\x30\x70\x32\x21\x71\xe9\xe7\x0e\x20\xb7\x35\xd0\x06\ -\xfc\x21\x5d\x1b\xba\x49\x69\x3f\x13\x00\xcb\x4d\x0b\x24\xf0\x0a\ -\x52\x98\xd9\x5c\x46\xc1\x22\x19\x93\xbc\x03\xfc\x2c\xf2\x93\x94\ -\x89\x89\x89\x85\x41\x00\x80\x47\xfb\xe8\x22\xdc\x5f\xe6\x0b\x66\ -\x50\x9b\xbe\x80\x0b\x75\x5f\x09\x34\x80\x0f\xb0\x00\x10\x63\x04\ -\x74\x28\xaf\x1f\x9e\xe5\x23\x33\x50\x7d\xfe\xf9\xe7\x3b\xd7\xae\ -\x5d\x3b\x8b\xa9\xe3\x49\x48\x0a\x01\x32\x97\x28\xa2\xf5\xe2\x99\ -\xf6\x6d\xa0\x0b\x7d\x2f\xc6\xaf\xd0\x0f\x1f\xda\x3f\xb3\x72\xc5\ -\xd2\xa7\xae\xbe\xfa\x2a\x32\x2f\x82\x16\xcf\xdd\x6c\xd4\x4b\x5f\ -\x51\xa3\xe9\x2b\x40\xaf\x94\x65\x54\x7e\xa6\x44\x92\xd7\x02\xb0\ -\x2e\x92\x50\xd3\xd0\x2b\x27\xea\xd5\x62\x47\xf7\xb2\xcb\x45\x49\ -\x59\x07\xb0\x43\xe9\x01\xf2\x57\x48\xc2\xe7\x1c\xc0\x33\xa7\x07\ -\xe2\xfd\x4b\x97\x42\x0b\x31\xce\x0b\xd7\x8f\x0a\x9a\x63\xc0\x65\ -\xde\x0a\x9e\x61\x98\xb5\x48\x44\x23\x3f\x80\x3c\x03\x97\x61\x28\ -\x65\xbd\xb3\xd9\x8c\x0a\xae\x18\xfe\x52\x42\x72\x26\x15\x1c\x86\ -\x21\x2c\xa0\xd9\x40\x9e\x60\xe1\x59\x12\x9f\xf5\xa4\x05\x18\x08\ -\x50\x07\x01\x0c\xc2\x37\xb0\xdd\xf0\x80\x13\x61\x1f\x20\x00\x3e\ -\xec\x14\xb6\xb4\xb4\xd4\x11\x11\xc4\xb0\xfe\xbf\x1e\x4e\xfe\xf0\ -\xca\x3c\x00\xef\x8e\x0a\x82\xdc\xe9\x87\x70\x4e\xbd\x5a\x3a\x30\ -\x3d\x39\x56\xcb\xe7\xf3\x04\x0e\xed\xde\xd1\x60\x98\x11\x8f\x14\ -\x9f\x07\x09\x56\xa8\xd1\xe4\x16\x4b\xaf\xee\x54\xa3\xa9\x5b\x00\ -\x55\xf5\x57\x8f\xfe\x74\xdf\x9d\xf7\xbc\x87\x56\x08\x25\x71\x6f\ -\x01\x96\xb9\x7c\xb0\x9f\x06\x68\x56\xee\x28\xf2\x55\x3e\xb2\x22\ -\x5b\x9c\x10\x2e\x0d\x06\xb6\x84\x3f\x01\xef\x0a\x0e\xf0\x26\xa2\ -\xdb\x86\x65\xd5\x54\xd8\x1f\x97\xc7\x89\xa8\x1e\x0d\x64\x36\xb6\ -\xc1\x69\x20\x6f\x99\x08\xc0\x7d\x24\x49\x74\x61\xda\x16\x86\x06\ -\x00\xa0\xb4\x83\xa7\xe6\xba\x8c\x05\x24\xa0\x4a\x3e\xc0\xec\x6c\ -\xb9\x06\x95\x6c\xfa\xd2\x4e\x85\x41\x03\x64\xe7\x67\xf5\xe6\x83\ -\x8c\xad\xd6\xc5\x67\x9f\x7d\xb6\x1b\x21\x61\x8d\xa1\xcc\x4f\x07\ -\x37\xca\xd3\x4f\x44\x12\xd9\x55\x70\xfc\x92\xb6\xa5\x9f\xda\xb4\ -\x71\xfd\x2c\xf6\x20\x74\x5f\x7f\xfd\xf5\x43\x18\x4e\xa9\xe0\x47\ -\xc9\xaf\x90\x95\x68\x2b\xa9\x64\xc7\xd6\x0f\x30\xcf\x9e\x85\x70\ -\x9f\xc6\x5e\xff\x7e\x38\x97\x55\xc0\x75\x40\x56\x22\x57\x31\xc6\ -\x51\xa1\xb0\xce\x46\x55\x39\x17\x48\xbc\xfd\x32\x38\x74\x26\xde\ -\xdf\xd7\x5f\x11\x39\xc9\xbd\x26\x27\xfc\x35\xe1\xfe\xa0\xfa\xe4\ -\xf8\xe0\x2f\xa1\xd6\x6d\x45\xbe\xea\x32\xf4\xc9\x20\x8d\xe6\x07\ -\x0a\x2e\xb5\xf1\x78\x4c\x25\x93\x28\xf8\x07\x91\xc4\xa2\x11\x03\ -\x64\xbd\xf8\x53\xc1\x88\x65\x19\xb6\x6b\x31\xd8\xe2\x86\x69\x36\ -\xa1\x0f\x1c\x6e\xba\x3c\x7d\xfa\x74\x81\xf2\x02\xaa\xa2\xc8\xa1\ -\x98\x5f\x02\xb0\x39\xd8\xf7\x99\xf0\x34\xee\xfc\x8a\xf4\xb2\x01\ -\xdb\xaf\xc2\x49\x33\xc3\x51\x80\xac\x46\xb0\xb7\x2c\xb9\x46\x96\ -\xd5\x65\x08\x2d\x66\x65\x39\x79\x95\x18\x4b\x67\x2e\xbf\x72\x7b\ -\xc4\xf2\x14\x33\x93\xc9\x12\x69\x5c\xb3\x51\x7e\xdc\xf3\x1c\x68\ -\x10\xc5\x76\xac\xe6\x2c\xa1\x63\x19\xa7\x86\x07\x4f\x27\x40\xb0\ -\x8a\x6d\x54\x2b\xc0\xa7\x02\x02\xc8\x96\xd1\x98\x86\x65\x49\x43\ -\x53\xdc\x24\x84\x32\x7f\x54\x0d\xd3\x64\xd8\xc5\x5a\xb7\x4d\xe3\ -\x0c\x5f\x3b\x28\x8a\x50\x33\x6e\xc3\x31\x8c\x31\xdb\xb1\xeb\xe5\ -\xd2\xcc\x00\x22\x0a\x13\xa0\x13\xe9\x75\x8a\x74\x41\xd2\x06\x14\ -\x51\xd4\x0f\x7e\x54\x3e\x25\xc8\xe6\x52\x0c\xd0\x08\x44\x80\x8b\ -\x5f\x03\x20\x8e\xa5\x0d\x20\x9e\x2a\xcb\x35\xdd\xf3\x33\x6a\x22\ -\x0b\x52\xa7\x82\x6d\x5b\xee\xec\xec\xec\x68\x2e\x9b\x6d\x0f\xec\ -\x3d\xa2\xae\x12\x01\x14\x96\xea\xf3\x69\x82\x2b\xae\xb8\x62\x1a\ -\x52\xdd\x89\x85\x26\xa3\xfe\x67\x85\x78\x2a\xbf\x1a\x39\xfe\xf5\ -\x18\xc1\x7f\x0a\x54\x29\xf4\x28\x1f\xef\x74\x75\xf5\xd6\x8e\x1d\ -\x3b\x92\xc2\x06\x24\xab\xf9\x4c\xd2\x6c\x53\x2f\x5a\xae\x73\x32\ -\xf0\x39\x76\x3e\xff\xb4\xb8\x6a\xd5\xaa\xe7\xfd\x7b\xc1\xb1\x1a\ -\xe3\x00\x88\x87\x73\x92\x12\xef\x01\x80\x36\x98\x76\x6e\x4a\xe8\ -\xec\xf0\x50\xac\xbb\xbb\xa7\x02\xdf\xc1\xad\x55\x8a\xfb\xf1\xf7\ -\xd8\x88\x10\xf2\xf0\xfe\x45\x24\x80\xa7\xe1\xf5\x11\xc0\x9c\xc3\ -\x01\xb9\x7d\x93\x67\x83\x42\x36\xc0\x56\x1c\xc7\x4b\xeb\xa6\xa5\ -\x84\x37\xa5\xb7\xb6\xe4\xad\x87\x1e\x7a\x68\x61\x98\x00\x48\x38\ -\x42\x1d\xa5\x41\x80\xbb\xcd\xc9\x73\xd1\xc5\x75\xb0\xa2\x16\xbb\ -\x66\xc7\xd3\xa9\x54\x1a\x5b\xb1\xc6\x07\x07\x07\x4f\xa3\xce\x90\ -\x44\x07\x39\xff\xa0\x04\xe0\x87\x2a\x4d\xa0\xb8\x20\x8c\x94\x4a\ -\x67\x34\x15\x31\x9f\xa2\x46\xd6\x35\x1d\x29\x7f\xa3\x05\x6a\x90\ -\xc1\xa7\xeb\xb6\xf6\xb6\xea\xf8\xf8\x59\xb9\xb3\xb3\x4b\x57\xb5\ -\xd8\x72\x74\x1d\x73\x2c\xb3\x0a\x5c\x28\x5a\x11\xe1\x7e\xe4\x3b\ -\xbb\xfb\x15\xd7\xb1\xea\x10\x4e\x93\x01\x77\x41\x52\x92\x00\x4f\ -\x93\x94\xc8\x72\x0e\x5c\x00\x13\x6a\xb5\x5a\x11\xb1\x95\x5d\x27\ -\x82\xa4\x72\x6d\x5b\x4b\xd3\x63\xbb\xf4\x46\xad\x90\x6d\xed\xbe\ -\x31\x9e\xce\xc6\x2c\xc3\x18\x9d\x18\x3d\xb3\x9b\x08\x45\xc7\xdb\ -\x80\x00\x71\x8c\x35\xf1\xdd\x16\xc0\x26\xff\x27\x07\x0b\x50\x98\ -\xc5\xf6\xa8\xc0\xbb\xa0\xd2\xd5\xde\x6a\x7d\xf8\x43\xff\xc1\xfb\ -\xf4\xa7\x3f\x7d\xf1\x13\x00\x99\x3b\xe4\x02\xd2\xd3\x13\xd3\x33\ -\xb4\x39\x02\x12\x00\xf0\x51\x49\x82\x48\x29\x1e\x39\x7a\xec\xec\ -\xd0\xe0\x99\x11\x68\x82\x86\x2c\xcb\xe7\x99\xd7\x7f\x7d\x7f\x00\ -\xab\x8c\xc7\x0f\x1e\x3a\xba\xf9\xfa\x9b\x6e\x5d\xe2\xfb\x67\x8e\ -\x30\x77\x5c\x8c\x3b\x7f\x33\x78\x2b\x9c\xc7\x23\x87\x0f\x65\xba\ -\xbb\xba\x1d\x26\x2b\xbd\x92\x9c\xee\x01\x18\x13\xb6\xa1\x0f\xec\ -\x7c\x61\x57\xf2\xe6\x5b\xee\x5c\x0a\x14\xa2\x7e\x92\x97\x24\x3d\ -\xa0\x8f\x03\xf3\x70\x0c\x11\xc6\x32\x3c\x8a\x91\x7b\x3f\x3a\x3a\ -\x1a\x41\x92\x09\xe4\x11\x1c\x1e\xd4\x09\x72\x4b\xbe\xad\xfb\x66\ -\x72\xf0\xf0\xe1\x18\x4f\x0d\x7b\x6e\x23\x20\x31\x1c\xd6\x16\xf4\ -\x59\xd4\xef\xef\x12\x32\x45\xc1\x1b\x42\x6b\x4c\xcf\x14\x66\xa9\ -\x1f\x95\x1c\xd4\x6a\x77\x57\x9b\x85\x59\xd4\x85\xa1\x01\x90\xdb\ -\x77\xef\xbc\x79\xdb\xc8\xb1\x13\xaf\xba\x5c\xfa\x3d\x4f\xe2\x71\ -\x3f\xae\x29\x18\xc2\xec\x97\x61\x34\x68\x43\x88\x12\xc4\xfc\xf3\ -\x77\xe9\xbc\xde\xe2\x4f\x21\x95\x69\x59\x8a\x15\x66\x6b\xd0\x53\ -\x0d\x48\xc1\x02\x92\x9c\xf3\x34\xce\xe5\x62\xf8\x4d\xff\xd2\x65\ -\xb3\x67\xce\x0c\x44\x3a\xbb\x7b\x8c\x8a\xae\x2b\xf1\x48\xa4\xd3\ -\xd4\xcd\xae\x0d\x9b\xb6\x50\xb6\xb0\xd1\x9c\x27\xf0\x27\x77\x00\ -\x74\xb0\x17\x80\x50\x35\xf5\xda\x4b\x5a\x34\x79\x2d\x11\xab\x54\ -\x2a\x4a\x97\xac\x5d\x5f\xa5\xc7\x80\x94\x89\x18\xc4\xb7\x29\x79\ -\x9e\x0c\x12\x70\x4d\xd1\x68\x54\x87\x7d\xc2\x0a\xf0\x55\x3a\xfc\ -\x9c\x07\x73\x79\xf1\x2c\x72\x80\x11\x41\x98\xa5\x62\xc9\x04\x85\ -\x14\x0a\x15\x35\x4d\x9d\x81\xf6\xa3\x63\x68\x17\xc6\x7a\x00\x6c\ -\x04\x41\xfc\x6b\x58\xb2\x24\x93\x3d\x8d\xa3\x4a\x0e\x6c\xa4\xed\ -\x40\x50\xb8\x3f\x4d\x45\xf4\x82\xf1\x61\xf0\x03\x89\x0f\xf5\x05\ -\xe0\x7b\xd1\x58\x32\x0f\x7b\xbb\xfa\x92\x4b\xd6\x97\x8f\x1f\x3d\ -\x92\x5a\xbb\x6e\xfd\xac\x10\x06\x3f\xd0\xd5\xfe\xe7\x02\x73\x90\ -\x4a\x26\xed\xe3\x27\x8e\xa5\x4a\x8e\x1b\x8b\x47\x23\xe6\xc8\xe4\ -\x44\xca\xab\xd7\xac\xad\x97\x6e\x99\x0a\x24\x5e\x08\xff\x07\x9d\ -\x54\x55\x35\xb2\xc2\xb6\xcc\x49\xcb\xd2\x0f\x97\x4a\xe5\xcd\x2d\ -\x2d\xad\x75\xb0\xca\x39\xf7\x89\xd0\x85\x88\x6a\xbb\x4e\x45\x47\ -\x2e\x81\xc0\x27\xad\x96\xcb\xe5\xfa\x81\xba\xd9\x24\x80\xe7\x02\ -\x78\x1b\xd5\xaa\x56\x6b\x15\x54\xee\x0f\xe0\x99\xab\xa9\x4a\x11\ -\xff\x66\x0b\x67\x49\xd8\x5b\xde\xf2\x16\xef\xe1\x87\x1f\x76\x14\ -\x55\x19\x01\xe3\xd7\x81\xf9\x32\xad\x87\x87\xa6\x14\x6d\x68\x82\ -\xe6\x96\x29\x4e\x03\x2f\x2c\xf5\xe1\x6b\x2a\x61\xf0\xa9\x75\x1c\ -\xbb\x21\x02\x00\x51\x96\x98\x83\x2f\x24\x55\xec\x83\xec\x85\x30\ -\x0f\xa6\x73\xe7\x5a\xc8\x76\x24\x93\x75\x4b\xb3\xb3\x42\x47\x2e\ -\xdb\x28\x57\xca\x8a\x25\x8a\x0a\x81\x29\x84\x70\x24\xd8\xb9\x0e\ -\xf0\xe6\x96\x7f\x21\xbd\xbc\xaa\x5a\x2e\xbc\xb2\xe7\xa5\x9d\xe2\ -\x1d\x77\xdf\xd3\x8f\x2e\x85\x85\x16\x86\xb8\x74\xe9\x87\xbb\x95\ -\xd2\xcc\xfe\x20\x81\x04\xfb\xaf\x22\xbc\x6d\x23\x07\x10\xe0\xf3\ -\xdf\x17\xc5\x41\xb1\xc7\xe1\x04\xb9\xd0\x2f\x34\x16\xf7\x5e\x26\ -\x9d\x9f\xc1\xf5\xc2\x59\x15\x0c\x20\xe9\xb4\x4f\x07\xb1\xed\x48\ -\xb9\x5c\xdd\x64\x3b\x9e\x0c\x0d\xa0\x58\x36\x34\x81\xe5\x36\x03\ -\x5f\x7f\x3a\xf5\x7c\xb3\x80\xf3\xef\x03\x87\x50\xc3\x56\x5d\x5c\ -\xd9\xd4\x87\x3d\x86\xa5\x93\x27\x8e\xc7\x56\xad\x5e\x53\x16\x7c\ -\x98\x59\x78\x3c\x7b\x6d\xab\xdb\xb6\x88\x64\x52\x15\xf3\xf1\x75\ -\x3a\x39\x7c\x64\x6a\x2a\x8b\xb1\x76\x98\x6e\x73\xda\x7f\xce\x14\ -\x48\x88\x29\xeb\xba\xbd\x19\x7f\xcb\x49\xbd\x56\x2d\x44\x62\x89\ -\x8d\xf8\x9c\xcc\x82\xb1\xfe\x9f\x50\xaf\x55\x8f\xc2\x19\x9c\x0d\ -\x72\x1b\x36\xca\x99\x33\x67\x9e\xc6\xa6\xd8\x8d\x30\x75\x39\x40\ -\xcf\x2c\x9b\x17\x67\x68\x68\x64\x9a\x28\xeb\x81\x3e\xa4\x12\xd6\ -\xad\x5d\x45\x26\x60\xc1\x10\x20\x28\xee\xda\x55\xcb\x4e\xec\x7c\ -\xf1\x95\xb7\x81\xe5\xaa\x65\x59\xb2\xbf\x3b\x46\x42\xe4\x24\xba\ -\xaa\x22\xf8\x8b\x2c\x84\x20\x04\x9c\x57\xbc\xf9\xd1\x40\x24\x1a\ -\xeb\x46\x63\x13\xa6\x98\x55\xa4\x83\x1d\x62\x04\x22\x61\x8e\x36\ -\x34\x65\xeb\x53\x42\x98\x23\x24\x6c\xb4\x03\x55\x6b\x44\x23\x51\ -\x43\x53\x14\x13\xf2\x48\xfd\x8e\xef\xfa\xa1\xa1\x8b\x66\xeb\xcd\ -\xad\x0a\xe1\xd7\x93\x93\x13\x3d\xd7\xbd\xe5\xc6\x09\xc4\xf7\x83\ -\xe8\xd8\x17\x89\x27\x41\x02\x26\x06\x6e\x03\xc0\x3f\x59\x9e\x9d\ -\x19\x0d\xef\x40\xc6\xdf\xeb\xee\xde\xbd\xfb\x18\x00\x3f\xb1\x74\ -\xd9\xf2\xae\xfe\xbe\xbe\x4b\x90\x3b\xe8\xb0\x4c\xdb\x3d\x7e\xfc\ -\x54\x91\x6b\x45\x97\x31\x55\x51\xa6\x6e\xb8\xee\xca\x3a\x26\xba\ -\x16\x1e\x01\xde\xf3\xce\xdb\xa6\x5e\xda\x7b\x70\x18\xa4\xcf\xc0\ -\xfe\xab\x96\xe3\x28\x68\x45\x1b\xea\x1f\x1a\x51\x70\x50\x65\x59\ -\x72\x43\x52\x7e\x5e\xef\x9f\x8a\x24\xc9\x8a\x24\x4a\x11\x41\xe4\ -\x9e\x3e\x5f\x63\xd0\xd7\xd7\x5f\x46\x4e\x3e\xba\x6c\xf9\x8a\x4a\ -\xb0\xee\x20\xe4\x0b\x84\xbd\x41\xaa\xb4\x0b\xd9\x92\x45\xd1\x12\ -\x25\xc9\x22\xcf\x9d\xc8\x13\xd0\x25\xa0\x01\x3b\x47\x86\x66\xff\ -\x6c\xa5\xa4\xc4\x13\x71\x03\x21\x67\x5f\x2c\x91\xaa\xd7\x2a\xb3\ -\x53\x92\xa2\x0e\xab\x9a\xd6\xeb\x39\x9e\x5d\x29\x17\x0f\xd7\xab\ -\xe5\x32\x39\xa8\x20\x7a\xd8\xa4\xf1\x0b\x52\xff\xd8\xe7\x30\xbe\ -\xe7\xe5\x7d\xd3\x20\x6d\xa6\xa3\xbd\xa3\xa7\x54\x2e\xdb\xd0\x30\ -\x8a\x4d\x07\x13\x27\xe2\xc3\x38\x33\xc9\x59\x70\x1b\x43\xc8\x0f\ -\x40\x42\xc8\x4e\x26\x62\xfb\xb1\x37\xe0\x66\xdb\x76\x35\xcb\x72\ -\x54\xc3\xb4\x14\xdb\xb4\x4d\x27\xe2\x39\x40\x92\x0c\xa3\x80\xca\ -\xbd\xfd\x70\x99\x7f\x78\x03\x9e\xd3\xac\xb2\x05\x4a\x50\xcb\x41\ -\xcd\xb7\xe4\xed\xe1\xe1\xc1\x1c\x2e\x5d\x1e\x31\x08\x01\xf2\x21\ -\xe0\xe7\xfa\x1c\x11\x82\xa9\xc8\xb2\x25\x0a\xa2\x05\x8c\x5c\x49\ -\xf4\x37\x85\x9c\xd3\xfb\xfc\x3a\xa0\x02\x2f\x03\xa7\x4e\xa5\x2f\ -\xbd\xec\xb2\x02\xfa\x84\x58\x3c\xb9\x0a\x8e\x6d\x4c\xd7\x1b\x05\ -\x84\x0f\x6a\xa3\x51\x9b\x71\x6c\xd3\x68\x6d\xef\x5e\x5f\xad\xce\ -\x8e\xcc\x22\xa7\x3c\xff\x20\x4a\x22\x00\x21\xeb\xb8\xb6\x70\x76\ -\x74\x4c\x3f\x7a\xfc\xd4\x88\x63\x7b\x51\x68\x43\xc1\xb2\x2d\x67\ -\xd3\xfa\xcb\x86\xc8\x2c\x5c\x28\x5c\x44\x6a\x2e\x94\x1f\x00\x15\ -\xed\xec\xb8\x76\xeb\x3e\xa8\x41\x09\xf6\x2f\x62\x9a\xb6\x86\xaa\ -\xe8\x30\x07\x50\x85\xdc\x19\xf4\xbc\x73\x66\xc0\xa3\x1a\xc4\xc6\ -\x61\xdf\x80\x8a\x65\x99\x46\xbd\x56\x7b\x95\x89\x90\x3b\x80\xc9\ -\xfc\xda\xde\xde\x5e\x1d\x19\x19\x56\x81\x18\xfa\xe7\x2a\xee\x51\ -\x85\xe6\xb5\x47\x40\x7b\x18\xcf\xef\x79\x25\x93\x00\x7c\xa8\xda\ -\xfc\xbb\xd0\xce\x7d\x0e\xfd\xa8\x0d\xbd\xe1\xc1\x91\xb5\xd0\xcf\ -\xc7\xd2\x38\x55\x8b\x76\xc6\xe3\x89\x6e\x6c\x71\x1b\x22\xd2\xe5\ -\xf2\xed\xeb\x61\xbf\xe3\x64\xd3\xc3\x91\x4c\xf0\xb7\x50\x1c\x0c\ -\xb0\x45\xc7\x76\x05\x1b\x2d\x71\x1d\x01\x01\xdd\x93\x56\x9b\xbe\ -\xfd\xe6\xed\x65\x1a\xbb\x50\x37\x87\xba\xdb\xae\xda\x5c\xfe\xe5\ -\x63\xcf\x0e\x98\x96\xd5\x85\xaa\x41\x03\x68\x96\xe9\xd0\x4c\xb9\ -\x68\xc1\x17\xa0\x73\x00\x65\xef\xb5\xbc\x7c\x3d\x7f\xa0\x32\x5b\ -\x98\x80\x67\x9d\x91\x91\xa9\x0b\xd4\x7c\x0f\xd2\xb2\x7b\xf6\xec\ -\xce\xf7\xf5\xf6\x95\x85\x90\xcd\xc7\x25\x6a\x70\xcf\xc1\x70\x70\ -\x6f\x8b\xe4\x43\x34\xc1\x77\x29\xcd\x1b\xe6\x6c\x60\xfb\x3d\xdf\ -\x20\x1c\x3a\x78\x20\x7f\xf9\xd6\x2b\xa6\x31\x9e\xe7\x7d\x5c\x6a\ -\xb9\x39\x52\xa2\xe9\x4c\xfe\x92\xe6\x01\xd2\xbc\xcf\x32\xcc\x46\ -\x2d\x7c\xd6\x10\x69\xb6\x20\x01\x66\xc1\xec\xc1\x27\x90\xe0\xf0\ -\x89\x20\x81\x0c\x6d\x28\x99\x96\x4d\xcb\xce\x06\x30\xb7\x41\xfb\ -\x02\x17\x26\x01\x30\x13\xe7\x3d\xfa\xe8\xa3\x66\x4f\x77\xfb\xb3\ -\x83\x23\xa3\x1f\x82\xf4\xc7\x40\x80\x3a\xaa\x6a\x18\x44\x07\xcd\ -\xd6\x34\x48\x83\x43\x80\x78\x04\x80\x3b\xdf\x04\x50\x13\xee\xaa\ -\x96\x4b\x83\xe9\x5c\xcb\x2a\x00\x29\x35\x51\x16\x58\x36\x93\xa9\ -\x4f\x4d\x4d\xc8\x6d\x1d\x1d\x46\x60\x82\xc3\xd1\x03\xe3\x05\xa0\ -\x03\x12\x92\x6e\x01\x5a\x04\xf7\x94\xc9\x41\xeb\x97\xb9\x7d\x7e\ -\x9c\x3d\xa4\xa2\x45\x49\xb4\x83\xb8\x3f\x58\xb1\x1d\x3e\x2e\x24\ -\x60\x59\xad\x5a\x1e\xb2\x0c\x43\xf7\x49\x14\x48\x3f\x08\x43\xdf\ -\x63\x0b\x36\xaa\x09\x07\x18\x5a\x4f\x06\x09\x24\xd3\xb6\x28\x2c\ -\xac\xdc\x7d\xeb\x75\xa7\xb1\x21\x86\xff\xcd\x0b\xce\x04\x04\x05\ -\xf9\x7e\xf7\xa3\xef\x7f\xdb\x49\x59\x92\x06\x81\x79\x04\x52\x1f\ -\xd5\x0d\x33\x62\xc0\x14\x18\xa6\xd1\x34\x05\x02\x23\x07\x2a\x00\ -\x3c\x5c\xbc\xf9\x7d\x86\xa1\x37\x2a\xa5\xc2\x09\x74\xeb\x80\x96\ -\x4b\xf5\x8a\x95\xab\x4a\x58\x4c\x11\x23\xdc\x18\xef\x13\x48\xdd\ -\xf3\x67\xc1\x3d\xa0\x77\xd1\xda\x22\xf5\xa3\x92\x46\x08\xae\x83\ -\x31\xc1\xf7\xd1\xf5\xde\x3d\x7b\x32\x5b\x2e\xbb\x7c\x8a\xf9\x26\ -\xc3\xff\xae\xc0\x5c\xf0\xef\x67\xae\x67\x94\x4b\x85\x93\xe5\x52\ -\x71\x26\xa0\x91\x1f\x02\x0a\xcd\xd8\x9f\x80\x87\xd3\x6b\xd9\x92\ -\x69\x72\x33\x28\xc3\x0f\x92\x40\x7d\x5a\x36\x77\x3c\x1a\x51\x74\ -\x64\xff\x16\x36\x01\xe8\x0f\x04\x09\xcc\x25\xbd\xdd\xbf\x26\x1f\ -\x40\x37\xac\x18\x11\x40\xd7\x0d\xb5\x61\x58\x8a\x61\x9b\x14\x16\ -\x02\x21\x8e\xb6\xf0\x7a\x92\x4f\x35\x4c\x82\xd9\xe2\xcc\x29\xcb\ -\x36\x67\x40\x9c\x2a\x14\x87\x8e\x2d\x68\x7a\x79\x96\x27\x06\x6d\ -\x5e\x99\x5f\x71\xed\xdb\x75\x5c\x0b\x68\x43\x40\xfa\x63\xe1\x5f\ -\xd2\x18\xbf\x12\x21\x3c\xdb\x75\x1d\x5b\x94\xb8\x89\x98\xab\x02\ -\x07\xde\x6f\x3d\xbb\x56\xad\x8c\xd6\x11\x17\x84\xb5\x94\x3f\x93\ -\x28\x50\xa4\xe3\x58\x4d\xd5\x6f\x98\x44\x00\x0b\xe0\xbb\x32\x1c\ -\x3f\x22\x44\xfd\x6d\x77\x5c\xff\xea\xa6\x4d\x9b\x28\xfb\xb7\xb0\ -\xcf\x08\x22\x44\xb0\xff\xdd\xf9\xe0\x7b\xee\x7c\xf5\xff\xf9\xeb\ -\xff\x3e\x68\x18\x56\x87\xae\x98\xb1\x86\xae\x18\x9a\x66\x58\x46\ -\x44\xb3\x34\xd5\x12\xe9\xa0\x28\x9a\x37\xf2\x23\x82\xd7\xe4\x00\ -\xce\xa7\x19\x4c\xd3\x30\x4a\x85\x99\xe1\x60\xf1\xe8\x92\xfe\x3e\ -\xed\x99\xa7\x7f\xbd\xe4\xe6\x5b\x6f\x1d\x0b\x52\x40\xb1\x58\xbc\ -\x1d\xd7\x12\xe1\x43\xe6\x85\x4b\x3a\x27\x83\xe7\xa0\x87\x5f\xcf\ -\xe7\x9a\x80\xeb\x5d\x2f\xee\xca\x6f\xb9\x7c\xeb\x64\xc0\xc8\xd0\ -\x69\x21\x78\xec\xf2\xe1\xa6\xd1\x28\x55\xab\xe5\x22\x91\x35\x5c\ -\x89\x00\xa4\xcc\x88\x3f\x70\x76\x45\x00\x2f\x19\x00\x1f\x36\x5f\ -\x31\x2c\x53\x86\x00\x78\x48\x4d\x1f\x5f\xd2\xd7\xdd\xc0\x0e\x6a\ -\x2e\xfd\x0b\x5a\x03\x04\x5a\x00\xce\x9e\xb1\x72\x79\xef\x13\x86\ -\x05\xfb\x0f\x5f\x40\x37\x2d\x98\x02\x4b\x6b\x34\x4c\x15\xad\xcc\ -\xbd\x64\xc7\x0b\x24\x28\xa8\x1e\xdd\x07\x25\xe8\x9b\x7f\xb2\x57\ -\x10\x25\x54\x2a\xe5\xd9\xc2\xf4\x54\x55\x6f\xd4\x67\x01\xd0\x6c\ -\xbd\x5e\x1d\x46\xff\x34\x98\x55\x01\xfe\x5c\x6a\x3d\xc6\x35\x81\ -\x4d\x26\x80\xf1\xeb\x40\xc2\xe9\xde\xe3\xfd\x7c\x3a\x5b\x91\x69\ -\x2c\x27\xca\xb9\xd6\x6b\x7e\x1e\x1a\xa8\x50\x28\xcc\x8c\x05\xa0\ -\x07\xb6\x2a\x08\xfb\xc8\xda\xc0\xd4\x09\x96\x69\x89\x3a\xc0\x07\ -\xe9\x15\xa8\x7d\xc5\xb2\xb8\x13\x58\x79\xf7\x3b\x6e\x3f\x8e\xc5\ -\x1f\x81\xf4\x2f\x7c\x02\x40\x42\xb9\x2f\xf0\xc7\x1f\x78\xc7\xe9\ -\x88\xa6\x1e\x30\x4c\x33\x0a\x27\x30\x56\x6b\x18\x91\x86\x61\xa8\ -\x46\xc3\x94\xd1\x8a\x64\x33\x21\x3d\x94\x17\x98\x2f\xf6\x44\x8c\ -\xf3\xfa\x04\x61\x10\x6e\xb9\xe5\x96\x71\xbc\x79\xa4\x3d\x18\xcf\ -\x23\xc7\x6a\x79\x12\xf5\xac\x4b\x80\x8b\x4d\xb0\x71\x6d\x13\xa0\ -\x7e\x2a\xd8\x57\xe9\xcd\x76\xf7\xee\x97\x52\x9b\x37\x6f\x9a\x62\ -\x3e\x31\x30\xce\x66\x34\xde\x45\x8b\x6b\xd7\x71\xcd\x4a\xb9\x34\ -\x15\x0a\x57\xa9\x0d\x4e\x28\x85\x29\xf3\x04\xca\x74\x02\x74\x49\ -\x37\x08\x7c\x53\xc6\xdf\xab\xc2\xfc\xc9\x8d\x86\x41\xbb\x82\xf6\ -\x4b\xa2\xa7\xfb\xd2\xbf\xf0\x09\x10\xd6\x02\x98\x4b\x37\x6f\xdc\ -\x71\xd5\xaf\x28\x1d\xda\xd0\xad\x98\xa9\x9b\xf1\x7a\x9d\x93\x40\ -\xd1\xf5\x66\x6e\xc0\xf1\x13\x43\xf3\xa4\x2b\x0c\xfe\x7c\xe0\xe7\ -\x8f\xe1\xe0\x87\x81\x81\x99\x50\xb9\x84\xbb\xe4\xf8\x31\x87\x87\ -\x81\x3c\x86\x23\x12\xa0\x52\x4b\xcf\xd1\x82\x31\x02\x96\x99\x1b\ -\x18\x6b\x93\x22\x17\x5c\x8c\x45\xeb\x3f\x77\x1b\xf5\xea\x0c\xad\ -\xfa\x99\xaf\x82\x38\xf8\x8e\xcb\x6c\xdb\xe2\xd2\x6f\x90\xe4\xeb\ -\x06\x54\xbe\xc9\x93\x5f\x20\x02\x1d\x29\x3e\xfe\xc1\xf7\xbe\x6d\ -\x08\x2b\x9b\xb9\xf4\xbf\xa9\x08\x40\x5a\x00\x29\x4f\xf7\x86\xed\ -\x5b\x0b\xb9\x7c\xe6\x19\xd2\x02\x0d\xd3\x8c\x01\xfc\x68\xbd\x61\ -\x46\x1a\x26\x48\x00\xa9\xe1\xff\x80\x30\x07\x24\x4d\x61\x53\x30\ -\xdf\xce\x52\x47\xf8\x3e\x30\xe4\xdb\xaf\xbb\x7e\xea\xbe\x6f\xfc\ -\xf4\x96\xaf\xff\xe4\xc5\x3b\xef\x7f\xf0\xa5\x1b\x7f\xf4\xab\x03\ -\x9b\x5f\x3c\x30\xd8\x0a\x5b\x6c\xc1\xcc\x40\xc5\x13\xb0\xcd\x28\ -\x60\x60\x78\x2a\xf6\xf0\xd3\x07\x97\xfe\xf3\x43\xbb\x36\x7f\xfd\ -\x07\xcf\x6e\xff\xca\xfd\x3f\xdd\xde\xde\xb5\xa4\x0a\x33\x4f\x12\ -\xef\xa0\xf2\xf1\xd4\xba\xfc\xde\xb5\x5d\xdc\x84\x6d\x3e\x4c\x9b\ -\xc4\x58\x33\x8a\xc1\x43\x66\x5b\x8e\xa0\x9b\x26\xa4\xdf\x90\x1b\ -\x14\xee\xea\x50\xff\xd0\x04\xf5\x86\xe1\xad\x5e\xb1\xe4\x15\x24\ -\xae\x4c\x3a\x27\xf8\x4d\x79\x5a\x38\xe5\x05\xbe\xf3\x9d\xef\xd8\ -\x9f\xf8\xe8\xbb\x77\x7d\xf1\x6f\xfe\xfb\xa5\x90\xfa\x84\xa2\x58\ -\xba\x06\xe8\x55\x4d\x31\x35\x55\x76\x14\x45\x72\x68\xd7\xac\xec\ -\xd0\x5e\x3a\x27\x98\x0f\xe0\x40\xbf\x1e\x21\x02\x95\x4f\xe9\xe4\ -\x9f\x3d\x77\x62\x5b\xc1\x50\xb7\xe7\x0d\xfb\x18\x1e\x89\xa3\x53\ -\xe5\xfc\xe0\x58\x31\x66\x7a\xf5\x96\x89\x09\xe3\x34\x84\xf3\xe8\ -\xbe\xe3\x67\xfa\x8f\x0f\x4e\x6f\x1e\x1d\x7c\xa9\x4f\x96\x04\x13\ -\xf6\xde\x00\xae\xe2\x58\x51\x5f\xfa\xd3\x67\x8e\xe7\xff\xf7\xe5\ -\xbd\x3f\xe4\x6e\x1f\x98\x10\x64\xf3\x9a\xcb\xdb\xdc\x73\x93\x45\ -\xa2\x28\x49\x09\x14\x41\x10\xe5\xb1\xb1\xd1\xa2\xe3\x90\xea\x37\ -\x45\x10\x5a\xd2\xc9\xa4\x41\xa3\xe9\x3a\xfc\x1b\x90\xa0\x01\xe9\ -\xd7\x34\xed\xf8\xad\x37\x5c\x3d\x8d\x49\x1f\xf7\x4d\xfd\xbe\x00\ -\xc4\xeb\xce\x0d\x37\xdc\xd0\xc0\x9e\xb9\x47\x4e\x9f\x1e\x79\xbf\ -\xaa\xc8\xb1\x86\x22\xc1\x0e\x28\x46\x43\x55\x2c\x4d\xb1\x24\x7a\ -\x41\x94\x23\x7b\x4c\x0a\x49\xfa\xeb\x81\x3f\x2f\xfb\xc6\x74\xc3\ -\x4e\x2d\xed\xee\x78\x62\xc7\x96\x25\x2f\x27\x63\x31\xd3\xf2\x5c\ -\xb1\x50\xaa\x45\xf7\x0f\x0c\xae\x2e\x14\xaa\x2d\x8f\x3c\x7d\xe8\ -\x5a\x04\x0e\x56\x67\x4b\xe6\xc8\xf6\x75\x97\x1c\xca\x65\x13\xf5\ -\x88\xa6\x50\x3a\x5e\xd8\x73\xe8\x74\xdf\x2b\x47\x47\xae\xb6\x4c\ -\xc7\x15\xf9\x04\x22\x27\x41\xb0\xd9\x93\xfb\x26\xb4\x08\x94\x7e\ -\x5c\x12\x6b\x1a\x29\xc2\x28\x16\x0b\x65\xb2\x58\x16\xac\x04\xb4\ -\x8c\x48\xaa\xbf\x61\x90\xea\x37\x54\xb2\xfd\xe4\x03\x40\x23\x18\ -\xf7\xdc\x71\xe3\x7e\x38\x7e\xd6\x35\xd7\x5c\xe3\xbd\x99\x09\x10\ -\xbc\xeb\xdf\xf9\xe3\xf7\xdf\x73\xea\x0b\x7f\xf5\x4f\xc7\x20\x21\ -\xcb\x55\xd3\x32\xaa\xe4\x0d\x6a\x14\x12\xea\x36\xb4\x80\x2b\x29\ -\xfc\x3d\x3c\x0e\xfe\xcf\x57\xd7\x9c\x27\xdc\x0a\xbf\xf8\xc1\x0b\ -\xce\xf8\xcd\x26\x23\xa3\xe9\x44\xa4\xd4\xd9\x92\xac\xa9\xaa\xcc\ -\x77\xe4\x76\xe4\x62\x8d\x35\xcb\x5a\x5f\x2c\x57\x0c\xc5\x62\x62\ -\x36\x93\x8c\x89\xd9\x64\xcc\x94\x24\xd2\x32\xcd\xef\x20\x15\xde\ -\xd1\x92\x9a\x6a\xcd\x25\xb0\x62\xd8\xb5\xdc\x39\x53\x43\x4c\x10\ -\x3c\x5c\xdb\x28\xb4\xd6\x5f\x55\xb5\x08\x88\xe1\x01\x60\x1d\x1b\ -\x5d\xd0\xe3\x08\x36\xc0\x27\x13\xa6\x13\xe0\x50\x68\x7a\x83\xc0\ -\xb7\x14\x68\x01\xfc\xc0\xf4\xfe\xed\xd7\x5c\x5e\xfd\xc5\x2f\x7e\ -\xe1\xb2\x3f\x70\x91\xde\x20\x2f\x84\xf6\xb0\x3f\xc0\x83\xd4\x4d\ -\x9c\x7c\x75\xe8\x0a\x3a\x46\x05\xaa\x18\x60\x8b\x74\x90\x94\x23\ -\xcb\xfc\x40\x49\x87\x62\x7c\xc2\x27\x58\x62\x35\xff\x44\xb0\x70\ -\xf6\x2d\x54\x8c\x99\x72\x23\xd9\xd3\x9e\x2e\x28\xb2\x18\xac\xcf\ -\xe6\x9b\x52\xe2\x51\xd5\x6d\xc9\x24\x05\xb4\x36\xba\x08\xdd\xe6\ -\x59\xde\x10\x61\x78\x08\x6c\x70\xb4\x90\x4a\xc4\xd4\x72\x6f\x7b\ -\xba\x04\x42\x10\xa9\x78\xa5\x31\x15\xc4\x98\x00\x5b\x27\x07\xd0\ -\x6b\xee\x24\x76\x10\xd9\xe8\xf4\x39\x68\x05\x11\xce\xac\x54\xaf\ -\x37\x94\x6a\xbd\xa1\xd6\xea\x8d\x08\xfc\x1a\xf8\x36\xba\x0a\xc7\ -\x63\xe6\x63\x1f\x7c\xe7\xae\x99\x99\x69\xf3\x13\x9f\xf8\xc4\xe2\ -\x3b\x83\xc2\x2b\x86\x6e\xd8\x7e\xf9\xd4\xcb\xaf\x1c\x79\xae\x5a\ -\xaf\x5d\xd7\xd0\x65\x43\x81\xcb\x54\x87\x2f\xa0\x46\x0c\x4b\xd5\ -\x15\x9b\x0e\x5d\x96\x24\xd4\x26\x10\xe1\x25\x62\x81\xcd\x0f\xfa\ -\xcf\x11\x63\x55\x5f\x7e\xe6\xd5\xb3\xc5\xce\xc9\x42\x2d\x12\xd5\ -\xa4\x6a\xf8\xd8\x15\x4c\x24\x29\x68\x5c\xc2\x70\x7e\x28\x59\xa9\ -\xea\xf2\xc4\x4c\x25\x7e\xc5\xfa\xbe\xd3\x76\xd3\x59\xf4\x55\xbf\ -\x43\x4b\xc1\x1b\xc1\x7a\x7f\x6e\x06\x74\xdd\xf6\x0b\x1c\x56\x47\ -\x34\x0d\x8a\xf7\x0d\xa8\x7e\x53\x41\xa8\xa7\xd6\x75\x53\xd3\xe9\ -\x5a\x37\xd8\xca\x65\xfd\x2f\x75\x75\x75\x18\x57\x5e\x79\x25\x27\ -\xe3\xa2\x06\xf0\xcb\xb7\xbf\xfd\x6d\x8a\xdb\xd9\x55\x5b\x37\x4f\ -\xec\x7c\x69\xff\x06\x60\x10\x83\x4a\xb6\x25\x01\x55\x96\xa0\x05\ -\x04\x54\xd9\x45\x9f\x2b\x01\xf0\xf0\xab\x62\xe7\x4b\x7e\xb8\xc5\ -\x25\x54\xb3\xe3\x55\xea\x46\x34\x97\x8e\xd5\x65\x51\x08\xa7\x69\ -\xf9\x16\xbd\xa6\xe5\xe0\xd7\x28\x8e\x6b\x3b\xb6\x37\x3c\x51\x8c\ -\xc3\x7e\x0b\x2b\xfb\x72\x33\xe8\xf3\xa8\x3a\x8e\x45\x7b\x10\x10\ -\x3f\x58\x1c\xfc\x50\x15\x08\x7c\x1b\x8e\x9f\x65\x19\x62\x5d\x37\ -\xa4\x5a\x5d\x57\xab\xb5\x86\x56\xa9\x35\xa2\x0d\xdd\x8c\x42\x0b\ -\xc0\xb7\x54\x4e\x7c\xf4\x03\x6f\x3f\x4c\x91\x04\x4e\x3f\x65\x8b\ -\x04\x98\x57\x90\x0b\xf7\x36\x6c\x58\xe7\x1e\x3f\x75\x66\xb6\x30\ -\x53\xda\x2c\x89\x02\x3f\x45\x04\xad\x4d\x99\x38\x7e\xb8\xa4\x24\ -\x35\x5f\xcb\x26\xce\x6d\x19\x0f\x81\x7f\xde\x69\xe3\x96\x6c\xac\ -\x7e\x7a\x74\x36\x2f\x82\x4c\xa9\xb8\x62\x86\x7d\x87\x60\xf1\x85\ -\x87\x12\xa8\xf9\x99\xd9\x9a\x7c\x6a\x78\x26\xbf\x69\x65\xc7\x08\ -\x2d\x3a\xa5\x7e\x02\x1d\xeb\x19\x2c\x8c\xa7\x31\xe1\x0c\x25\x0d\ -\x20\x02\x88\x16\x5a\xbd\xc1\xc1\x57\x00\xbe\x8a\x0a\xb5\x6f\x44\ -\x6b\x0d\x5d\x83\xf4\x1b\x77\xdd\xfa\x96\x5f\xaf\x58\xd6\x5f\xbf\ -\xee\xba\xeb\x3c\xf6\x06\x29\xe2\x1b\xed\xb5\xb1\x78\x49\x93\xf3\ -\x27\x1f\x78\xfb\x49\x45\x55\x8f\x23\x6e\xa6\xbc\x40\x0c\x12\x14\ -\xa9\xd7\x75\xad\x5e\x6f\xe6\x06\x1c\xc7\xa6\x14\x2a\x8f\xb5\xc3\ -\x49\xa2\x00\x94\x00\x20\xff\x39\xa1\xcb\xb2\x09\xad\x32\x38\x56\ -\x68\x81\x3a\x16\xc3\xe3\xa9\x1a\x86\x61\x43\xb2\xc9\xa1\x73\x1a\ -\x0d\xdd\x3d\x7d\xb6\x10\xa7\xbd\x7c\x92\xe0\x1a\x28\xc1\x4b\xa4\ -\x2c\xfa\x3e\xaa\xe1\xcf\x07\xd5\x72\x3c\x46\x09\x1f\x5d\xa7\x90\ -\x4f\x97\xc9\xde\x37\x7c\xcf\xbf\x01\x52\xb4\x64\x33\x7b\x77\x6c\ -\xdb\x5a\xc1\x81\x59\xbe\xea\x5f\x24\xc0\xeb\x66\x08\x21\xd9\xe6\ -\x8e\x6b\xb7\x3c\x8e\x30\x0a\xe0\x98\x50\xa1\x46\x0c\x92\xa4\x81\ -\x08\x0a\xee\x69\x1e\x5d\xb0\x9b\x5e\x78\x18\x84\x40\x1a\x83\x6b\ -\x2f\xfc\x6c\x69\x77\xba\x34\x53\xaa\xe7\x6b\x20\x11\xc6\xf0\xcf\ -\x06\x63\xfd\x7b\x0f\x04\x70\xe1\xd7\xb1\xd1\x89\x52\x1a\x84\x29\ -\x91\xd4\x53\x5f\xe8\xe7\x78\x54\x31\x3e\xfc\x59\x48\x3f\x77\xfc\ -\x04\xca\xee\xc1\xd6\x4b\x64\xf7\xd1\x92\xd7\xaf\xc1\x1c\x90\x9f\ -\x31\xf9\xbf\xfe\xf1\x7b\x8e\x52\xc8\x4b\x9a\x6a\x91\x00\xbf\xc5\ -\x21\x84\xad\x77\x76\x5c\x73\xe9\x74\x2e\x93\xda\x09\x89\x8f\xa0\ -\xc6\xea\x94\x21\xd4\x75\xad\xa6\x1b\x0a\x25\x57\x08\x14\x5f\x0b\ -\x08\x61\x89\x07\xee\xf3\xaf\x79\x95\x04\x46\x2b\xf1\xe5\x5a\xdd\ -\x94\x39\xe0\xa8\x43\xa3\x33\xb1\x5d\x07\x07\x3a\x06\x86\xa6\x12\ -\x20\x99\x48\xfd\xba\x69\x8b\x20\x49\x3c\xa6\x49\x66\x98\x58\x61\ -\x8d\x12\xae\x44\x0e\x38\x7e\x34\xd1\x23\x40\xf2\x25\x48\xbe\x5c\ -\xe7\x61\x9f\xa5\x19\x44\x02\xdd\x14\xd6\xac\x5a\xf6\x9b\xbe\xbe\ -\x5e\x13\xe4\x5e\x7c\x7b\xf8\xbf\x26\x43\xf8\xbf\x7c\xf8\xde\xdf\ -\xfc\xd5\x7d\xdf\x5e\x0f\x49\x8a\x1a\xba\x15\xad\xc3\x97\x46\x92\ -\xc6\xd2\x54\xc5\x52\x15\x7e\xae\x24\xd9\x82\x73\x51\x40\x20\x5d\ -\xe1\x6c\x21\xda\xa0\x12\x03\x84\x5f\x3e\x73\xe8\x4e\x84\x66\x3d\ -\xa6\x65\xe7\x98\xc2\xe0\x53\xb2\x06\x86\xc9\x82\x2d\xea\xf0\x33\ -\x4a\xb1\x88\x3a\x9e\x4e\xa7\x8b\x11\x55\xb2\x51\xc2\x49\x25\x6a\ -\x83\x1a\x72\xfe\x5c\x66\x92\xf4\xf3\xb8\x9f\x27\x7c\x14\x1e\xf7\ -\x5b\x06\x79\xfe\xb2\xa6\xa9\x27\xde\xfb\xce\xdb\x26\x0e\x1c\x38\ -\xe0\xae\x59\xb3\x26\x0c\xc0\xa2\x13\xf8\xdb\x1c\xc2\x4d\x9b\x36\ -\x78\x07\x0f\x9f\xd0\x8b\xb3\x95\x75\x74\xa2\x28\x2d\xe1\x86\x53\ -\x68\x29\x8a\x64\xe3\x9e\xbf\x44\x5a\xe4\x7b\x09\xe7\x80\x7f\x3d\ -\xad\xf2\xe4\xae\x13\xab\x8e\x9c\x1a\x7d\x9f\xa2\x88\x33\x7d\x5d\ -\xb9\x17\x5a\xda\xe3\xc7\x12\x19\x6d\xb0\xaf\x33\xfb\x4a\x2c\xa9\ -\x9e\x6d\x6b\x4f\x1e\x5e\xda\xd1\x76\x00\x92\x2c\x9d\x9d\x28\x6d\ -\x2b\xce\x96\x67\x57\xf6\xb5\x8e\x87\xc1\x0f\xd7\xc0\xf3\xb7\x9a\ -\x49\x1f\xa9\xd6\x68\xc8\xd5\x9a\xa1\xd6\xe0\xf8\xd5\x74\x3d\xaa\ -\x63\x52\x8b\xf2\xfd\xd7\x5c\xb1\xe9\x89\xbe\x9e\x8e\x1a\x5e\x7c\ -\xc1\xa5\x7f\x51\x03\xfc\x2b\x1c\x42\xec\xa6\xb5\x3f\xf3\x89\x0f\ -\x1c\xfd\xec\xe7\xbf\x72\x25\x24\x2c\x63\x9a\x4a\x84\xfc\x35\xa8\ -\x56\xc3\x8c\x68\x36\xc0\xe2\x5a\x00\x5e\x21\x07\x3f\xc8\xff\x87\ -\xe3\x79\xdc\x73\xd5\x7d\xf8\xe4\xd8\xdb\x56\xf4\xe5\x1f\xd8\xb6\ -\x65\xe9\x91\x64\x2c\x62\x3d\x73\xec\xc4\xea\x28\x53\xeb\xdd\xb9\ -\xd4\xd4\xd9\x42\xc9\xaa\xea\x66\xf2\xaa\x0d\x3d\x83\xd6\x9a\xce\ -\x61\xa4\x7f\x07\x77\x1d\x38\xf3\x3e\x80\xbc\x2f\x3c\xb7\x40\x25\ -\xec\x6b\xf0\xd9\x3e\xc7\x16\x28\xb7\x0f\x0d\x25\xf3\x59\x3e\xcb\ -\x52\x2d\xd3\x51\x61\x4a\x30\x37\x10\x3b\xb0\xf5\xd2\xb5\xb3\x38\ -\xcc\xca\x61\x6f\xd0\x22\xb2\x37\x70\xc1\x39\x01\xe4\x84\x19\xcb\ -\x97\xf4\x3c\xc5\xff\x71\x4d\x3b\xc2\xbd\x6a\x4a\xa9\x9a\x26\xad\ -\xab\x13\x9a\x4e\xd8\x3c\x9b\xef\xd7\xf0\x3d\x18\xe2\xac\xea\x6b\ -\x3d\x93\x8c\x6a\xa6\x00\x6e\x98\x00\x0a\x1a\xc5\x88\xab\xaa\x0e\ -\x05\x62\xd5\x4d\x23\x81\x71\x74\xb0\xa3\xdb\xd6\x9a\x2c\x81\x50\ -\x76\xf8\xf3\xe7\xbb\xb6\xe8\xe7\xc2\xf3\x37\x69\xbe\xdf\xb2\x25\ -\xfc\x6e\x4d\x12\x18\xb6\x82\x88\xc0\x78\xfb\x5d\x37\xed\xc3\x96\ -\x77\xbe\x75\x6d\x91\x00\xff\x46\x2d\x80\xa5\x36\xce\x87\xdf\x77\ -\xf7\x69\xa8\xfb\x21\x48\x57\x04\xd2\x15\x35\x0d\x5b\x33\x0d\x47\ -\x36\x6d\x5b\x72\x6d\x57\x74\x59\xd3\x1e\xcf\x03\x2a\x0c\x98\xd7\ -\x3c\x0d\x3c\x38\x90\x92\xcf\xe5\x0a\x8a\x28\xd8\x51\x55\x35\x65\ -\x51\xb2\xd0\x2d\xfa\xc0\x52\xba\xd9\x65\xa8\xaf\x43\xaa\x20\x6a\ -\x10\xf0\x84\x92\x3f\xa2\x6d\xf1\xed\x6d\x32\x08\xa9\xf2\xcd\x2e\ -\x96\x29\x25\x13\xf1\x43\x97\xac\x5e\x5a\x23\x12\x07\x00\x2c\x9a\ -\x80\x7f\x63\x58\xf8\xc0\x03\x0f\x58\x58\x4a\xbe\x7b\x70\xe8\xec\ -\x3d\x86\x6d\x6a\xa6\xa5\x52\x7c\x0d\x29\x8b\x9a\x96\xe3\xda\x91\ -\xd7\xbe\xdd\x23\x70\x00\xc3\x7d\x0c\x7d\x8e\xc7\x38\xf8\xcd\x3e\ -\x97\x9b\x07\x47\x15\x04\x97\x5b\x0f\x7c\x8c\x80\xa5\x22\x50\x1f\ -\x13\x9c\xf3\x4c\x33\x07\xd7\x34\xf1\xc7\xcf\x77\xb0\xc8\x0f\x70\ -\x1c\x48\x3f\x5f\xe1\xab\x98\xd4\xc2\x2b\xbc\xe3\xe6\xed\x87\xb1\ -\x11\xd4\x21\x12\x2f\x12\xe0\xdf\x19\x16\xe2\x34\x50\x07\xff\x98\ -\x03\xff\xf7\x17\xff\x71\x1a\x1a\x20\x61\xc2\xc6\x9a\x16\x57\xb3\ -\x32\x00\x35\x09\x4b\x89\x89\xce\x79\x5e\x12\x15\x26\x82\x43\x32\ -\x3e\x77\x4f\x28\x0a\x2e\x5d\x88\x4c\xf4\xd0\xcc\x8d\x75\x79\xeb\ -\x04\x64\x99\x9f\x5e\xa6\x7e\x7e\x4a\x18\x86\xd9\x00\xdf\x36\x41\ -\x00\x5a\xe3\x67\xd3\x42\x4f\x5b\xc4\x8a\xe4\xa3\x97\x6d\x5c\x53\ -\xff\xde\xf7\xbe\x47\x6c\x5b\x24\xc0\xbf\xb7\xd0\x3f\xe4\x86\x0d\ -\x1b\xcc\x96\x6c\xea\x95\xc2\x6c\xf5\x7a\xa8\x7e\xb5\x29\x6d\x96\ -\x64\xd9\x00\x80\x50\x50\x64\xe6\x13\xe0\xf5\x22\x01\x57\x12\xa4\ -\xd0\x3b\xdf\x18\x81\xe8\x59\xd4\xa0\xa5\x8e\xe0\x99\x24\x88\x2e\ -\xe1\x7c\xbe\xef\x6a\x9e\x66\x2a\x61\x24\xf9\x00\x50\xff\x30\x41\ -\x86\x6d\xc9\x70\x08\x61\x02\x68\xb5\x0f\x3c\xff\xad\x9b\x0e\xd3\ -\x0e\x9f\xdf\x91\xf4\x2f\x12\x80\xd4\x28\x0e\x4b\x72\x37\xaf\x5b\ -\x72\xf2\xf1\x67\x5f\xd9\x0e\xc7\x90\x6b\x00\xd3\x76\x64\x48\x1d\ -\x4d\x0e\x02\xde\x39\x55\x1d\xd2\x02\xe1\xe2\x48\xa1\x9d\xc7\x8c\ -\x9a\xb9\x23\x65\x20\xce\x73\xe7\x12\xc9\x32\x01\x2f\xbc\x6e\xd6\ -\x8e\xcf\x0a\xf2\x96\x36\x74\xda\xa2\x03\x1f\x00\xda\x88\xb2\x94\ -\xc4\x8c\x71\x45\x34\x2a\x5f\xfd\xea\x57\x69\xc8\x22\x01\x7e\x57\ -\x05\x7b\xeb\x5d\x0a\x0b\x45\xe6\x8d\x80\x00\xbd\x36\x37\x01\x16\ -\xa4\xce\x11\x09\x04\x97\x69\x02\xf3\x41\x0c\x27\x81\x82\x42\xa7\ -\xd5\x8a\x21\x90\xd1\x06\x35\xd8\xff\x17\x7a\x06\xf3\x80\xf1\xe7\ -\x23\x00\xef\x93\x44\xe6\x1a\x8e\x68\xf2\x4d\xae\xae\x64\xb9\x7c\ -\x7b\x17\x2d\xfc\xa0\xf7\x60\x8c\xd0\x32\x2f\x1c\x5f\xb7\x48\x80\ -\xdf\x65\x79\xe1\x85\x17\x3c\x14\x5b\x8d\xe7\xcf\xe8\x3a\x5b\x4e\ -\x1a\x00\xea\x97\x0e\x98\xa0\x2a\x78\x0e\xaa\xa6\x84\xc1\x9d\x87\ -\x1c\xa3\x44\x52\x00\x72\xf0\x66\x48\xb7\x39\x96\xfa\x59\x48\x03\ -\xc8\x9e\xf0\xfa\x1a\xa0\x79\x34\x2c\xf8\x85\x08\x44\x40\xa8\xc0\ -\x35\x80\xd9\xa0\xf9\xff\x86\x97\xd6\xec\xd1\x03\x07\x5e\xfd\x5d\ -\xc7\xfd\x8b\x04\x40\xa1\x97\x48\x3a\xfd\x4b\x94\x49\xdb\x4b\x5a\ -\x64\x06\x6c\xd7\x91\x6d\x8b\xb6\x56\x03\x0c\x81\xe7\x04\xf9\x32\ -\xb0\xf3\x1d\xaf\x42\x0e\x1f\xad\x08\x0a\x9e\x05\x27\x8e\x49\x44\ -\x0a\x51\x20\x75\x71\xee\x73\xb2\x04\x62\x40\xc8\xcf\xf7\x3d\x3c\ -\xe5\x8c\xc7\xa4\x61\x78\x18\xe8\x79\xd0\x40\x0e\xc0\xd7\x55\xd7\ -\x32\x26\x27\x8a\x13\x46\xa9\x54\x72\x17\x09\xf0\x7b\x28\x86\x61\ -\x38\x33\xd3\xd3\x56\x24\xa5\x16\x4d\xcb\x4c\x3a\x0e\x49\x3f\x7c\ -\x00\xe6\x88\xae\x03\x60\x00\x4a\x38\x12\x08\x5e\xe4\x86\x02\xd0\ -\x30\x48\x6e\x82\xce\xbb\x69\x1c\xa4\x9e\xa4\x5d\x02\x01\xf0\xbf\ -\x20\x95\x2c\x48\x0a\x6d\x50\x17\xec\xf0\xe9\x1e\x81\xf7\xcf\x1d\ -\x40\xd7\xc6\x03\x0a\x1b\x61\x53\xe0\x04\x9a\x96\x25\xd1\xdb\x42\ -\x6c\xb3\x5e\xa2\xc4\xcf\xf4\xf4\xb4\xb7\x48\x80\xdf\x43\x99\x9c\ -\x9c\x74\x55\x55\x75\x94\x48\xa3\x02\x15\x90\xa7\xe4\x8b\xc3\xf7\ -\xda\x7b\x20\x80\x47\xc1\x3b\x8a\x38\xff\x58\x39\x6f\x4e\x03\xc8\ -\xee\xdc\x91\x33\x8c\x64\xb8\x49\x08\xd6\x34\x01\x3e\x71\xa8\xa5\ -\x31\xe1\x28\x80\xb7\xf4\xdc\x65\xcd\x33\x00\x6c\x07\x36\x82\xef\ -\x57\x20\x0d\x04\x5f\xc4\xd0\x95\x46\xad\x5c\x26\x02\xf0\xf1\x17\ -\x49\x11\xd9\xc5\x55\xf8\xaa\x1c\xd3\xa8\x95\x0d\x5d\xa7\x83\xa6\ -\xe8\x5c\x1d\x99\x1f\x34\x45\x9a\x80\x4e\xde\x60\xcd\x89\x1a\x7f\ -\x7c\xe8\x0d\x63\x92\xa3\x4a\x0a\x07\x19\x95\xdb\x7d\x49\x96\x99\ -\x80\x6b\xf4\xa0\x15\xfc\x67\xa8\x4d\xed\x60\xcf\x7f\x03\x39\x85\ -\x7c\xf0\xfc\x45\xdb\x45\x4b\x8b\x52\x3c\x38\x80\x68\xf1\x3b\x51\ -\xf8\x27\x18\x8d\x4a\xd5\xc5\x00\x0c\x5d\xd4\x00\xbf\xaf\x42\x04\ -\x68\xd4\x4a\x55\x35\x9e\x53\xc8\x0f\xa0\x3c\x80\x61\x58\xa8\xb6\ -\xa4\xab\xd0\xf2\xb2\x23\x0a\x2a\xa4\xd7\x83\x88\x7a\xc1\xda\x41\ -\xc6\x9a\x0a\x9c\xcf\x19\x04\xe6\x01\x5d\x41\xf2\xc7\xe5\x90\x05\ -\xcf\x5c\x3c\x03\x25\x70\x4b\xe3\xe8\xde\xe1\x19\x23\x1b\xd8\x5a\ -\x94\xfb\x37\xf9\x3e\x3f\x5a\x98\x22\x12\x09\xa1\xfe\x23\x86\xd1\ -\x30\x50\xcc\xdf\xef\xf9\x3e\x8b\x04\xf0\x50\xf8\x12\xad\x98\xa1\ -\x5b\xba\xa1\x47\x01\x86\x66\xe8\x86\x51\x6f\x34\x1c\x1e\xbf\x03\ -\x6f\xcd\x56\x1c\x85\xbf\x51\x8c\x3b\x76\x3c\xd3\x23\xa0\x5a\x24\ -\xbd\x9e\x2c\x32\x87\x63\x2e\x90\xd9\xa0\x1d\xba\x9e\xe7\x72\x83\ -\x60\xbb\x9e\x48\xae\x9d\xe5\x38\xa4\x14\x3c\x5a\xd9\x2b\xf8\x73\ -\x01\xb6\xe3\xf2\x15\xbf\x44\xb6\x6a\xdd\x50\x1a\x3a\x5f\xf1\xa3\ -\x36\x74\x43\x03\x29\xf1\xeb\xd4\x4b\x44\x00\x5c\x2f\x12\xe0\xf7\ -\x58\x3c\x80\x6f\xc3\x0f\x30\x00\xb9\xad\x37\x8c\x78\xa3\x61\x44\ -\xe0\xc8\x59\xb4\x50\xd4\x01\xa0\xba\x61\x8b\x91\x88\x42\x5e\x9a\ -\x54\xaf\x57\xf2\x90\xce\x16\xdb\x34\x73\xa2\xa7\x6f\x38\xb4\x7f\ -\xbf\x04\x40\x15\x80\xac\x42\x60\x7b\x27\x2a\x45\xb3\x34\x32\x64\ -\xea\x8e\x23\xbb\x96\x9d\x7e\x69\xd7\x8b\x7d\x20\x8a\x09\x16\x59\ -\xb2\x67\x5c\x72\xe8\xe0\xa1\x69\x45\xd3\x66\x22\xd1\xe8\xb4\xa6\ -\x46\x2b\xf8\x7e\x11\xa4\xa0\x25\x5f\x0a\xe6\xfd\x23\x20\x5d\xa4\ -\xa1\xeb\xb1\x46\x43\x8f\x9b\x46\x63\x0c\xda\xc0\x20\x92\x2e\x12\ -\xe0\xf7\x5b\x6c\x94\x86\x65\x34\x1a\x00\xa0\xa7\xd6\xa8\xd7\xe0\ -\xab\x75\x98\x7a\xb5\xb7\x24\x7a\xcb\x21\xe8\x7d\x00\x3f\x0f\x1c\ -\xd2\x02\x95\xc0\xd9\x71\x19\x9b\x9d\x35\xef\x14\xfd\x0e\x07\xea\ -\xdf\xb0\x9b\x2f\xec\x31\x71\x0d\x31\x67\x65\xc7\xbe\x85\xb1\xe0\ -\x7d\x3f\x8c\xe1\x25\x8e\x6f\xa5\xb1\x7e\xa2\xd8\xc2\xe5\x0c\x9e\ -\x4c\xc2\x42\x9c\x04\xd7\x4e\x5b\x0e\x1b\xa9\x56\x6a\x20\x41\x23\ -\x65\xea\xb5\x59\x9a\xba\xfe\xfd\xbf\xef\x77\x91\x00\x0e\x24\xad\ -\x06\x3f\x60\xca\x75\x3a\xde\xee\x59\x8d\x4d\x10\xe1\x84\x2b\xf9\ -\x0e\x1c\x10\x26\xd4\x83\x33\x02\x45\xd6\x6c\xc9\x2f\xb4\xed\x73\ -\x19\xe0\xe6\x79\x70\xb4\xc9\x1b\xd7\x36\xae\x1d\x52\xfd\x1e\x07\ -\xdb\x1f\x0f\xc4\xd1\x81\x5b\x54\xb4\x2e\x53\x70\xdd\x01\x73\xd0\ -\x81\x31\x1b\x1d\xbe\x1e\xd0\xf1\x5c\xbb\x31\x68\x5b\xc6\x53\x3a\ -\x7e\x21\x98\x27\xe3\xf7\x0f\xd9\x22\x01\x68\x9e\xbe\x82\x7d\xfb\ -\x05\xbd\x5e\xee\x98\x29\x8a\x89\x4c\x3a\xcd\x60\x16\xb8\xbd\x17\ -\x39\xf8\xe4\xd5\xa3\x65\x73\xf9\x7e\x1b\xd2\x6e\x02\xd0\xa0\x58\ -\xc2\xdc\x9a\x38\x9b\xee\x51\x0d\xa0\x1c\x48\x3c\x8d\xd7\x7d\x46\ -\x78\xbc\x82\x14\xa1\x6b\x8f\xc6\xeb\x86\x50\xab\xd5\xfb\x6d\xa3\ -\x6e\x40\xfa\x67\x2e\x46\x13\x20\xb0\x8b\xb3\x44\x15\x45\xb9\x2c\ -\x95\x4a\x7d\x8e\xc9\xb1\x9b\x23\xb1\x14\xcb\x65\xb3\xac\xb3\xa3\ -\x9d\x25\x53\x49\xa6\xc8\x52\xb0\x2b\x08\x55\x64\x8a\x22\x33\x59\ -\x92\x39\x41\x04\x30\x44\x64\xa8\x18\x83\xd0\x90\xfa\x38\x79\x14\ -\xd4\x26\x71\xb8\x8e\x60\x92\x28\xa1\x4f\xe1\x9f\x0f\x5e\x21\x0f\ -\x90\xd9\xe4\xd4\x14\x1d\xf5\x4a\xef\x3a\x62\xf5\x5a\x8d\xb5\xe6\ -\x53\xb5\xd3\xa7\x8e\x7d\x1a\xbe\xc6\x63\xd0\x0e\x63\x8b\x26\xe0\ -\xc2\x14\xa7\xf9\xe2\x05\xc7\xb5\xea\x05\xa6\x08\x26\xd3\x5a\x93\ -\x2c\x11\x57\x59\x32\x1e\x61\x2e\x07\xcb\x86\xc4\x3b\xac\xf9\xd2\ -\x10\x02\x1e\x1f\xb2\x5d\x56\xaf\x56\xe9\x94\x6e\x4e\x0a\x55\xd5\ -\x98\x16\x41\x55\x1d\x10\xc1\xf4\x97\x78\xdb\x3c\x37\x90\xcd\x64\ -\x59\x52\x56\xb9\x88\x48\xb8\x8f\x45\x23\x2c\x99\x4c\x32\xdb\x32\ -\x59\x4c\x93\x99\x67\xd5\x98\x5e\x19\x67\x42\x56\x25\x8d\x64\x00\ -\xfc\x0b\x28\xfd\x8b\x04\xf0\x67\xfb\x98\xe0\xef\x05\x67\xaa\xe4\ -\xb2\x8e\x7c\x9c\xf5\xf5\x76\xb2\x48\x44\xf3\x4f\x0b\xf7\x00\xaa\ -\xc7\x64\x45\x63\xc4\x80\xa1\x33\x43\xec\xec\xe9\x61\x56\x2e\x57\ -\x29\xac\x03\x51\xe6\x12\x45\x92\xc4\x13\x40\x5c\x7b\x6c\xdc\xb4\ -\x81\xdd\x7e\xf3\x36\xb6\x62\xe5\x4a\x96\x81\x46\xc1\x02\x0f\xfa\ -\x79\xf8\x5c\x99\xbd\xf4\xd2\x4b\x6c\x68\xe0\x08\x3f\x5e\xe8\x0f\ -\x58\x16\x09\xc0\x7c\x93\x8c\x82\x0b\x87\x99\x86\xc1\xa0\x86\x01\ -\xb8\x85\x4e\x95\x03\x4b\xff\x8b\xa8\x32\x8b\xc5\x23\x00\x59\x66\ -\xc3\xcc\x64\x7a\xad\xc4\xf4\x7a\x15\xe3\x2d\x68\x08\x83\x19\xa6\ -\x0d\x32\xd8\x5c\x76\x61\x56\xa0\x45\xe2\xcc\x36\x57\xb2\x7c\x2e\ -\xcd\xda\x5a\x72\x34\x33\xc8\x82\x42\xe6\x22\x1a\x8d\xb2\x54\x2a\ -\x89\x96\xbe\x53\xbc\xd8\x4d\x29\x13\x2f\x56\x13\x80\x32\x0b\x15\ -\xfe\x12\xb6\x78\x17\x1d\xdb\x61\x55\xd8\x63\xcc\xc2\xb1\x7a\xbd\ -\x4e\x0f\x49\xfa\xc3\x93\xf8\x00\x52\x02\xa8\x79\x96\x48\x24\x7d\ -\xf6\xb8\x18\x47\x95\x7b\xf3\x68\x1d\x22\x02\xb7\xf3\xc7\x8e\x1d\ -\x65\x4f\x3d\xf9\x24\x1b\x1e\x1a\xa2\xfb\xf0\x8e\x25\x96\xcb\xe5\ -\x58\x6f\x6f\x2f\x6b\x6d\x6d\x63\x9a\xc6\x35\xcd\xa2\x06\xb8\xf0\ -\x85\xa3\x5b\x9d\x99\x29\x1c\xcf\x64\x52\x27\x70\x73\x25\xd9\x6f\ -\x5d\x27\x89\xb6\xfc\x0d\xa1\xaf\x95\x4b\xca\xfb\xf7\xf5\xf7\xb3\ -\x8d\xd5\x0a\x27\xc7\xcc\x74\x81\x59\x90\x62\x90\x87\xee\xc9\x21\ -\x24\x0d\xc0\x25\x1c\x2b\x7a\xe9\xa5\x10\x6c\x7a\x7a\x8a\xe1\xad\ -\x22\xd4\x1f\x98\x1d\x4e\x02\x7a\xa5\x2b\x1c\x50\xbf\x5f\xa0\x7e\ -\x6f\x91\x00\x17\xb6\x88\x28\xd9\x7c\x3e\x7b\x29\x24\x77\x33\x81\ -\x42\x10\x14\x8a\x45\x76\xf2\xd4\x49\x36\x3e\x31\xce\x34\x45\x85\ -\xed\x97\xe1\x0f\x44\x09\x2c\x80\x86\x9a\xca\xb0\x65\xcb\x96\xb3\ -\x88\x16\x61\x43\x24\xdd\x86\xc1\xd5\xb8\x16\x89\xe0\x79\x86\x65\ -\x73\x39\x00\xde\xca\x70\x72\x17\xeb\xea\xea\x66\x3d\x7d\xbd\xfc\ -\x3b\xb8\x73\x68\x99\x20\xc4\x34\x3b\x75\xea\x24\xea\x29\x86\x83\ -\x21\xa9\x9f\xfc\x8d\x22\xf0\xaf\x51\x34\xb9\x48\x80\x0b\x4b\xdc\ -\x1c\x9c\xb6\xbb\xeb\x86\xa1\x91\xdd\x4e\x40\x6a\xdb\xda\x5a\x59\ -\x4f\x77\x37\xcb\x64\xd2\x00\x26\xc2\x14\x59\xe1\x12\x1b\xc7\xf3\ -\x78\x22\x01\xfb\x9e\xe4\x5e\x7f\x06\x21\x63\x0f\xd4\x38\xa4\x9f\ -\x4c\x01\xb7\xed\xb9\x5c\x0b\xeb\xee\xe9\x66\xf9\x7c\x0b\x85\x84\ -\xe4\x58\x72\x82\x0c\x0f\x0f\x71\xb3\x52\x2a\x96\xd8\xc0\xe9\x01\ -\xf6\xf2\x9e\x3d\x0c\xfb\xfc\xd8\xc8\xd9\x11\x3a\xe0\x59\x3f\x74\ -\xe8\xc8\x37\x41\xc2\x51\x00\xa0\x2f\x46\x01\x17\xae\xb8\xa8\x75\ -\x18\xe0\xa3\x90\xbe\x55\x24\x89\xe5\x72\x85\x8d\x8c\x9c\x05\x58\ -\x0d\x96\x81\xb4\xc7\x62\x31\x92\x4e\x4e\x84\x54\x2a\xcd\xd5\xb6\ -\x9e\xd2\x19\x1d\xea\x75\xfa\xcc\x69\x36\x3d\x39\xcd\xea\xba\x4e\ -\xef\x34\x04\x79\x12\xec\xae\xbb\xee\x66\x1d\x9d\x5d\x20\x49\x82\ -\x59\xb6\x05\x73\xd2\x60\x0d\x54\xc3\x30\xb8\xa4\x07\x1b\x44\x0c\ -\xd3\x64\xb5\x7a\x8d\x21\xff\x8f\x7b\x4f\x01\xe9\x52\xf8\xb9\xea\ -\xc5\xea\x4f\x49\x17\x6f\x14\xe8\x31\xd3\xb4\xf4\x74\x2a\xb9\x01\ -\xa0\xe4\x55\x55\x81\xfa\xce\xd3\x21\xd1\xac\xaf\xaf\x8f\x75\x75\ -\x76\xd2\x5b\x42\x49\xa2\xe9\xbd\x85\xdc\x96\xc7\xa2\x31\x36\x34\ -\x38\xc8\x0e\x42\x82\x87\x86\xce\x60\xeb\xd9\x10\x1b\x06\x69\x1a\ -\xba\xce\x43\xbe\xfe\xfe\x25\x2c\x9d\xc9\xf0\x78\x3f\x97\xcb\xa3\ -\x72\x93\xc0\xbf\x23\x0e\x62\x10\x19\xc6\xc7\xc7\xd8\xc4\xc4\x24\ -\xab\x81\x38\x95\x6a\x55\x44\x44\xb0\x1e\xe4\x7b\x0e\x5a\x60\x08\ -\x00\x34\x16\x35\xc0\x85\x2b\x7c\x8b\x97\xc7\x58\x0d\x2d\xa5\x65\ -\x11\x05\xcc\x02\xa0\x49\xa8\x74\x99\x3b\x67\xa9\x64\x82\x89\x92\ -\x14\x3a\x2f\x80\x91\x2d\xe7\xf3\x05\x9a\x46\x9a\x01\x63\xd2\x69\ -\x0e\xf4\xf4\xd4\x14\xb7\xef\x8a\x22\x73\x73\x11\x85\xef\x50\x6f\ -\xd4\x59\xb1\x58\x40\x2d\xb2\xc2\xcc\x0c\x34\xcc\x30\x6b\xd4\xeb\ -\x78\x16\xe1\x63\x74\xc3\x20\x52\xc4\x00\x80\x72\x81\x35\xc0\xa2\ -\x0f\x00\xe7\xad\x3d\x9f\xcf\xdd\x8d\x39\xc1\xcd\xc1\xeb\x62\xab\ -\xb5\x3a\x1b\x1d\x1b\x23\x60\xb8\xcd\x4e\x67\xd2\x64\xff\x49\xfd\ -\xf3\x9a\x4c\xa6\xa0\xe6\x3b\x61\xe3\x35\x98\x02\x8b\xa9\xbe\xf3\ -\xc7\xa5\x1c\x15\x44\xe0\x3e\x03\x7d\x5d\xb5\x56\xa1\xbc\x02\x4f\ -\x05\x67\xa0\x15\x34\x7c\xc6\x84\xf9\x38\x7b\x76\x8c\x7b\xff\xc1\ -\x4e\xe4\x58\x2c\xf1\xa0\xeb\x8e\x8f\x90\x49\x5a\xf4\x01\x2e\x6c\ -\xfe\x22\x01\xa0\xb6\x90\x64\x6b\xaa\x0a\xa0\x63\xac\xab\xa3\x83\ -\xf5\xf4\xf4\xb0\x8e\x8e\x36\x9e\xca\x8d\xc6\x22\x04\x1c\x49\x2b\ -\x80\x8a\x73\x35\xce\x01\xcd\xe6\x11\x06\x4e\xb3\x0a\x72\x07\x63\ -\xe3\xe3\x70\xee\x4e\xf3\x71\x57\x5d\x7d\x35\xeb\x86\x13\x99\xcd\ -\xe6\x78\x7c\x6f\x18\x3a\xad\x40\xe2\x4e\xa0\x69\x9a\xdc\x29\xc4\ -\xb1\x01\xac\xc8\xf3\x0d\x35\x8a\x16\x6a\x27\x4e\x9c\x7a\x19\x3e\ -\xc2\x24\x00\x30\x17\x7d\x80\x0b\x57\x04\x48\x5f\x42\x55\xd5\x0e\ -\xb4\x97\x02\x2b\x41\x12\x25\x2e\x7f\xdc\x81\x83\x83\x56\xad\x54\ -\xc8\x31\x44\x5b\x25\x10\xb9\xf3\xa6\xa3\x3d\x0d\x4f\xfe\x85\x17\ -\x76\x31\xbc\xc2\x8e\xed\xd9\xf3\x32\xdb\xfb\xca\x5e\x76\xec\xe8\ -\x31\x6e\x1e\xb6\x6d\xdf\x4e\x04\x20\xe0\x01\x70\x95\xdb\x7c\xcf\ -\xf5\xf8\x5c\x80\x80\x4a\x79\x86\x09\x84\x98\x67\x11\x01\x20\x07\ -\x41\xa9\x61\x05\x24\x98\x40\x7b\xd2\x85\x1a\xe0\x93\x8a\x17\xac\ -\x2c\x66\x02\xa7\x00\xf0\x53\x08\xe1\x76\x53\x36\xcf\x63\x2e\x8b\ -\xc4\xa2\x90\xfe\x0e\xb6\x7c\xf9\x32\xb6\x7a\xf5\x2a\xb6\x6a\xc5\ -\x0a\xb6\x64\xe9\x12\x24\x80\xe0\x14\x76\x75\xf1\x10\xf0\x55\xc4\ -\xf0\x27\x8e\x1f\xa3\x93\xca\x69\xeb\x39\xab\x80\x20\x50\xf5\xfc\ -\xfa\xd0\xc1\x83\x98\xed\x9b\x24\x15\x4f\x4e\x20\x77\x06\x1d\xd7\ -\xa1\xfc\x02\x07\x7d\x74\x74\x84\x9c\x3f\xd2\x0e\x34\x86\xb4\x82\ -\x00\x4d\xf0\x5e\x90\xb0\x17\x00\xc4\x16\x7d\x80\x0b\xab\x01\x34\ -\x80\x9f\x40\xed\x82\xa4\xf2\xd9\xbf\x52\xa9\x88\xb8\x5d\x82\xe4\ -\x9a\xac\x25\x97\x23\xb3\xc0\x41\x8f\xf3\x3c\x01\xa9\xff\xe6\xd4\ -\x6f\x2a\x99\xe2\x8e\x62\x0e\xaa\x3e\x8a\x70\x11\xaf\x75\x67\xab\ -\x56\xad\xe4\x24\xb1\x4c\xd3\x77\x1a\x5d\x1a\x43\xb1\x3e\xa5\x8f\ -\xb9\x09\xd1\x75\x93\x8d\x9e\x1d\xe5\xf7\x32\x9e\x81\x08\x94\x68\ -\xb2\xfc\x24\x90\xb7\x38\x17\x70\x61\x89\xdb\x9e\xcd\xa6\x3f\x8c\ -\x38\xbe\x87\xf7\x04\xab\x79\xb8\x74\xca\x00\x36\x8a\xcc\x5f\x8a\ -\x40\x86\xad\x6e\x83\x66\xe8\x44\x88\xd8\xcf\xb6\x6d\xdb\xce\x6e\ -\xbd\xed\x36\xc4\xfd\x77\xb2\x77\xbe\xf3\x1d\xec\x3d\xef\x7d\x2f\ -\x7b\xf7\xbb\xdf\xcd\xde\xf9\x47\xf7\xb2\x5b\x6e\xbd\x95\xad\x5e\ -\xb3\x96\xf2\x06\xe4\x0c\x52\x0d\x56\x22\x53\xe6\x8f\x34\x00\x25\ -\x80\xb8\xb6\x30\x4c\x83\x48\xe5\x88\xa2\xf4\x0d\x10\x66\xf0\xc2\ -\x3a\x81\x8b\x04\x10\xa8\xda\xb6\xa3\x05\x1d\xa2\x24\x92\xa4\x43\ -\xf2\xb3\xac\x25\xdf\xc2\x53\xbf\x91\x68\x84\x67\xf9\x18\x0b\x36\ -\x8b\x62\x4c\x22\x4e\xd1\x01\xb7\xe9\x53\xc8\xf5\xef\xdb\xfb\x32\ -\xc3\x6b\x61\x68\x1d\x00\x49\x73\x33\xe5\x8b\xfe\x11\x64\x00\x8f\ -\x1f\x3f\xca\x0e\xec\xdf\x47\x2f\x8c\x64\x87\x0f\x1d\xc4\x42\x90\ -\x43\xec\xd4\xc9\x13\x6c\x6a\x72\x92\xcc\x06\x99\x08\x63\x04\x05\ -\xdf\x5d\xb9\xb0\xa9\xe0\x45\x02\xd8\xa8\x93\x90\xbc\xff\x81\x4c\ -\xdf\x8c\xe0\x9f\xf8\xa1\xd7\x1b\xdc\x43\x9f\x98\x98\x80\xcd\x1e\ -\x85\xb4\x9e\xe5\x5e\xfe\x38\x2a\x26\x77\xb8\x1d\xdf\xb3\x7b\x37\ -\xfb\xd5\xe3\x8f\xb1\x47\x1f\x79\x84\x3d\xf2\xf0\x23\xec\xf1\x5f\ -\x3d\xc1\x76\xed\xda\xc5\xce\x9c\x3e\xc3\x3d\x7d\x81\xf1\x59\x3f\ -\x4e\x86\x6c\x3a\xcb\x7a\x91\x54\x5a\xb6\x7c\x39\xc3\x1b\xbf\x79\ -\x42\x48\x10\x25\x22\x0b\x39\x21\x30\x37\xc3\x31\x98\x8e\xb7\xc1\ -\x14\x90\x16\x8a\x5e\xc0\x69\xe1\xc5\x15\x41\x00\x7f\xb2\x58\x2c\ -\xed\xc2\xc9\xdb\xc8\xc2\xb9\xf7\xa8\x1a\x1c\xb7\x7c\x96\x2d\x5d\ -\xb2\x94\xf5\xf7\xf5\xd2\xd2\x30\x3e\x05\x2c\x8b\x32\x8b\xf1\x30\ -\x30\x46\x51\x00\x4f\xe8\xcc\x4c\xcf\xb0\x3a\x72\x06\xb6\x7f\xc6\ -\x20\xa5\x75\xf7\xbe\xbc\x87\xe1\x00\x67\x7a\x77\x41\xd3\xf9\x73\ -\x5c\x0a\xf5\x78\xaa\xb8\x56\xab\xb2\x32\xc2\x3f\xd7\x75\x68\xce\ -\x01\xcf\x13\x44\x16\x0a\x0f\x69\xe5\xf0\x56\x10\xa0\x05\x00\xa8\ -\x17\x16\xba\xc5\xe9\x60\x1d\x52\x78\xba\x50\x28\x7d\xbf\xaf\xaf\ -\x7b\x13\x44\x6f\xa9\x28\x48\x48\xcf\x56\xf8\x6c\x60\xb9\x52\xa6\ -\xd8\x9e\xcf\xd9\x27\xb9\x93\x68\x92\x64\x73\x87\xcf\x86\xf4\x62\ -\x2c\x27\x46\x26\x93\xe5\x69\xe2\x0e\x72\x00\x6d\x8b\x00\x27\x39\ -\x26\x72\x10\xc8\xd4\xfa\xbb\x86\x5c\xae\x30\xa3\xd1\x38\x7c\x84\ -\x0c\xc8\xc0\xc8\x41\x34\xe1\x28\xfe\x7a\x62\x62\x6a\x0c\x0f\x8d\ -\x8b\xd3\x96\x5e\xdc\x45\x85\x04\xf7\x41\x62\x77\xac\x5d\xb3\xea\ -\x93\x5d\x5d\x9d\x9b\xfb\x7a\x7b\xe0\x03\xe4\x98\xa2\xa8\xcd\xe5\ -\xe1\x92\xc4\xa5\x3f\x06\xe0\x68\xda\x97\x92\xc7\x16\x97\x5e\x1d\ -\x24\xa9\x30\x6c\xe7\x25\xa7\x8e\xe7\xf7\xf3\xf9\x3c\xdb\xb8\x71\ -\x23\x2b\xe2\x7e\xa6\x30\xc3\xfb\x67\x67\xcb\x20\x45\x85\x47\x16\ -\xc1\xf9\xc2\xc9\x24\xd7\x2e\x7b\x5f\x7e\x79\xef\xb7\x6a\xb5\xda\ -\x61\xf4\x1f\x23\x93\x84\x6a\x2f\x12\xe0\xc2\x13\x58\x03\x09\x7a\ -\x10\xde\x6d\x81\xc3\xf7\xa7\xf0\x09\xde\x12\x84\x7d\x04\xbc\xa6\ -\xaa\x3c\x66\x0f\x56\x00\x79\x5e\xb0\x02\x68\xae\x52\x99\x7f\xb0\ -\xc4\xfc\x16\x26\x27\xd0\x0a\xf4\x66\x90\x9f\x63\x17\xf0\x03\xb8\ -\xde\xef\x27\x80\xea\xa8\xf6\x62\x26\xf0\x0f\x53\xe8\x40\xc7\x2a\ -\x80\x28\x01\xac\x51\x90\xa1\x15\x44\x58\x1a\x80\x89\x7b\x3f\x9c\ -\x13\x08\x3c\x6e\xef\x75\x9d\xa7\x78\xa9\xe5\x7d\x96\x65\x71\x80\ -\x51\xf8\x78\x90\x89\x81\x48\x7c\x75\x10\x0a\x1f\xa3\x37\xa7\x8e\ -\xe9\xf0\x87\x6f\x57\x2a\x95\xef\x1b\x86\xb1\x1b\x3f\x77\xd4\x9f\ -\x01\xe4\x1f\x5e\x24\xc0\x1f\x76\x99\x78\x1d\xb5\x4c\xa0\x00\xf0\ -\x56\x48\xfd\x52\x0a\x01\x83\x8a\xbe\xf0\x59\x7f\x61\x09\x0f\x8f\ -\x21\x6d\x41\x95\x7c\x07\x1a\x47\xe4\xe0\x15\x80\x57\x21\xf9\x5f\ -\x87\xca\xff\x39\xee\x5f\x01\x00\x53\xf3\x53\xbf\x8b\x61\xe0\x1f\ -\xb6\x58\xb4\x31\x03\xe0\xbc\x04\x09\xfd\x2a\x00\x7b\x6a\xbe\x9a\ -\x07\xc0\x01\xc8\xd4\x92\xa4\x53\xa5\xfb\xe0\x3a\x18\x13\x6c\x42\ -\xe4\x15\x80\xcf\x60\x4a\xf8\x2b\xd0\x00\x04\xfe\x5e\x3c\x9a\x7e\ -\x63\xa9\xfc\x45\x0d\x10\x14\x37\xd0\x04\x50\xdb\xa3\x50\xe1\xf9\ -\xd6\x96\x7c\x17\x3a\x39\xa2\x01\xb0\x61\xf3\x10\x98\x88\xa0\x06\ -\x24\xc0\x73\x5a\x4b\x48\xe6\x65\x18\x2f\x7a\xf8\x2f\x00\xff\x09\ -\x90\xe1\x30\x00\x28\xa1\x3a\x6c\x81\x14\x81\x2d\xcc\xa2\x00\xd8\ -\x4e\x48\xf6\x15\x1f\xfe\xe0\x7f\xf8\xd3\x2b\xaf\xdc\x7a\xa3\xa6\ -\x45\x2c\x54\x86\x2a\xa0\x5f\x94\x51\x15\xa5\xb9\x33\x28\x05\xaf\ -\x3e\x99\x4a\xbb\xb0\xfb\x2e\x08\xe0\xf9\x26\x40\x3e\x8b\xc9\xff\ -\x3b\xee\xb8\xe3\x2b\xc7\x8f\x1f\x7f\x1a\x92\x7f\x1c\x00\x54\x02\ -\x7b\xbf\x48\x80\x8b\x87\x04\x5b\xff\xf4\x63\x1f\xfd\xf8\xd5\x57\ -\x5f\x75\x63\xc2\x5f\x17\x10\x8b\x27\x28\x6d\x8c\x8a\x7b\xb4\x09\ -\xd4\x48\x34\x16\xde\xe8\xc1\x90\xe1\x1d\xbd\xfd\xf6\xdb\xbf\x82\ -\x63\x6a\x09\x7c\x0a\xf3\xaa\xe7\x03\x7f\xd1\x07\x78\xe3\xfb\x04\ -\xbb\xbf\xf6\x4f\xf7\xff\xd7\xbd\xaf\xec\x7b\x9a\xb2\x7f\xba\x6e\ -\xf0\xdd\x43\xe1\x12\xd8\x7b\x38\x78\x3c\xf6\x3f\x7a\xf4\xe8\xd8\ -\xad\xb7\xde\xba\x40\xc0\x5f\x2c\xa4\x09\x7a\xa1\xda\xef\x58\xbd\ -\x7a\xf5\x17\x76\xec\xd8\xf1\xcf\x78\x3f\xe1\xcf\xee\xbc\xf3\xce\ -\x27\xde\x75\xef\xbd\x3b\xdf\xf7\xbe\xf7\xed\xc2\xdb\x3c\x9e\x02\ -\xe0\x0f\xe3\x1d\xc6\x3f\xda\xb2\x65\xcb\x7f\x81\xed\xff\x28\xed\ -\x3e\x06\x00\xa9\x8b\x57\x48\x16\x4d\xc0\xfc\x94\x77\x12\xce\x5d\ -\x0e\x4e\x1d\x81\xaa\xc1\xc9\x53\x50\x65\x54\xc1\x3f\xd9\xcb\x42\ -\x6b\xe1\xb6\x8e\xeb\x22\x22\x87\x92\xbf\xd6\xdf\x5d\x24\xc0\xc2\ -\x28\x62\xa8\x0a\xe1\x1a\x02\x99\x5a\x0f\xd5\xa1\x96\xd7\x05\x5e\ -\xfe\x7f\x9f\x06\xab\xee\xbc\x6d\x40\xb4\x00\x00\x00\x00\x49\x45\ -\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x09\x41\ -\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\x09\x08\x49\x44\x41\x54\x78\x5e\xd5\x9a\x6b\x6c\x1c\xd5\ -\x15\xc7\x7f\x3b\x33\xbb\xb3\xb6\x97\xf5\xc6\xce\x26\x4e\x70\x70\ -\x08\x50\x8a\x1a\xb9\x14\xa9\x20\x11\xc1\xb7\x82\xa0\xea\x87\x18\ -\x54\xa9\xbc\x52\x08\x50\x42\x78\x44\x45\xa5\xd0\x4a\x48\x40\x89\ -\x54\xf5\x81\x69\x4b\x9b\xb6\x42\x3c\xd2\xd2\x96\x0a\x48\x2a\x68\ -\x28\xaf\x0f\xd0\x97\x55\xf1\x28\x25\xa9\x88\x49\x6c\x12\x43\xec\ -\x5d\xdb\xd9\xe7\xcc\xec\xce\xe3\xf6\x72\xc5\x28\xb6\x46\xeb\xd1\ -\xae\x12\xa1\x1e\xf9\xe8\x9e\x7b\x35\x9a\xfd\xfd\xef\x39\xe7\xde\ -\x5d\xc9\x09\x21\x04\x9f\x96\x25\xbe\x9f\x30\x59\xc7\x56\x6a\x5c\ -\x8c\x4d\x1e\x93\x14\x1a\xdd\xd2\x53\x78\xbc\x49\x9d\x5d\xfc\x93\ -\x9d\xe2\x49\xe1\xd2\xc2\xa2\x02\x80\x44\x22\x61\x00\x09\x4e\x94\ -\x5d\x43\x8e\x61\xee\x25\xc9\xd7\xd0\xc8\x19\xa6\xc1\xd0\xb2\x21\ -\x4e\xcf\x9f\x0e\x0d\x78\xbf\xfa\x3e\x1f\xd8\x1f\xe0\x95\x3d\x10\ -\x94\x49\xf3\x22\x0e\xdf\x14\xb7\x88\xa9\x38\x01\x21\xfc\x57\x80\ -\x53\x4e\x88\x88\x4d\x7c\x91\xcf\xb3\x91\x2e\xba\xfa\x97\xf5\xb3\ -\xf9\xb3\x9b\xb9\x70\xe5\x85\x18\x9a\x71\xec\xd3\x02\xf0\xf0\x78\ -\x6d\xee\x35\x1e\x79\xe3\x11\xe6\x6a\x73\xe0\x50\xa5\xca\xd5\xe2\ -\x1e\xb1\x3b\x4e\x40\x12\xb8\x59\xae\x8f\x36\x1a\x8d\x70\x35\xfc\ -\x0b\x2d\x66\x3d\x92\x52\x84\x10\xfc\x71\xe2\x29\x36\xbd\xb2\x09\ -\x3f\xed\x73\xc9\xd0\x25\x8c\x9c\x31\x82\xa9\x9b\x08\x04\xae\xe7\ -\x82\x20\x14\x41\xd2\x48\x22\x59\x68\xf8\x0d\x9e\x39\xf8\x0c\x7b\ -\xf6\xef\x01\x0b\x87\x14\xd7\x8a\x9b\xc4\xef\xe3\x04\x6c\x75\x9c\ -\xc6\x83\xb3\x73\xb3\x0a\x52\xae\x49\x47\x8d\xd0\x2a\x3e\x36\x12\ -\x8d\xd9\x33\xb9\x87\xcd\x7f\xbb\x0e\xc7\x70\xb8\xe0\x8c\x0b\xd8\ -\x78\xfa\x46\x00\x05\x5f\x2b\x95\x38\x3b\xf3\x05\xba\x8d\x2e\x00\ -\x6c\xcf\xe6\xdf\xf5\xb7\xc8\xe6\x72\xf8\x24\x20\x80\x67\x0f\x3e\ -\xcb\xeb\xfb\x5f\x07\x0f\x9f\x1c\xd7\x73\x15\x8f\x0b\x69\x06\x2d\ -\x4d\x28\x88\x25\x04\x44\x20\x17\x8d\x00\x2a\x86\x19\x7b\x9a\x9b\ -\xff\xbe\x05\xc7\x74\xf8\xcc\xe0\x67\xd8\xb0\x66\x03\x45\xb7\x88\ -\xa1\x41\x2a\x21\x98\xad\x4e\xb3\xe1\x8c\x5b\xe9\xef\xca\x03\x30\ -\xe7\x14\x79\xe5\x8d\x3f\x91\xec\x75\xf1\x82\x04\x0d\x01\x1b\x06\ -\x37\x30\x63\xcf\xb0\x7f\x66\xbf\xce\x1c\x0f\x71\x0d\xcf\x03\x45\ -\x63\x89\xb4\x2f\x06\x8e\xce\xe3\xc0\xd5\x9a\xef\xfb\xdc\xf9\xe6\ -\x9d\x94\x29\x83\x09\xc3\xab\x87\x29\xfa\x45\x4c\x01\x69\xc0\x4f\ -\x08\x2a\xb5\x69\x84\x08\x08\x4d\x04\x01\x55\x6b\x9a\xbe\x40\xa3\ -\x29\x12\xd8\x3e\xd8\x01\x0c\x0f\x0e\xb3\x7f\x7e\x3f\x98\x64\xf9\ -\x1c\xdb\x25\xc3\x37\x8c\x96\xfc\x10\xd9\x7d\xe9\xad\x80\xc3\x31\ -\x22\xc6\x72\x2c\x5e\x9d\x7c\x15\x0c\xe8\x5b\xd5\x47\x33\x68\x52\ -\x96\x02\x7a\x94\x40\xd0\x35\x81\x65\xcf\x12\x04\x3e\xa1\xc9\x98\ -\x86\x5c\xf3\x45\x12\x17\x95\x01\xac\x00\x39\x57\xef\x60\xfe\xc8\ -\x3c\xd8\x7c\x95\x2f\x71\x47\x2b\x01\x02\x16\x42\x13\x85\x27\x36\ -\x0b\x6a\x27\x9f\x78\xef\x71\xea\x6e\x1d\x06\x20\xa5\xa5\x28\x7a\ -\x05\x7a\x01\x4d\x40\x32\x21\x3d\x10\x38\xd6\xfc\xe2\x0c\x88\x40\ -\xad\x05\x81\x8e\x27\xa4\x80\x00\x95\x05\x4b\x40\xca\x48\x41\x12\ -\x30\xc8\x32\xc2\xb7\x0c\x5a\x5b\x4b\x78\x15\xc5\x8f\x78\x41\xc0\ -\x73\x1f\x3e\x07\x59\x94\x4d\x07\xd3\x54\xfe\x35\x4b\xbf\xdf\x4d\ -\x56\x4b\xd2\xa5\x43\x97\x06\xd5\x42\x93\x05\x87\x89\x8a\x0f\x4d\ -\x14\xa9\x5a\x65\x9c\x00\x2c\x1f\x2a\xbe\x4b\x39\x69\x31\xbf\xc6\ -\x03\x13\xe8\x05\xe6\xb8\x68\x09\x01\x11\xf8\xb6\xb2\x80\x10\xb8\ -\xae\xcb\x78\x73\x1c\x04\x90\x01\x66\xe0\xa6\x65\xb7\x70\xfb\x45\ -\xdb\xd4\xbb\x95\xa3\x9c\x15\x27\xad\x26\x34\x19\xb3\x6b\xcb\x7f\ -\x00\x10\xa1\x07\xf0\x93\x97\x46\x79\xb8\x34\x8a\x9b\x05\x1a\x80\ -\xc3\xca\xd6\x02\x16\xd6\x3d\x40\x9b\x59\x00\x68\x38\x0e\x78\xc0\ -\x32\xc0\x07\x5c\xe8\x4d\xe7\x38\xa5\x6f\x88\xa5\x4c\x4b\xe8\xac\ -\xce\x45\x9f\xc9\x1a\x39\x74\x1b\x08\x00\x13\x48\x62\x2e\xd5\xc4\ -\xad\xe0\xe3\x05\x01\x42\xc6\x41\x10\x60\xe8\x06\x78\x80\x00\x34\ -\x3a\xb0\x28\x17\x06\x20\x80\x2e\x92\x4b\x37\x31\x40\xa7\x59\x00\ -\x34\x4d\x43\x47\x07\x41\xd8\x78\x94\xbd\x12\x87\xe6\x3f\x88\x94\ -\xd0\x40\xef\xa0\xda\x79\x80\x40\xf8\xcc\x94\xa7\x10\x70\xcc\x05\ -\x54\xbc\x12\x24\x81\x26\x90\x02\x7a\xd0\x5a\x97\x50\x14\x3e\x0e\ -\x7a\x91\x38\x84\x50\x02\x72\xd9\x1c\x1f\xe9\x1f\x81\x0b\xf4\xc1\ -\x8e\x83\xa3\x3c\xf1\xc4\x28\x19\x1d\x32\x86\x74\x0d\xec\x59\x78\ -\xe1\xd6\x49\x06\xb2\x43\x00\x14\xab\x53\x6c\xfc\xc5\x5a\x4e\x5a\ -\x01\x75\x1f\xaa\xd2\x6b\xd2\xed\x24\x34\x4f\x05\x5c\x40\x07\x6a\ -\x1c\x8e\x3b\x85\xa2\x42\xda\x10\xa4\xe9\x3a\xe7\x24\xcf\x61\x9f\ -\xbf\x0f\x5c\x20\x01\x62\x1d\x74\x9b\xb0\x2c\x05\x79\x13\xfa\x75\ -\x28\xbc\x43\xc4\xf2\xa7\xc0\xda\xb3\xe1\xa8\x0f\xc5\xa6\xf4\x06\ -\x04\x4d\x68\xda\x80\x0f\x0a\x62\x82\xbf\xb6\x16\x10\x39\x79\x96\ -\x86\x97\xf3\x88\x68\x43\xd7\xb9\xa2\xe7\x0a\x9e\xae\x3c\x8d\x6d\ -\xd8\xe0\x81\x0d\x58\x09\xe8\x02\x6a\x09\x48\x26\xc1\x95\x4e\x62\ -\x71\xa1\x37\x0d\x38\xea\x41\xd9\x85\x5a\x13\x2c\x17\x4a\x36\x08\ -\x17\x30\x80\x00\x9b\x1d\xfc\x4e\x8b\xbd\x07\xc2\x38\x0e\x3e\x14\ -\x1a\x8a\xd3\x34\xba\xba\xba\x58\xbd\x62\x35\xe7\x7a\xe7\x2a\x28\ -\x74\xc0\x87\x9a\x0d\x15\x47\x01\x71\x54\xba\xa5\x81\x08\x05\xa0\ -\x62\xb5\x56\xb4\x60\xde\x86\xd2\xc7\xa3\xf4\x6a\x73\x81\xd0\x22\ -\xef\x50\x67\x7a\xa9\x53\x28\x84\x8c\x83\x6f\x99\x85\x54\x2a\xc5\ -\xf2\xe5\xcb\xd9\x92\xd9\xc2\x98\x18\xc3\xd1\x1d\x48\x82\x53\x87\ -\x92\x0b\x98\xe0\x27\x21\x11\x80\x60\xb1\x80\x6a\x00\x56\x1d\xea\ -\xae\x7a\x96\x59\x07\x44\x1a\x30\x01\x07\x8b\x9f\xf3\x33\xa0\x1c\ -\xdf\xc4\xd0\x2e\x7c\xb8\xa6\x9a\x38\x9b\xcd\x72\xd6\x9a\xb3\xb8\ -\xf2\xed\x2b\x79\x74\xf5\xa3\x04\x92\x96\x2e\xb0\xeb\xe0\xfb\xe0\ -\x6a\x60\x0a\xf8\xf5\xde\x51\x72\x66\x8e\x04\x50\x6e\x96\xa8\x08\ -\x70\x6b\x50\x6a\xa8\x46\x46\x9c\x04\x68\x0a\xc6\x65\x17\xbf\x62\ -\x1f\x7b\x01\xcb\x88\x3d\x73\x8f\x01\xb5\x80\x8f\xcf\x42\x3e\x9f\ -\xe7\xb2\xfc\x65\x78\x87\x3d\x9e\x5c\xfb\x24\xae\xe9\x82\x01\x92\ -\x93\x59\x1f\x0c\x17\x7e\xf4\xde\x28\xba\x06\x08\x08\x80\x66\x0a\ -\x1a\x55\x10\x06\x10\xee\xbc\x49\xc0\x6f\xf9\x0d\x8f\xb1\x0b\x38\ -\x0c\x38\xed\x64\xa0\x6d\xf8\xf0\x2e\xe8\xed\xed\xe5\xcc\x33\xcf\ -\xe4\x72\xff\x72\xd2\x87\xd3\xec\x5c\xbb\x13\x2b\x6b\x41\x06\x28\ -\x82\x67\x42\xb5\x06\xe8\x61\x83\xaa\x18\xfa\x80\x24\xd0\x03\x54\ -\x70\x25\xf8\x53\xd2\xff\x00\x8c\x03\x25\x21\x84\xaf\xb5\x91\x81\ -\xb6\xe1\xc3\x79\x32\x99\x64\x60\x60\x80\xf5\xeb\xd7\x33\x32\x30\ -\xc2\x3d\x7b\xef\x61\xf8\xd0\x30\x66\xc2\x84\x21\x20\x87\x1a\x15\ -\xe8\x72\x60\x0d\x90\x05\x06\x20\x9d\x4b\x73\xde\xcc\x79\x70\x15\ -\x7f\x56\x02\xe0\xbf\xc0\xac\x84\xf7\x88\xbd\xdc\xa3\xe0\xb0\x70\ -\x0e\x71\xf0\xe1\xa8\x4a\x29\x14\x71\xfe\xfa\xf3\xb9\xc3\xbb\x83\ -\xed\x6f\x6d\x67\x64\xdf\x08\xa7\xd9\xa7\x91\x69\x64\x54\xbf\xf4\ -\x69\x7d\xe4\x13\x79\xd6\xda\x6b\xb9\xf8\x8d\x8b\xd9\x3e\xb6\x9d\ -\x6d\xcd\x6d\x30\xcf\x24\xf0\x36\x30\x0d\xb8\x21\x62\xfc\x57\x89\ -\x28\x38\x1c\x03\x8b\xf9\x3d\x1c\xcd\x44\x7f\x7f\x3f\xe9\x74\x9a\ -\x55\xab\x56\x51\x28\x14\x58\x57\x58\xc7\xa5\x85\x4b\x71\x1c\x07\ -\x21\xd4\xed\xad\x04\x1b\x86\x41\x6f\xae\x97\x93\x4f\x3e\x99\xc1\ -\xc1\x41\x80\x23\x40\x51\x08\xd1\x64\x81\x2d\x7d\x91\xc5\x67\x20\ -\x06\x3e\x3a\x97\x60\xaa\x27\x7a\x7a\x7a\x58\xb1\x62\x05\x96\x65\ -\x51\xad\x56\xa9\xd5\x6a\x04\x41\xa0\xc0\x75\x5d\x57\x19\x93\xcf\ -\x90\xc9\x64\xe8\xee\xee\x06\x68\x02\x1e\x40\xac\x80\x10\x92\x36\ -\x32\x10\xb1\x18\x31\x32\x1b\x0a\x56\xc2\xd1\xd7\xd7\x87\xe7\x79\ -\x8b\x32\x20\x47\x25\x24\x8c\x01\x41\xd4\x88\x3d\x46\x43\x0f\xa1\ -\xa3\x19\xa0\xa3\x4c\x00\x21\x98\x02\x95\x82\x68\xc3\x62\x04\xb4\ -\xde\xfd\x08\x64\x4c\x1c\x33\x6f\xcf\x3a\xce\x00\x51\x80\xa5\x80\ -\x3b\x82\x17\x42\x28\x0f\xe3\x45\x62\xa5\xb7\x23\x20\x0a\x11\xfb\ -\xa2\xce\xcb\x48\x36\x6e\x08\x1f\xce\xa3\x02\x34\xbd\xf3\x12\x0a\ -\xed\x38\x97\x91\x82\x0c\x61\x7d\xdf\x57\x2e\xe7\x8b\x04\x85\x99\ -\xc6\x48\xc5\x37\x71\xe7\x3b\x4f\xbb\x59\x51\x90\xa1\xbb\xae\x8b\ -\xe7\x79\x4a\x40\xb3\xd9\x44\xcd\x65\x0c\xa0\x49\x78\x2d\x99\x62\ -\xfc\xc0\xbb\x53\x40\x01\x10\xc7\xbb\x84\xda\xce\x44\x08\x2e\xa1\ -\x15\xac\x74\x75\x89\x59\x96\x8d\xed\xd8\xb8\x4d\x57\x89\x01\xe8\ -\xc9\xf6\x52\x2e\xcc\x5a\x37\x5e\xbb\xe9\x97\xc0\xf3\x42\x88\xc8\ -\x3d\xa0\xb5\xb5\x93\x31\x70\x71\x26\x01\x16\xc2\xab\x1d\x2f\x57\ -\x2a\xcc\x14\x0a\x14\x0a\x33\x4c\x4f\x4f\x73\x44\x7a\xd3\x6d\xd2\ -\x9f\xcf\x53\xaf\x55\xfc\x1b\xae\xff\xfa\x8f\x0f\x1c\x38\xf0\x53\ -\x09\x5f\x69\xa7\x84\x04\x28\xc2\x4e\xca\x25\xb6\xee\x43\xf8\x52\ -\xa9\xcc\xd4\xd4\x61\xea\xb6\x45\xa6\x3b\xa3\x6e\xe6\x81\x95\x2b\ -\xd5\x2d\x7c\x70\x62\x22\xb8\x75\xeb\xd6\x07\xf7\xbe\xf3\xee\x0f\ -\x25\x7c\xb9\xd3\x63\xb4\xed\x93\x87\xf8\xdd\x57\x5e\xab\xd5\x38\ -\x7a\xf4\x28\xd5\x7a\x8d\x2f\x5f\x72\xe9\x27\xcd\xfc\xf1\x7a\x9d\ -\x89\xc9\x09\x71\xe7\xdd\xdf\xde\x31\x36\x36\x76\xbf\xda\xf9\x25\ -\x4c\x6b\xb3\xfe\x8f\x4b\xf9\xc8\x9a\x57\x02\xaa\xd5\x0a\x99\xee\ -\x9e\x45\xf0\x93\x93\x13\xdc\xf7\xc0\x7d\x3b\x5f\x7d\xf1\xe5\xbb\ -\x23\xf0\xb1\x02\xe2\x85\x74\x50\x4a\x0a\x7e\xd1\x71\x69\xdb\x0e\ -\xf5\xba\x45\xcd\xb2\xd4\x17\xbb\x85\xf0\x0f\x3e\x34\xba\x7b\xf7\ -\xd3\xbb\x6f\x89\xc2\x77\x7e\x91\xb5\x09\x1d\x9f\x81\x46\xc3\x51\ -\x59\x68\x48\x5f\xb5\x6a\x20\x2c\x1b\x46\x25\xfc\xce\xc7\x77\x5e\ -\x2d\xe1\xab\x84\xd6\x61\x06\x04\xc7\xd1\xc2\x9b\x35\x14\xd0\xfc\ -\xa4\x89\x73\xb9\x1c\xa6\x99\x56\x35\x7f\xdf\xf7\xee\x7f\xac\x5d\ -\x78\x00\x83\x13\x6f\xd1\x32\xf2\x7c\x02\x19\x0f\x0d\x9d\xaa\x4e\ -\x9b\xbb\xbe\x73\xd7\xc3\x2f\xff\xe5\xa5\xef\x86\xf0\x9f\xbe\x80\ -\x68\x59\x29\xf8\x85\x42\x7a\xfb\xfa\x29\x97\x4b\xfe\x6d\xb7\x6d\ -\xfd\xc1\xd8\x3f\xc6\x1e\x90\x6b\x35\x3a\x30\xad\xad\x7a\xee\xbc\ -\x7c\x94\x90\xf0\xc7\x49\xb2\xab\x07\xd7\x75\xad\x1b\x36\x5f\x77\ -\x6f\x87\xf0\xf1\x17\x99\xfc\x20\x4c\xd3\xec\x44\x54\xf4\x59\x19\ -\x8b\x84\x86\xd0\x93\x24\xcc\x6e\x0e\x1d\x19\x9f\xba\x7d\xcb\x8d\ -\x0f\x1d\x1c\x1f\xdf\x11\x03\xdf\x91\x00\x01\x7c\x28\x01\xb6\x01\ -\x09\x8e\xbf\xa9\xf7\x03\x2f\x74\x0e\x1f\xff\xcf\x1e\x3a\xa0\x9d\ -\xd8\x9e\x16\x1e\xc0\x71\x11\xf0\xff\x6c\xff\x03\x33\xf1\x86\x8f\ -\x4a\x87\x76\xdc\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\ -\x00\x00\x1e\x69\ -\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\x09\x70\x48\x59\x73\x00\x00\x0b\x13\x00\x00\x0b\x13\ -\x01\x00\x9a\x9c\x18\x00\x00\x0a\x4f\x69\x43\x43\x50\x50\x68\x6f\ -\x74\x6f\x73\x68\x6f\x70\x20\x49\x43\x43\x20\x70\x72\x6f\x66\x69\ -\x6c\x65\x00\x00\x78\xda\x9d\x53\x67\x54\x53\xe9\x16\x3d\xf7\xde\ -\xf4\x42\x4b\x88\x80\x94\x4b\x6f\x52\x15\x08\x20\x52\x42\x8b\x80\ -\x14\x91\x26\x2a\x21\x09\x10\x4a\x88\x21\xa1\xd9\x15\x51\xc1\x11\ -\x45\x45\x04\x1b\xc8\xa0\x88\x03\x8e\x8e\x80\x8c\x15\x51\x2c\x0c\ -\x8a\x0a\xd8\x07\xe4\x21\xa2\x8e\x83\xa3\x88\x8a\xca\xfb\xe1\x7b\ -\xa3\x6b\xd6\xbc\xf7\xe6\xcd\xfe\xb5\xd7\x3e\xe7\xac\xf3\x9d\xb3\ -\xcf\x07\xc0\x08\x0c\x96\x48\x33\x51\x35\x80\x0c\xa9\x42\x1e\x11\ -\xe0\x83\xc7\xc4\xc6\xe1\xe4\x2e\x40\x81\x0a\x24\x70\x00\x10\x08\ -\xb3\x64\x21\x73\xfd\x23\x01\x00\xf8\x7e\x3c\x3c\x2b\x22\xc0\x07\ -\xbe\x00\x01\x78\xd3\x0b\x08\x00\xc0\x4d\x9b\xc0\x30\x1c\x87\xff\ -\x0f\xea\x42\x99\x5c\x01\x80\x84\x01\xc0\x74\x91\x38\x4b\x08\x80\ -\x14\x00\x40\x7a\x8e\x42\xa6\x00\x40\x46\x01\x80\x9d\x98\x26\x53\ -\x00\xa0\x04\x00\x60\xcb\x63\x62\xe3\x00\x50\x2d\x00\x60\x27\x7f\ -\xe6\xd3\x00\x80\x9d\xf8\x99\x7b\x01\x00\x5b\x94\x21\x15\x01\xa0\ -\x91\x00\x20\x13\x65\x88\x44\x00\x68\x3b\x00\xac\xcf\x56\x8a\x45\ -\x00\x58\x30\x00\x14\x66\x4b\xc4\x39\x00\xd8\x2d\x00\x30\x49\x57\ -\x66\x48\x00\xb0\xb7\x00\xc0\xce\x10\x0b\xb2\x00\x08\x0c\x00\x30\ -\x51\x88\x85\x29\x00\x04\x7b\x00\x60\xc8\x23\x23\x78\x00\x84\x99\ -\x00\x14\x46\xf2\x57\x3c\xf1\x2b\xae\x10\xe7\x2a\x00\x00\x78\x99\ -\xb2\x3c\xb9\x24\x39\x45\x81\x5b\x08\x2d\x71\x07\x57\x57\x2e\x1e\ -\x28\xce\x49\x17\x2b\x14\x36\x61\x02\x61\x9a\x40\x2e\xc2\x79\x99\ -\x19\x32\x81\x34\x0f\xe0\xf3\xcc\x00\x00\xa0\x91\x15\x11\xe0\x83\ -\xf3\xfd\x78\xce\x0e\xae\xce\xce\x36\x8e\xb6\x0e\x5f\x2d\xea\xbf\ -\x06\xff\x22\x62\x62\xe3\xfe\xe5\xcf\xab\x70\x40\x00\x00\xe1\x74\ -\x7e\xd1\xfe\x2c\x2f\xb3\x1a\x80\x3b\x06\x80\x6d\xfe\xa2\x25\xee\ -\x04\x68\x5e\x0b\xa0\x75\xf7\x8b\x66\xb2\x0f\x40\xb5\x00\xa0\xe9\ -\xda\x57\xf3\x70\xf8\x7e\x3c\x3c\x45\xa1\x90\xb9\xd9\xd9\xe5\xe4\ -\xe4\xd8\x4a\xc4\x42\x5b\x61\xca\x57\x7d\xfe\x67\xc2\x5f\xc0\x57\ -\xfd\x6c\xf9\x7e\x3c\xfc\xf7\xf5\xe0\xbe\xe2\x24\x81\x32\x5d\x81\ -\x47\x04\xf8\xe0\xc2\xcc\xf4\x4c\xa5\x1c\xcf\x92\x09\x84\x62\xdc\ -\xe6\x8f\x47\xfc\xb7\x0b\xff\xfc\x1d\xd3\x22\xc4\x49\x62\xb9\x58\ -\x2a\x14\xe3\x51\x12\x71\x8e\x44\x9a\x8c\xf3\x32\xa5\x22\x89\x42\ -\x92\x29\xc5\x25\xd2\xff\x64\xe2\xdf\x2c\xfb\x03\x3e\xdf\x35\x00\ -\xb0\x6a\x3e\x01\x7b\x91\x2d\xa8\x5d\x63\x03\xf6\x4b\x27\x10\x58\ -\x74\xc0\xe2\xf7\x00\x00\xf2\xbb\x6f\xc1\xd4\x28\x08\x03\x80\x68\ -\x83\xe1\xcf\x77\xff\xef\x3f\xfd\x47\xa0\x25\x00\x80\x66\x49\x92\ -\x71\x00\x00\x5e\x44\x24\x2e\x54\xca\xb3\x3f\xc7\x08\x00\x00\x44\ -\xa0\x81\x2a\xb0\x41\x1b\xf4\xc1\x18\x2c\xc0\x06\x1c\xc1\x05\xdc\ -\xc1\x0b\xfc\x60\x36\x84\x42\x24\xc4\xc2\x42\x10\x42\x0a\x64\x80\ -\x1c\x72\x60\x29\xac\x82\x42\x28\x86\xcd\xb0\x1d\x2a\x60\x2f\xd4\ -\x40\x1d\x34\xc0\x51\x68\x86\x93\x70\x0e\x2e\xc2\x55\xb8\x0e\x3d\ -\x70\x0f\xfa\x61\x08\x9e\xc1\x28\xbc\x81\x09\x04\x41\xc8\x08\x13\ -\x61\x21\xda\x88\x01\x62\x8a\x58\x23\x8e\x08\x17\x99\x85\xf8\x21\ -\xc1\x48\x04\x12\x8b\x24\x20\xc9\x88\x14\x51\x22\x4b\x91\x35\x48\ -\x31\x52\x8a\x54\x20\x55\x48\x1d\xf2\x3d\x72\x02\x39\x87\x5c\x46\ -\xba\x91\x3b\xc8\x00\x32\x82\xfc\x86\xbc\x47\x31\x94\x81\xb2\x51\ -\x3d\xd4\x0c\xb5\x43\xb9\xa8\x37\x1a\x84\x46\xa2\x0b\xd0\x64\x74\ -\x31\x9a\x8f\x16\xa0\x9b\xd0\x72\xb4\x1a\x3d\x8c\x36\xa1\xe7\xd0\ -\xab\x68\x0f\xda\x8f\x3e\x43\xc7\x30\xc0\xe8\x18\x07\x33\xc4\x6c\ -\x30\x2e\xc6\xc3\x42\xb1\x38\x2c\x09\x93\x63\xcb\xb1\x22\xac\x0c\ -\xab\xc6\x1a\xb0\x56\xac\x03\xbb\x89\xf5\x63\xcf\xb1\x77\x04\x12\ -\x81\x45\xc0\x09\x36\x04\x77\x42\x20\x61\x1e\x41\x48\x58\x4c\x58\ -\x4e\xd8\x48\xa8\x20\x1c\x24\x34\x11\xda\x09\x37\x09\x03\x84\x51\ -\xc2\x27\x22\x93\xa8\x4b\xb4\x26\xba\x11\xf9\xc4\x18\x62\x32\x31\ -\x87\x58\x48\x2c\x23\xd6\x12\x8f\x13\x2f\x10\x7b\x88\x43\xc4\x37\ -\x24\x12\x89\x43\x32\x27\xb9\x90\x02\x49\xb1\xa4\x54\xd2\x12\xd2\ -\x46\xd2\x6e\x52\x23\xe9\x2c\xa9\x9b\x34\x48\x1a\x23\x93\xc9\xda\ -\x64\x6b\xb2\x07\x39\x94\x2c\x20\x2b\xc8\x85\xe4\x9d\xe4\xc3\xe4\ -\x33\xe4\x1b\xe4\x21\xf2\x5b\x0a\x9d\x62\x40\x71\xa4\xf8\x53\xe2\ -\x28\x52\xca\x6a\x4a\x19\xe5\x10\xe5\x34\xe5\x06\x65\x98\x32\x41\ -\x55\xa3\x9a\x52\xdd\xa8\xa1\x54\x11\x35\x8f\x5a\x42\xad\xa1\xb6\ -\x52\xaf\x51\x87\xa8\x13\x34\x75\x9a\x39\xcd\x83\x16\x49\x4b\xa5\ -\xad\xa2\x95\xd3\x1a\x68\x17\x68\xf7\x69\xaf\xe8\x74\xba\x11\xdd\ -\x95\x1e\x4e\x97\xd0\x57\xd2\xcb\xe9\x47\xe8\x97\xe8\x03\xf4\x77\ -\x0c\x0d\x86\x15\x83\xc7\x88\x67\x28\x19\x9b\x18\x07\x18\x67\x19\ -\x77\x18\xaf\x98\x4c\xa6\x19\xd3\x8b\x19\xc7\x54\x30\x37\x31\xeb\ -\x98\xe7\x99\x0f\x99\x6f\x55\x58\x2a\xb6\x2a\x7c\x15\x91\xca\x0a\ -\x95\x4a\x95\x26\x95\x1b\x2a\x2f\x54\xa9\xaa\xa6\xaa\xde\xaa\x0b\ -\x55\xf3\x55\xcb\x54\x8f\xa9\x5e\x53\x7d\xae\x46\x55\x33\x53\xe3\ -\xa9\x09\xd4\x96\xab\x55\xaa\x9d\x50\xeb\x53\x1b\x53\x67\xa9\x3b\ -\xa8\x87\xaa\x67\xa8\x6f\x54\x3f\xa4\x7e\x59\xfd\x89\x06\x59\xc3\ -\x4c\xc3\x4f\x43\xa4\x51\xa0\xb1\x5f\xe3\xbc\xc6\x20\x0b\x63\x19\ -\xb3\x78\x2c\x21\x6b\x0d\xab\x86\x75\x81\x35\xc4\x26\xb1\xcd\xd9\ -\x7c\x76\x2a\xbb\x98\xfd\x1d\xbb\x8b\x3d\xaa\xa9\xa1\x39\x43\x33\ -\x4a\x33\x57\xb3\x52\xf3\x94\x66\x3f\x07\xe3\x98\x71\xf8\x9c\x74\ -\x4e\x09\xe7\x28\xa7\x97\xf3\x7e\x8a\xde\x14\xef\x29\xe2\x29\x1b\ -\xa6\x34\x4c\xb9\x31\x65\x5c\x6b\xaa\x96\x97\x96\x58\xab\x48\xab\ -\x51\xab\x47\xeb\xbd\x36\xae\xed\xa7\x9d\xa6\xbd\x45\xbb\x59\xfb\ -\x81\x0e\x41\xc7\x4a\x27\x5c\x27\x47\x67\x8f\xce\x05\x9d\xe7\x53\ -\xd9\x53\xdd\xa7\x0a\xa7\x16\x4d\x3d\x3a\xf5\xae\x2e\xaa\x6b\xa5\ -\x1b\xa1\xbb\x44\x77\xbf\x6e\xa7\xee\x98\x9e\xbe\x5e\x80\x9e\x4c\ -\x6f\xa7\xde\x79\xbd\xe7\xfa\x1c\x7d\x2f\xfd\x54\xfd\x6d\xfa\xa7\ -\xf5\x47\x0c\x58\x06\xb3\x0c\x24\x06\xdb\x0c\xce\x18\x3c\xc5\x35\ -\x71\x6f\x3c\x1d\x2f\xc7\xdb\xf1\x51\x43\x5d\xc3\x40\x43\xa5\x61\ -\x95\x61\x97\xe1\x84\x91\xb9\xd1\x3c\xa3\xd5\x46\x8d\x46\x0f\x8c\ -\x69\xc6\x5c\xe3\x24\xe3\x6d\xc6\x6d\xc6\xa3\x26\x06\x26\x21\x26\ -\x4b\x4d\xea\x4d\xee\x9a\x52\x4d\xb9\xa6\x29\xa6\x3b\x4c\x3b\x4c\ -\xc7\xcd\xcc\xcd\xa2\xcd\xd6\x99\x35\x9b\x3d\x31\xd7\x32\xe7\x9b\ -\xe7\x9b\xd7\x9b\xdf\xb7\x60\x5a\x78\x5a\x2c\xb6\xa8\xb6\xb8\x65\ -\x49\xb2\xe4\x5a\xa6\x59\xee\xb6\xbc\x6e\x85\x5a\x39\x59\xa5\x58\ -\x55\x5a\x5d\xb3\x46\xad\x9d\xad\x25\xd6\xbb\xad\xbb\xa7\x11\xa7\ -\xb9\x4e\x93\x4e\xab\x9e\xd6\x67\xc3\xb0\xf1\xb6\xc9\xb6\xa9\xb7\ -\x19\xb0\xe5\xd8\x06\xdb\xae\xb6\x6d\xb6\x7d\x61\x67\x62\x17\x67\ -\xb7\xc5\xae\xc3\xee\x93\xbd\x93\x7d\xba\x7d\x8d\xfd\x3d\x07\x0d\ -\x87\xd9\x0e\xab\x1d\x5a\x1d\x7e\x73\xb4\x72\x14\x3a\x56\x3a\xde\ -\x9a\xce\x9c\xee\x3f\x7d\xc5\xf4\x96\xe9\x2f\x67\x58\xcf\x10\xcf\ -\xd8\x33\xe3\xb6\x13\xcb\x29\xc4\x69\x9d\x53\x9b\xd3\x47\x67\x17\ -\x67\xb9\x73\x83\xf3\x88\x8b\x89\x4b\x82\xcb\x2e\x97\x3e\x2e\x9b\ -\x1b\xc6\xdd\xc8\xbd\xe4\x4a\x74\xf5\x71\x5d\xe1\x7a\xd2\xf5\x9d\ -\x9b\xb3\x9b\xc2\xed\xa8\xdb\xaf\xee\x36\xee\x69\xee\x87\xdc\x9f\ -\xcc\x34\x9f\x29\x9e\x59\x33\x73\xd0\xc3\xc8\x43\xe0\x51\xe5\xd1\ -\x3f\x0b\x9f\x95\x30\x6b\xdf\xac\x7e\x4f\x43\x4f\x81\x67\xb5\xe7\ -\x23\x2f\x63\x2f\x91\x57\xad\xd7\xb0\xb7\xa5\x77\xaa\xf7\x61\xef\ -\x17\x3e\xf6\x3e\x72\x9f\xe3\x3e\xe3\x3c\x37\xde\x32\xde\x59\x5f\ -\xcc\x37\xc0\xb7\xc8\xb7\xcb\x4f\xc3\x6f\x9e\x5f\x85\xdf\x43\x7f\ -\x23\xff\x64\xff\x7a\xff\xd1\x00\xa7\x80\x25\x01\x67\x03\x89\x81\ -\x41\x81\x5b\x02\xfb\xf8\x7a\x7c\x21\xbf\x8e\x3f\x3a\xdb\x65\xf6\ -\xb2\xd9\xed\x41\x8c\xa0\xb9\x41\x15\x41\x8f\x82\xad\x82\xe5\xc1\ -\xad\x21\x68\xc8\xec\x90\xad\x21\xf7\xe7\x98\xce\x91\xce\x69\x0e\ -\x85\x50\x7e\xe8\xd6\xd0\x07\x61\xe6\x61\x8b\xc3\x7e\x0c\x27\x85\ -\x87\x85\x57\x86\x3f\x8e\x70\x88\x58\x1a\xd1\x31\x97\x35\x77\xd1\ -\xdc\x43\x73\xdf\x44\xfa\x44\x96\x44\xde\x9b\x67\x31\x4f\x39\xaf\ -\x2d\x4a\x35\x2a\x3e\xaa\x2e\x6a\x3c\xda\x37\xba\x34\xba\x3f\xc6\ -\x2e\x66\x59\xcc\xd5\x58\x9d\x58\x49\x6c\x4b\x1c\x39\x2e\x2a\xae\ -\x36\x6e\x6c\xbe\xdf\xfc\xed\xf3\x87\xe2\x9d\xe2\x0b\xe3\x7b\x17\ -\x98\x2f\xc8\x5d\x70\x79\xa1\xce\xc2\xf4\x85\xa7\x16\xa9\x2e\x12\ -\x2c\x3a\x96\x40\x4c\x88\x4e\x38\x94\xf0\x41\x10\x2a\xa8\x16\x8c\ -\x25\xf2\x13\x77\x25\x8e\x0a\x79\xc2\x1d\xc2\x67\x22\x2f\xd1\x36\ -\xd1\x88\xd8\x43\x5c\x2a\x1e\x4e\xf2\x48\x2a\x4d\x7a\x92\xec\x91\ -\xbc\x35\x79\x24\xc5\x33\xa5\x2c\xe5\xb9\x84\x27\xa9\x90\xbc\x4c\ -\x0d\x4c\xdd\x9b\x3a\x9e\x16\x9a\x76\x20\x6d\x32\x3d\x3a\xbd\x31\ -\x83\x92\x91\x90\x71\x42\xaa\x21\x4d\x93\xb6\x67\xea\x67\xe6\x66\ -\x76\xcb\xac\x65\x85\xb2\xfe\xc5\x6e\x8b\xb7\x2f\x1e\x95\x07\xc9\ -\x6b\xb3\x90\xac\x05\x59\x2d\x0a\xb6\x42\xa6\xe8\x54\x5a\x28\xd7\ -\x2a\x07\xb2\x67\x65\x57\x66\xbf\xcd\x89\xca\x39\x96\xab\x9e\x2b\ -\xcd\xed\xcc\xb3\xca\xdb\x90\x37\x9c\xef\x9f\xff\xed\x12\xc2\x12\ -\xe1\x92\xb6\xa5\x86\x4b\x57\x2d\x1d\x58\xe6\xbd\xac\x6a\x39\xb2\ -\x3c\x71\x79\xdb\x0a\xe3\x15\x05\x2b\x86\x56\x06\xac\x3c\xb8\x8a\ -\xb6\x2a\x6d\xd5\x4f\xab\xed\x57\x97\xae\x7e\xbd\x26\x7a\x4d\x6b\ -\x81\x5e\xc1\xca\x82\xc1\xb5\x01\x6b\xeb\x0b\x55\x0a\xe5\x85\x7d\ -\xeb\xdc\xd7\xed\x5d\x4f\x58\x2f\x59\xdf\xb5\x61\xfa\x86\x9d\x1b\ -\x3e\x15\x89\x8a\xae\x14\xdb\x17\x97\x15\x7f\xd8\x28\xdc\x78\xe5\ -\x1b\x87\x6f\xca\xbf\x99\xdc\x94\xb4\xa9\xab\xc4\xb9\x64\xcf\x66\ -\xd2\x66\xe9\xe6\xde\x2d\x9e\x5b\x0e\x96\xaa\x97\xe6\x97\x0e\x6e\ -\x0d\xd9\xda\xb4\x0d\xdf\x56\xb4\xed\xf5\xf6\x45\xdb\x2f\x97\xcd\ -\x28\xdb\xbb\x83\xb6\x43\xb9\xa3\xbf\x3c\xb8\xbc\x65\xa7\xc9\xce\ -\xcd\x3b\x3f\x54\xa4\x54\xf4\x54\xfa\x54\x36\xee\xd2\xdd\xb5\x61\ -\xd7\xf8\x6e\xd1\xee\x1b\x7b\xbc\xf6\x34\xec\xd5\xdb\x5b\xbc\xf7\ -\xfd\x3e\xc9\xbe\xdb\x55\x01\x55\x4d\xd5\x66\xd5\x65\xfb\x49\xfb\ -\xb3\xf7\x3f\xae\x89\xaa\xe9\xf8\x96\xfb\x6d\x5d\xad\x4e\x6d\x71\ -\xed\xc7\x03\xd2\x03\xfd\x07\x23\x0e\xb6\xd7\xb9\xd4\xd5\x1d\xd2\ -\x3d\x54\x52\x8f\xd6\x2b\xeb\x47\x0e\xc7\x1f\xbe\xfe\x9d\xef\x77\ -\x2d\x0d\x36\x0d\x55\x8d\x9c\xc6\xe2\x23\x70\x44\x79\xe4\xe9\xf7\ -\x09\xdf\xf7\x1e\x0d\x3a\xda\x76\x8c\x7b\xac\xe1\x07\xd3\x1f\x76\ -\x1d\x67\x1d\x2f\x6a\x42\x9a\xf2\x9a\x46\x9b\x53\x9a\xfb\x5b\x62\ -\x5b\xba\x4f\xcc\x3e\xd1\xd6\xea\xde\x7a\xfc\x47\xdb\x1f\x0f\x9c\ -\x34\x3c\x59\x79\x4a\xf3\x54\xc9\x69\xda\xe9\x82\xd3\x93\x67\xf2\ -\xcf\x8c\x9d\x95\x9d\x7d\x7e\x2e\xf9\xdc\x60\xdb\xa2\xb6\x7b\xe7\ -\x63\xce\xdf\x6a\x0f\x6f\xef\xba\x10\x74\xe1\xd2\x45\xff\x8b\xe7\ -\x3b\xbc\x3b\xce\x5c\xf2\xb8\x74\xf2\xb2\xdb\xe5\x13\x57\xb8\x57\ -\x9a\xaf\x3a\x5f\x6d\xea\x74\xea\x3c\xfe\x93\xd3\x4f\xc7\xbb\x9c\ -\xbb\x9a\xae\xb9\x5c\x6b\xb9\xee\x7a\xbd\xb5\x7b\x66\xf7\xe9\x1b\ -\x9e\x37\xce\xdd\xf4\xbd\x79\xf1\x16\xff\xd6\xd5\x9e\x39\x3d\xdd\ -\xbd\xf3\x7a\x6f\xf7\xc5\xf7\xf5\xdf\x16\xdd\x7e\x72\x27\xfd\xce\ -\xcb\xbb\xd9\x77\x27\xee\xad\xbc\x4f\xbc\x5f\xf4\x40\xed\x41\xd9\ -\x43\xdd\x87\xd5\x3f\x5b\xfe\xdc\xd8\xef\xdc\x7f\x6a\xc0\x77\xa0\ -\xf3\xd1\xdc\x47\xf7\x06\x85\x83\xcf\xfe\x91\xf5\x8f\x0f\x43\x05\ -\x8f\x99\x8f\xcb\x86\x0d\x86\xeb\x9e\x38\x3e\x39\x39\xe2\x3f\x72\ -\xfd\xe9\xfc\xa7\x43\xcf\x64\xcf\x26\x9e\x17\xfe\xa2\xfe\xcb\xae\ -\x17\x16\x2f\x7e\xf8\xd5\xeb\xd7\xce\xd1\x98\xd1\xa1\x97\xf2\x97\ -\x93\xbf\x6d\x7c\xa5\xfd\xea\xc0\xeb\x19\xaf\xdb\xc6\xc2\xc6\x1e\ -\xbe\xc9\x78\x33\x31\x5e\xf4\x56\xfb\xed\xc1\x77\xdc\x77\x1d\xef\ -\xa3\xdf\x0f\x4f\xe4\x7c\x20\x7f\x28\xff\x68\xf9\xb1\xf5\x53\xd0\ -\xa7\xfb\x93\x19\x93\x93\xff\x04\x03\x98\xf3\xfc\x63\x33\x2d\xdb\ -\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\x13\x94\ -\x49\x44\x41\x54\x78\xda\xbc\x59\x69\x74\x5c\xc5\x95\xfe\xaa\xea\ -\x2d\xbd\xb7\x5a\x2d\xc9\x5a\x2c\xc9\xb6\x24\x4b\xc6\x36\xde\xf0\ -\x82\x0d\x66\x31\x60\xc0\x2c\x66\x8b\x63\x60\xc0\x60\x13\x12\x86\ -\x99\x21\x04\x02\x64\x02\x81\x30\x04\xce\x84\x64\x12\x08\x5b\x20\ -\x24\x10\x08\x5b\x08\x84\x00\x36\xe0\x15\xe3\x45\x5e\xb1\x24\xcb\ -\x96\xb5\xef\xb2\xa4\x56\xab\x5b\xbd\xbc\xb5\x6a\x7e\xa8\xe5\x48\ -\xb2\x8c\x09\xe3\xcc\xd3\xb9\xe7\x9d\x3e\xef\xb5\xfa\x7e\x75\xef\ -\xfd\xee\x77\xab\x88\x10\x02\x43\xd7\x8c\x05\x0b\x70\xb2\x8b\x0a\ -\x01\xc2\x01\x40\xc0\x16\x82\x31\x45\xb6\xeb\xaa\xab\x51\x98\x9f\ -\x0f\x49\x96\x01\x81\x0c\x1d\xe4\x4e\xcb\xb4\xab\x5b\x1b\xeb\xf6\ -\x14\x95\x94\xb6\xa9\xd4\x69\x08\x0c\xfe\x8e\x20\x02\x36\xe5\x20\ -\x54\xe0\x54\x5c\xd2\x37\xfa\x16\x01\xc0\x05\x15\x5c\x4c\x81\x10\ -\x6d\x00\xfa\x05\x61\x00\x61\x10\x44\xe4\xb9\x54\xc7\x52\x4b\xb6\ -\xa7\xb8\x7d\xbe\x22\x4a\xe9\x27\x02\x38\x00\xc0\x4e\x7d\x11\xa7\ -\xf2\xa2\xdf\xc4\x79\xd3\x30\xe6\x41\x92\x3e\xf2\xa7\xf9\x77\xdb\ -\x9c\xff\x87\x80\x80\xa0\x14\x5c\xc8\x20\x54\xbe\xe1\xae\x7f\xbb\ -\x73\xc1\xdb\xaf\xbf\xfa\xad\xdf\xbf\xf4\xd2\xcf\x5c\x1e\xf7\xef\ -\x2d\xa2\xe7\xd9\xd4\x84\x4d\x75\x08\x2a\x40\xfe\x69\x00\xc4\x89\ -\x4d\xa4\xcc\x30\xed\x15\xf9\x85\x85\xeb\x7f\xf1\xdf\x4f\x5c\xfc\ -\xc1\xbb\xef\x3a\x66\x9d\x3e\xe3\x6e\xc1\xc9\x12\xd3\x34\xe5\x81\ -\x58\xac\x8c\x50\x7a\xc5\xa2\x33\x17\x20\x37\x27\x07\x8b\xce\x5c\ -\x00\x59\x92\xb8\xd7\xeb\xea\x72\x3a\x64\x34\x37\xd4\x81\x32\x7a\ -\x4a\x23\x30\x22\x85\x84\x3d\x76\x5e\x12\x02\x30\x70\x40\x00\xb1\ -\x81\x81\xdc\xcb\x96\x5d\xea\x3d\x6f\xf1\x39\xe8\xe9\x39\x8a\x9b\ -\xae\x5f\xe9\xab\x3c\x58\xfd\xbb\xf4\x80\xbf\xbe\xb8\xa8\x78\x7a\ -\xd9\xe4\xe2\xcc\xde\xde\xa3\x68\xef\x68\x05\xe7\x04\xa6\x69\xb6\ -\xe5\x64\xa4\x1b\xf1\x44\x12\xdc\x3e\xb5\xe9\x73\x7c\x0d\x08\x72\ -\x02\x00\x02\xb6\x25\x43\x26\x36\xdc\x2e\xc7\x5b\x1f\xad\xfb\x64\ -\xd5\xbc\xd9\xb3\x4f\xb7\x84\x81\xbc\xbc\x1c\xbc\xf8\xcc\xd3\x85\ -\x81\xf4\xb4\xc2\x40\x5a\x00\x8a\x22\x23\x1a\x8d\x22\x91\x88\xa3\ -\xa9\xb9\x15\xba\x69\x94\xf5\x86\xfb\xa7\x69\x9a\x5e\x65\xd9\xb6\ -\x4f\xd7\xf5\xbb\x08\x65\xf5\x8c\x92\xd7\x4f\x05\x00\x32\x9c\x85\ -\x4e\x9f\x33\x36\x0b\x11\x26\x60\x1b\x32\x88\x42\x40\x64\x1b\xa1\ -\xee\xd0\xcf\x1f\x79\xe0\xbe\x7b\xae\xbc\xfc\x32\x48\x92\x84\xde\ -\x50\x2f\x3a\xbb\x3a\x10\x8d\x46\x00\x08\x78\xbc\x5e\x04\xd3\x33\ -\x90\x99\x91\x85\x23\xb5\xb5\x78\xec\x89\x9f\xb7\xd5\x37\x36\xfd\ -\xb9\xb4\xa4\xe4\xb2\x59\x33\x66\x14\xef\xde\xbf\x2f\xda\xde\xde\ -\xbe\x94\x49\x6c\xe7\xff\x07\x00\x06\x6a\x17\x5a\xba\xdc\xae\xaa\ -\x4c\x8f\x6b\xfd\x53\x8a\x8b\x8a\xd6\x3d\xf5\x8b\x27\x0b\x1c\x0e\ -\x05\x7b\xf7\xed\x46\x2c\x1e\x87\x2c\xcb\x60\x8c\x81\x32\x0a\x4a\ -\x00\x01\x02\x8f\xdb\x8d\xd2\x92\x32\xb4\xb7\x77\x61\xfd\xc6\x4d\ -\xb8\x70\xc9\xf9\x98\x3e\x6d\x1a\x3e\xdd\xb0\x11\x3f\x79\xf4\xb1\ -\x8d\x1c\x7c\x09\x21\xe4\x14\x02\x38\x63\xfe\x71\x2f\x08\x81\x12\ -\x55\x95\x3f\x56\x15\x35\x9e\xd4\xb4\x46\xa7\x53\x3d\xed\xd7\x4f\ -\xfe\x7c\xf2\xf8\xbc\x1c\x6c\xd9\xba\x09\x02\x80\x2c\x4b\xa0\x94\ -\x42\x96\x65\x50\x4a\x21\x04\x40\x28\x40\x40\xc0\x18\x43\x49\xf1\ -\x64\x08\x4e\x50\x55\x55\x89\xe2\xa2\x62\xf8\xfc\x01\xac\xbc\xf9\ -\x96\x9e\x70\x38\xbc\x8c\x52\xba\xfb\xb8\x82\x13\x62\x6c\xea\x1e\ -\x22\x9a\x13\xd7\xc0\x28\x52\x12\x02\x84\xf0\x15\xdf\xfd\xce\xea\ -\xe2\x2b\x96\x5d\x8a\x8a\xca\xaa\x19\xa6\x69\xa1\xb4\xb4\x04\x5b\ -\xb6\x6e\x04\x08\xa0\xc8\x32\x64\x49\x41\x46\x46\x3a\x84\x20\x90\ -\x65\x19\x2e\x97\x13\x3d\xa1\x5e\x98\x86\x01\x42\x29\xda\x3b\xda\ -\x90\x9b\x93\x87\xb4\xb4\x00\x6a\x6a\xeb\xf1\xda\x9b\x6f\xf5\x1d\ -\xed\xe8\xfc\x8d\xc7\xe1\xaf\xc4\x28\xe2\x10\xe0\x83\xe8\x47\xf8\ -\x4e\x20\x98\x0d\x4b\xd8\x10\xa3\xc0\x8d\x00\x60\x6b\xce\x11\x0f\ -\x39\x17\xf0\x06\x70\xfe\xc5\x17\x2c\x01\xb7\x6d\xb8\x5c\x0a\x26\ -\x14\x94\xa2\xbd\xbd\x0d\xf1\x78\x1c\x8a\xa2\x40\x51\x14\x04\x02\ -\x41\x6c\xdf\xb9\x0b\x35\x35\xb5\x71\x42\x28\x9d\x39\xf3\x74\xe7\ -\xb2\x8b\x2f\x42\x7b\x67\x3b\x74\x43\x83\xcd\x6d\xd8\xb6\x05\xc3\ -\xb2\xf0\xd3\x9f\x3d\xde\x1a\x8b\x0e\xac\xe9\xee\xe8\xf8\xd4\x3f\ -\x39\x00\xdb\xb6\x8f\xf1\x07\x01\x07\xe7\x1a\x88\xa4\x0e\x02\x19\ -\xe2\x7a\xc2\x8e\x5b\xf9\x31\x01\xc8\x0e\x63\x74\xfa\x38\x0d\xcb\ -\x4e\xff\x64\xfd\x06\xcc\x9d\x33\x07\xb2\xa4\x82\x49\x12\x7a\xfb\ -\x7a\xc1\x98\x04\x49\x92\x10\x0c\x66\x60\xdb\xb6\x72\xfc\xfe\x95\ -\xd7\xfe\x62\x99\xd6\x83\x2d\x4d\xcd\x6c\xed\xba\x71\x0f\xa9\x8a\ -\x7a\xed\x25\x4b\x97\xa0\xbe\xa9\x01\x84\x12\x68\x9a\x06\x8f\xc7\ -\x85\xb4\x34\xff\x21\x5d\x37\x76\xe4\xe5\x8f\x87\x05\x13\x82\xa4\ -\x24\x06\x15\x20\x20\x00\x27\x38\xa1\xb7\x27\x6b\x64\x25\x93\xb2\ -\x47\x58\x59\x49\x6e\x52\x51\xe4\x9b\x7f\xf9\xd4\x33\x4f\xac\xbe\ -\xfd\x8e\x9a\xb7\xde\x7e\x4f\x30\x26\xc1\xd0\x75\xc8\xb2\x04\x55\ -\x51\xe1\x76\xb9\xf1\xc5\x8e\x72\x43\x4f\xda\xf7\xbb\x1c\xae\x6a\ -\xb7\xdb\x59\x49\x09\x79\xe4\x40\x45\x65\x4c\x96\x55\xa8\xaa\x0a\ -\xc6\x18\x6c\x6e\x23\x98\x1e\x44\xfe\xf8\xf1\x93\x35\x4d\x2b\xf4\ -\xb8\x5c\x10\xc3\xfe\x4e\x49\x27\xa6\x94\x8e\x30\x36\x78\x3f\x20\ -\x2c\xeb\x81\x48\x28\x74\xf5\xb6\xf2\x9d\xed\x9a\x96\x04\x61\x04\ -\x4c\x92\xc0\x24\x09\xaa\xaa\x02\x82\x70\x2e\x54\xd3\xb6\x38\xc6\ -\xe7\x17\x42\xa2\x84\x31\x49\x92\x55\x87\x13\x92\xc4\x20\x31\x06\ -\xca\x08\x24\x89\x61\xea\x94\x29\x13\x32\x33\x32\x5e\x1e\x48\x6a\ -\x8f\x40\x60\xe1\x37\x92\x33\x27\x02\xc0\xb9\x18\x61\x36\x17\x80\ -\xb0\x61\x5b\x06\x64\x8f\xab\x5a\x37\x8c\x76\x4d\xd3\xe0\x74\x38\ -\xc1\x18\x05\xe7\x36\x28\x65\xb8\xea\xca\x65\x0e\x97\x57\x3c\x9f\ -\xd0\x06\x8a\x06\x62\xf1\x62\xc9\xa1\x3e\x38\x77\xce\x6c\x55\x96\ -\x19\x84\x10\x60\x8c\x41\x91\x55\x68\xc9\x24\xa6\x96\x4d\xc6\x23\ -\x0f\xfe\x68\xee\xed\xb7\xdf\xf6\x10\x93\xa5\xc7\x39\xe0\x27\xf4\ -\x1f\xca\x9a\x13\xd7\x40\x6d\x6b\xeb\x71\x2f\x70\x6e\x83\x08\x0e\ -\xd3\xb2\xe7\xfa\x7d\x6a\xb6\xa6\x69\x48\x0f\xa4\x23\x1a\xed\x07\ -\xa5\x14\x7d\xe1\x10\x2e\x5f\x76\x29\x24\x49\x5e\xfa\xde\x07\x1f\ -\x56\x4b\x92\x84\xe5\x97\x5d\xaa\x2c\xbf\xe2\x72\x34\x36\x37\x80\ -\x90\x41\x2a\x55\x54\x07\xa2\xe1\x08\xfa\xfa\xfa\x30\x73\xe6\x4c\ -\xa8\xaa\x03\x2f\x1b\x66\x27\x01\xe9\xe7\x12\x81\xd0\xad\x00\x01\ -\x89\x52\x21\x52\xaa\x55\x7c\x03\x2d\x34\x16\xff\x82\x78\x88\xa4\ -\xdc\x3b\xad\xac\xec\x8e\xeb\xae\x5e\x9e\x11\x8b\xc5\x90\x1f\x18\ -\x0f\x8f\xc7\x07\xd3\x34\xa0\x19\x49\xb4\xb4\x35\xe1\x92\xa5\x17\ -\xe2\x9a\xab\xae\x54\x28\x65\x30\x4c\x03\x8d\xad\x0d\xd0\xf4\x24\ -\x24\x49\x82\x24\x31\x40\x08\x6c\xd8\xfc\x39\x5c\x0e\xb7\xe8\x8f\ -\x46\x49\xf9\xde\x3d\x30\x0d\xeb\x80\xea\x70\x0a\x83\x9b\x33\x3c\ -\x4e\xe7\xcb\x86\x61\xd4\x27\x34\x73\xbf\x43\x96\x3f\x25\x04\xfb\ -\xbf\x8e\xf6\x1e\x01\x80\x8f\x01\xc0\x34\xcd\xcc\xfc\x82\x82\xfb\ -\xee\xbf\xf7\x6e\x55\x55\x64\x34\x35\x37\x21\x23\x23\x88\x09\x85\ -\x13\xd0\xd4\xd2\x08\x00\x48\x24\x13\xa8\x6b\x38\x02\x97\xcb\x05\ -\x42\x08\x0c\xcb\x38\xd6\xc4\x08\x21\xf0\x79\xfd\xd8\xbb\xf7\x4b\ -\xf1\xea\x6b\x6f\x90\x34\x7f\x1a\x51\x3f\x50\x8d\x48\x24\xd2\xa4\ -\x2a\xd2\x3a\x8b\x18\x80\x65\x5f\x72\xcb\xad\x6b\x66\x2f\xbb\xf4\ -\xe2\xd9\xdb\xcb\xcb\xaf\x7b\xf6\xb9\x17\x6e\x08\xf7\x87\x2f\x65\ -\x8c\xb5\x9c\x2c\x12\x74\x74\xb3\x1b\x6d\x12\x63\xcd\xbd\xbd\xbd\ -\x1f\xd7\x1c\xa9\xc5\xb8\x71\xe3\x00\x41\xf1\xc1\x87\x1f\xe3\xe8\ -\xd1\x1e\x14\x4f\x2a\x81\xc3\xe1\x80\x24\x0d\x76\x62\xdd\xd0\x61\ -\x5a\x06\x28\x19\x24\x01\x49\x92\xe1\xf7\xa7\xa1\xb6\xb6\x01\x7f\ -\x78\xf5\x0d\x72\xff\x0f\xef\x11\x1f\xfc\xe5\xcf\xc8\xc8\x08\xda\ -\xa1\xde\x9e\x7b\x34\x3d\x51\x13\x09\x45\x8a\xb2\x33\xb2\x6e\xbc\ -\xf0\x82\xf3\x90\x95\x19\xc4\xfc\x33\xe6\xc0\xeb\x71\x0f\x58\x16\ -\x4f\x0c\xae\x27\xf9\xfa\x11\x90\xe9\x18\x84\x40\x29\xd7\x0d\xf3\ -\x89\x37\xdf\x79\xef\xec\xc3\x35\x47\x32\x76\xef\xd9\x7b\xa0\xb6\ -\xbe\x61\xc3\xe7\x5b\xbf\x58\xb1\xfa\xd6\x55\x79\xf3\xe7\xcf\x41\ -\x2c\x1e\x87\x61\xe8\xa9\xce\x4d\xc0\x28\x85\x24\xcb\xb0\x6d\x8e\ -\xa3\x9d\x47\xf1\x97\xf7\xfe\x06\xa7\xd3\x25\xae\x5c\x76\x19\x89\ -\xc5\x06\xb0\x66\xd5\xcd\xce\x43\x87\x0e\xbf\x90\x35\x6e\xdc\xc1\ -\x49\x13\x0b\x27\x95\x14\x15\x4d\x8c\x27\x62\xa8\xa8\xac\x44\x4f\ -\x4f\x08\xf5\xcd\xcd\xfb\x55\x49\xed\x1d\x52\x16\x5f\x5b\x0b\x79\ -\xbc\xde\x31\x5f\xe2\x9c\x23\x2d\x10\xfc\x96\xc7\x9f\x9e\xa7\x38\ -\xa4\x37\x99\xcc\x3a\xe3\x86\x39\xdb\x23\x2b\xef\xdc\xb6\xea\xa6\ -\x49\x67\x9f\xbd\x10\x0e\x87\x0a\x59\x56\x60\x5a\x26\x34\x4d\x43\ -\x24\x12\x45\x5f\xa8\x0f\xed\xed\x6d\xf0\x7a\xd3\xf0\xee\xfb\x7f\ -\xc3\x03\xf7\xde\x0d\x9b\x9b\x08\xf8\xd3\x31\x10\x4f\x22\x2b\x33\ -\x03\xc1\xf4\x00\x00\x82\x58\x3c\x06\xcb\xb2\xf0\xe5\x97\x15\xb8\ -\xef\xc1\x07\xf7\x33\x2e\xdd\x44\x14\x52\x65\x99\x66\x1a\x21\xe4\ -\xbb\x84\x90\x5e\xc2\xc8\x4b\xa3\xeb\x74\x04\x80\xaf\x52\x86\xd9\ -\xb9\xb9\xc8\xc9\x9f\x04\x0e\x0b\x5c\x70\x98\x84\x42\x25\xf4\x0f\ -\xab\x56\xae\xb8\x39\x18\xf4\xc1\xe9\x74\xe3\xb3\x8d\x9f\x63\xf7\ -\x9e\x7d\xad\x8a\x2c\xb5\x59\x96\x95\x73\xfd\x8a\x6b\x27\x4c\x2d\ -\x2b\x45\x76\x4e\x36\x9e\xfc\xf5\x33\x70\x28\x8a\x78\xfc\xb1\x47\ -\x09\xa3\x14\xa1\x70\x08\x1d\x1d\x6d\x88\x46\x23\x20\x84\xc0\xe3\ -\xf1\x21\x18\x0c\x22\x98\x1e\x44\x4d\x4d\x2d\x9e\x7a\xf6\xb9\xce\ -\xca\x83\x87\x5e\x9b\x5c\x52\x7c\xf5\x9c\x59\xb3\x8a\x76\xed\xde\ -\xd3\xd7\xd2\xde\x7a\x39\xa5\x74\xfb\xff\x69\xa8\x27\xb6\x05\x2a\ -\x04\x98\xa9\x2b\x59\xf9\xf9\x67\x4e\x9d\x3a\x05\xaa\x2c\xa1\xbd\ -\xa3\x0b\x15\x15\x95\x55\x9a\x9e\x58\x19\xea\x8e\x54\xf9\xd3\x02\ -\x57\x6c\xd8\xb4\xf5\xb5\x89\x13\x26\x78\xd7\x6f\xda\x82\x8e\xce\ -\x4e\xb1\x7a\xd5\x2a\xa2\xeb\x49\xec\xde\xbb\x0b\xf1\x78\x0c\x8a\ -\xa2\xa4\x0a\x9d\xa2\xbf\xbf\x0f\xe1\x48\x1f\x3a\xbb\x3a\x50\x5c\ -\x54\x82\x87\x7e\x74\x7f\xce\xba\xcf\x36\xdc\x7b\xfe\x39\x8b\x31\ -\x7d\xea\x34\x6c\xde\xfa\x79\xfa\xbd\x3f\xfa\xf1\x3d\x00\x56\x10\ -\x42\xcc\x6f\x36\xd4\x0b\x01\x98\x36\x88\x65\x81\x09\xee\x09\x87\ -\xc3\x39\x9b\xb7\x7e\x81\x81\xb8\x86\xba\x86\x46\xc4\xa2\x91\x77\ -\xbb\xdb\x5a\xab\x8e\x76\x75\xcd\x72\xfb\xfc\xbf\xea\xed\x0b\xb1\ -\xa7\x9f\xff\x2d\x5e\x7d\xfd\x0d\x7c\xf7\xb6\x35\x64\xc9\xf9\x8b\ -\xb1\xf5\x8b\x2d\xd0\x92\x49\xa8\x0e\x07\x24\x49\x86\xa2\x0c\xca\ -\x0d\x49\x96\xa1\xc8\x32\x2c\xcb\x44\x5d\xc3\x11\xf8\xd3\x7c\xb8\ -\xee\xea\x2b\xd1\xd9\xd9\x8e\xae\xee\x2e\xe4\xe5\xe6\x22\x33\x98\ -\xb9\x5c\xd8\x38\x9d\x82\x61\xc8\x4e\x5e\x03\x84\xc0\xb6\x6d\x64\ -\x64\x8f\x43\xc6\xb8\x1c\xd8\x09\x02\x2a\xe9\x00\xe7\x30\x29\x2d\ -\x24\x9c\xaf\xf4\x79\xbc\x97\x24\x35\xc3\x41\x6c\xfb\x6e\xd3\x36\ -\xb6\x25\x75\xe3\xce\xfb\xee\xbd\xe7\xe9\x6b\xaf\x5e\x8e\xb5\xeb\ -\x3e\x41\x76\x76\xb6\x58\x30\x6f\x2e\xd9\xb8\x65\x3d\x12\x89\x04\ -\x98\x24\x41\x91\x65\x04\xd3\xd3\x01\x42\xa1\xc8\x32\x1c\x0e\x15\ -\xa1\x70\x1f\x74\x5d\x07\x63\x14\x0e\xd5\x81\xac\x8c\x6c\x74\x77\ -\x77\xa3\xb3\xf3\x28\xde\x7c\xf7\xbd\x81\xda\xda\xba\x5f\x52\x8e\ -\xc7\x41\xa0\x8f\x99\x42\x65\xd3\xa6\x1d\x5f\xc0\x84\x0c\x6e\x4c\ -\x08\x0e\xdb\xb2\x00\x48\x20\x92\x0c\x5d\x70\x30\x5b\x84\xf5\x64\ -\xec\x37\x69\xe3\xb2\x9e\xd0\x34\x5b\x01\x67\x26\x27\x9c\x14\x14\ -\x66\x2f\x99\x3f\x77\x0e\x84\xb0\x31\x61\xe2\x78\x4c\x2c\x98\x44\ -\x9a\x5a\x1a\x91\xd4\x92\x90\x65\x19\xaa\xaa\xc0\xe7\xf3\x63\xcf\ -\xbe\x03\x38\x50\x51\x95\x00\x21\x62\xee\xec\xd9\xee\x0b\x96\x9c\ -\x8b\x50\xa8\x17\x49\x3d\x31\x28\xc1\x85\x05\xca\x18\x9e\x7a\xee\ -\x85\x78\x57\x4f\xcf\x72\x87\xd3\xb9\x11\x82\x7f\xc5\x3c\x90\xd2\ -\xe6\x63\x01\x38\x16\x0d\xce\x27\x12\xdb\x5e\xed\x75\xba\xce\x97\ -\x25\x56\x10\xe5\xfc\xcf\x3d\xe1\xe8\xf7\x05\x27\x06\xa5\x36\x1c\ -\x44\xa8\x89\x44\x62\xfa\xf6\x9d\x3b\xc5\xa2\x85\x0b\x88\xc4\x64\ -\x50\x46\x10\x0a\xf5\xa6\x7a\x03\x43\x7a\x7a\x06\x2a\xab\xaa\xf0\ -\xfc\x8b\xaf\xbc\x63\x5b\xd6\x43\x20\x82\x6c\xdf\xb6\xf3\xb1\x60\ -\x30\x78\xd5\x99\x0b\xe6\xa2\xb1\xa9\x0e\x94\x31\x68\x7a\x12\x5e\ -\x9f\x17\x69\x7e\x5f\x67\x28\x14\xde\x46\x39\x81\x20\x64\x84\x62\ -\xf8\x5a\x35\x40\x08\x81\x24\x49\x00\xc4\xcc\x40\xd0\x5d\xf5\x83\ -\xbb\xee\xfa\xcf\xf7\xdf\xfa\xd3\x99\xef\xbc\xfe\x5a\xde\xd4\x69\ -\x53\xae\x1b\x88\x84\x8b\xb2\xc7\xf9\x61\x0f\x46\xf6\xb4\xde\xde\ -\xd0\xb6\x67\x7f\xfb\xd2\x73\xb7\xdc\x76\xc7\x8e\xf7\xfe\xfa\xd1\ -\x31\x7a\x95\x18\x83\xa2\x28\x90\x25\x19\xef\xff\xf5\xe3\x4e\xce\ -\xf1\xa4\xdb\xe5\x3e\xec\x76\xb9\x0e\x81\x92\x47\xdf\x78\xeb\x9d\ -\x56\x45\x56\xe0\x70\x3a\x41\xe9\xe0\x10\xe3\xf5\xba\x41\x08\xc9\ -\xd0\x34\x3d\x1d\x20\xc7\x6d\x59\x9d\x14\x00\x23\x14\x96\x6e\xa0\ -\xa5\xae\x0e\xcd\x75\x75\x9d\x13\x26\x14\x90\x95\x2b\xae\x43\x38\ -\xd2\x07\xdd\xd0\x51\x5c\x5c\x9c\x6b\x72\x7e\x2e\xa3\x14\xa6\xc5\ -\x17\xf9\x83\x99\x7f\xbb\xe6\xaa\xe5\x37\x39\x1c\x8e\xbc\xbe\x70\ -\x68\x4d\x7d\x7d\x7d\x88\x73\x0e\x4a\x19\x98\xc4\x40\x19\x83\xaa\ -\xaa\x50\x54\x95\x30\x06\x08\x4b\xc0\xb4\x2c\x10\x4a\x1d\x94\x52\ -\x55\x51\x54\xc8\xb2\x0c\x49\x62\x60\x8c\x81\x73\x81\xd3\xa7\x4f\ -\x4f\xcb\xca\x0c\xbe\xad\xe9\xc9\x9f\x02\xe2\xac\x11\xfe\x3d\xfc\ -\xf0\xc3\xc7\x3e\xbc\xf0\xe2\x8b\x27\x50\x1b\x04\x02\x14\x7d\xdd\ -\xdd\x46\xd6\xb8\xac\xe5\x13\x0a\x0a\x73\xda\xda\x5b\xd1\xd7\x17\ -\x02\xa5\x0c\x75\x8d\xcd\x0b\xfb\x23\x91\x4b\x82\x99\x99\x77\xde\ -\xbe\xe6\x96\x9c\xeb\xae\x59\x0e\x87\xac\x94\x55\x1e\xac\x9e\xe5\ -\xf2\xb8\x71\xc1\x79\xe7\x65\x68\x7a\x02\xba\x61\x80\x10\x82\x71\ -\x59\xe3\x90\x1e\x08\x78\x3e\x5b\xbf\x31\xdb\x32\xec\x9d\xba\xa5\ -\xa7\x09\x9b\x3f\xfa\xc0\xbd\xf7\xcc\x29\x9a\x34\x11\xdd\x3d\x5d\ -\x90\x24\x09\xaa\x43\x85\x96\xd4\x91\xe6\xf3\xe1\x9c\xc5\x67\x15\ -\x8c\xcf\xcd\x3b\xa7\xa6\xb6\x76\x91\x61\x5a\xbf\xa5\x8c\xda\x84\ -\x90\x91\x35\x30\x56\x1b\x33\x4c\x63\xba\xcd\x85\xe1\x0b\x04\x5a\ -\xdc\x6e\x97\xbb\xab\xbb\xc7\xdb\xdc\xd2\x82\x33\xe6\xcc\x04\xa5\ -\x0c\xa5\x93\xcb\x30\xef\x8c\x39\x19\x2d\xad\x6d\xe7\x0d\x44\xa3\ -\xe0\xb6\x89\x2d\x9f\x6f\xc6\xa5\x17\x2f\xc5\xae\x7d\xfb\x17\x56\ -\x54\x1d\xb4\x8f\x1e\x3d\x8a\x60\x30\x88\x81\x81\xe8\xe0\x48\x1a\ -\xea\xc5\x45\x17\x5c\x00\x5d\xb7\x2e\xff\xf0\xe3\xb5\x4b\x41\x80\ -\x6b\xae\x5a\xae\x5c\x7c\xd1\x05\xa8\x6d\x38\x02\xc6\xa4\x41\x26\ -\x72\x38\x31\xd0\xdf\x8b\xde\xde\x6e\x94\x96\x96\x62\xe6\x8c\x69\ -\x78\xff\x83\x0f\xeb\xb8\x1d\xb7\x68\xaa\xe9\x8e\x00\x60\x8e\x46\ -\xc0\xc5\x69\x39\xd9\x39\x6b\x0b\xf2\xc7\xcb\x15\x07\x0f\xee\x0e\ -\x0d\x44\x3d\xab\xae\xbb\xbe\xf8\xdc\xc5\x67\xa1\xa9\xb9\x11\xcd\ -\x2d\x2d\xb0\x6d\x0b\x6e\xb7\x1b\x39\x39\xb9\x28\x2c\xc8\xc3\x9e\ -\xbd\x7b\xc0\xa8\x84\xcd\x5b\x3f\x47\x5b\x7b\x3b\x6e\xbe\xfe\xdb\ -\x94\x10\x01\x87\xc3\x09\xb7\xc7\x03\xd3\x34\xa1\xeb\x1a\x9a\x5b\ -\x1b\x71\xc5\xe5\x17\x63\xc5\xb7\xae\x56\x28\x21\x30\x4d\x13\xb5\ -\x0d\x47\x52\x12\x9c\x41\x96\x64\x08\x2e\x70\xa0\xf2\x20\xf4\xa4\ -\x06\xcb\x16\xd8\xb9\x6b\x0f\x42\xfd\xe1\x75\x8a\x22\xf3\x21\xd5\ -\x30\xa2\x0f\x4c\x99\x3f\x72\x5f\x48\x8b\x27\x1e\x7e\xf2\xd1\x47\ -\x7f\xb2\xf8\xec\x45\xd8\xb3\x77\x1f\x3a\x3b\x3b\x71\xfe\x79\x8b\ -\x51\x5e\xbe\x13\x8d\x4d\x8d\xf0\xf9\xbc\x50\x55\x27\x7c\x3e\x1f\ -\x04\x38\xfc\x3e\x3f\xc6\x8d\xcb\xc6\x8e\x1d\xbb\xf0\xca\x9f\xde\ -\xc2\xf7\xbe\xb3\x1a\x0b\xe6\xce\xc1\xa1\xc3\x87\x30\x75\xea\x34\ -\xb8\x5d\x4e\x34\xb6\x36\x80\x80\x1c\x23\x06\xa7\x73\x50\x82\x5b\ -\xd6\x60\x73\x65\x8c\x01\x00\x82\xe9\x41\xec\xde\xb3\x1f\x0f\x3d\ -\xfc\xb3\x1a\xca\x68\x79\x30\x90\xbe\x20\x1e\x8f\xe7\x25\x4d\x7d\ -\x11\x65\xec\xc0\x98\x34\xaa\xf0\xbf\x87\xc0\xe6\xdc\x11\xf4\xf9\ -\xe7\x4c\x3d\x6d\x0a\x42\x7d\x3d\xd0\xf4\x18\xe6\x9d\x31\x0b\x0d\ -\x0d\x75\x68\x69\x6d\x41\x20\x10\xc0\x97\x15\x07\xf5\x8a\xca\xc3\ -\x9d\xf3\xe6\xcd\xce\xb9\x6c\xd9\x52\xd5\x32\x0c\x58\x96\x09\xaf\ -\xcf\x8b\xd6\xd6\x36\x4b\x55\x14\xe2\xf7\xf9\x19\x21\x12\xde\xff\ -\xeb\x87\x38\xff\xbc\x73\x51\x3c\xb1\x04\xed\x1d\x6d\xb0\x6d\x1b\ -\x84\x12\x18\x86\x3e\x38\x7f\xb3\xc1\x5a\x63\x8c\xc1\xed\x72\xe3\ -\x60\xf5\x61\x3c\xfd\x9b\x17\xba\x9b\xea\xeb\x6e\x8e\xf4\x85\xca\ -\x01\x28\x99\x99\x99\x8e\xec\xec\xec\x84\x31\x8c\xee\x47\xd6\xc0\ -\x30\xa1\xc7\x4d\x2b\x23\xb7\xb0\xa0\xc8\xed\x76\x83\x73\x0b\xdc\ -\xe6\x50\x54\x15\x6d\xed\xed\xc8\xcd\xcd\xc5\x86\xcd\x5f\x88\x1d\ -\x3b\x77\x3f\xc6\x64\xf9\x8f\x1f\x7f\xfc\xd9\x8d\x00\xf9\xe9\x9a\ -\x5b\x6f\x24\xb1\xd8\x00\xf2\xf2\xb2\xc5\xa4\x89\x05\xf6\x33\xcf\ -\xbf\x28\x55\x1d\xac\xc6\xce\xf2\x5d\x7b\x0f\x1c\xac\xde\xba\xee\ -\xb3\x8d\xd7\xfe\xf0\x07\xff\x3e\x7e\xd6\xcc\xe9\x88\x27\xe2\xd0\ -\x0d\x1d\x42\x70\x50\x42\x40\x28\x83\x22\x4b\x30\x2d\x1b\x9d\x1d\ -\x5d\x58\xbf\x7e\x33\xea\x6b\xeb\x76\xa7\x9c\x57\x01\x98\x3d\x3d\ -\x3d\xd1\x9e\x9e\x1e\x9c\x90\x85\x9e\x7f\xe9\xc5\x63\x93\x0c\x65\ -\x94\x24\x92\x89\xd2\x6d\x3b\x76\x96\x35\x34\x34\x29\x13\x0a\x0b\ -\x90\x9b\x9d\x83\xa6\x96\x26\x64\x04\x83\xf8\x74\xfd\x16\x2d\x7c\ -\x54\xbb\x86\x39\xd4\x6e\x8d\x58\xfb\x88\x6d\x7f\xff\xea\x2b\x2e\ -\x93\x0d\xd3\x80\xa2\x28\x44\x66\x12\x33\x0c\x83\x6e\xd9\xba\x1d\ -\xb1\x78\xfc\x70\x4f\x47\xdb\xbf\x36\x35\x35\x6c\xdc\x5f\x59\x35\ -\x2b\x33\x98\x91\xeb\xf7\xfb\xa1\x48\x0a\x54\x45\x85\x00\x81\xa1\ -\x1b\x08\xf5\xf6\xa3\xa9\xb1\x09\xb5\x47\x6a\x51\x58\x58\x88\x9a\ -\xda\x7a\xb3\xaf\x2f\xb4\xc1\xd0\xf5\x28\x00\x65\x2c\x9e\x19\x11\ -\x01\x49\x19\xf1\x31\x42\x09\xbd\xfd\xd0\x91\x23\x0f\x54\x56\x1d\ -\x5a\x75\xa0\xa2\xe2\x91\xff\x7a\xe4\x21\x4f\x9a\xdf\x07\xb7\xdb\ -\x83\xc9\x25\x45\x6a\xcd\x91\xba\xef\x51\x43\x7d\xcb\x4a\x24\x6f\ -\x98\x3a\xa5\xcc\xa9\x28\x83\xa2\x2c\x36\x10\x47\x32\x19\x27\x67\ -\x2d\x9a\x8f\x33\xe7\xcd\xc3\x1f\xdf\x7c\x3b\xcf\x32\xcc\x7c\xce\ -\xed\xca\x48\x7f\xb4\xb6\xbf\x3f\x32\xa7\xba\xaa\x0a\x4e\x87\x0b\ -\xef\x7f\xb4\x4e\x54\x1f\x3a\xdc\x66\xe8\x7a\x44\x51\xe4\xac\x9b\ -\x6e\x58\x99\x55\x5c\x34\x11\x81\x40\x00\x0b\xe6\xcd\x9d\xda\x50\ -\x57\xb7\x3a\x16\x8d\xfe\x38\x15\x05\x0a\xc0\x4c\x99\x7d\x1c\x80\ -\xf6\xa6\xe6\xe3\xf6\x46\x03\x59\x59\x7d\x1e\x8f\xf3\x97\x47\xea\ -\xea\x66\x34\x36\x36\xdc\x94\x9f\x9f\x87\xbe\x70\x1f\xd6\xdc\xfa\ -\x2f\x34\x23\x18\x7c\xbc\xab\xfb\xe8\x7f\x16\x8c\x1f\xef\xbe\xf1\ -\xfa\x6f\x23\x1a\x8b\x42\x51\x14\xf4\x87\xdb\x10\x8d\x44\x10\xf0\ -\xa7\x81\x30\x86\x58\x3c\xd6\x2a\x20\xa2\x42\x60\x52\x41\x7e\x41\ -\x49\x71\xd1\x24\xf8\xbd\x1e\xb4\xb5\x77\xa2\xbe\xbe\xa1\xe5\x70\ -\x65\xe5\x9d\xba\x96\x6c\x76\x78\x3c\xa7\x7f\xba\x7e\xd3\x8b\x85\ -\xf9\xf9\xce\x5d\x7b\xf7\x61\x5f\x45\x85\x46\x18\x69\xa6\x94\x7a\ -\x39\x3f\xa6\x81\xf8\xf0\x66\x3c\x02\x40\x57\x7b\xfb\x71\x7d\xc0\ -\x93\x96\x06\x02\x72\xe1\x94\xd2\xb2\x65\x9c\x0b\xf8\x7d\x7e\x24\ -\xb5\x24\x12\x89\x38\xd6\xac\xbe\x89\x11\x41\xfc\x4e\x97\x03\x7d\ -\xfd\x61\x80\x08\xd8\xa6\x8d\x5d\x7b\xf6\x21\x2d\x10\x84\xd7\xe7\ -\x43\x75\x4d\x1d\x42\x3d\x3d\x15\xa6\xae\x77\xab\x0e\xc7\x04\xdd\ -\xd4\xb3\xcb\xf7\xec\xc5\xe2\x45\x0b\x51\x5d\x53\x8b\x96\x96\x96\ -\xb5\xf1\x58\xb4\x0b\x80\x33\xd6\x1f\x3e\x70\xe8\xe0\xc1\xdf\xfd\ -\xea\xd9\xe7\xef\xec\xee\xee\xde\xd4\xd9\xd2\xf2\xeb\x48\x7f\xb8\ -\x9c\x73\xae\xa4\x56\x9c\x8f\x1a\xd9\xc5\x49\x27\xb2\x09\x93\x4b\ -\xcf\x2d\x2b\x2b\x7b\xe7\xf6\x5b\x57\x65\xe8\x86\x86\x81\x58\x14\ -\x8b\x16\x9e\x09\x9b\x73\xe8\xba\x06\x59\x96\xa1\x28\x32\x54\xd5\ -\x81\x48\x34\x8a\x57\xff\xf8\xa6\x58\xbb\xf6\xb3\x83\x8c\x31\xc3\ -\xeb\xf3\x8f\xe7\xc2\x8e\xd7\x1e\xaa\x5e\x1d\xee\xed\xad\x02\xe0\ -\xf1\x07\x02\x93\x03\x19\x19\xcb\x9c\x4e\xd7\x7c\x59\x51\x73\x1b\ -\x8e\x1c\xfa\x51\x2c\x3a\x70\x20\x95\x22\x86\xa2\xaa\xaa\xec\x70\ -\xa4\xc7\xa3\xd1\x06\x08\x11\x4b\xa5\x0d\x4f\xa5\x8d\x35\x2c\x85\ -\x4c\x00\x5c\xfa\x8a\x83\x54\x09\x80\x65\x19\xe6\xf2\x29\xa5\xa5\ -\x19\x8b\x17\x9f\x8d\xb5\xeb\x3e\x82\x2c\x29\xd8\xb4\xe9\x0b\xa8\ -\x4e\x15\xb3\x66\x4c\x07\xa3\x0c\x7d\x7d\xfd\x08\xf7\x85\xb1\x7d\ -\xe7\x6e\xac\xfd\x64\x7d\x53\x63\xdd\x91\x5b\x6c\xcb\x8e\x79\xfd\ -\xfe\x22\x40\xb8\x22\xe1\x70\x0b\x00\x1f\x00\x1e\x09\x87\x0f\x45\ -\xc2\xe1\x2a\x42\x29\x75\xba\xdc\xe9\x7a\x32\x29\x52\xab\x9b\x04\ -\xc0\x0d\x5d\x4f\x1a\xba\xde\x93\x4a\x11\x96\x7a\x36\x94\xf3\x43\ -\x51\x18\xba\x8f\x39\x52\x92\xd4\x6a\x38\x01\x38\x8e\x76\xb4\xff\ -\x61\xe3\xe6\xcd\x67\x4f\x9d\x3a\x65\xf6\xd9\x0b\xcf\x44\xf9\xae\ -\x3d\x78\xe5\xb5\x97\xb5\xfe\x70\x7f\xcd\xc4\x49\x13\xca\x16\x2e\ -\x98\xa7\xaa\x32\x45\x28\x14\x82\xc3\xe9\x81\xdf\xeb\xd5\xf5\x64\ -\xd2\x0b\x40\x09\xf7\xf6\x74\x00\x30\x00\x78\x53\x4e\x18\x43\xb9\ -\x2b\x38\x27\x89\xd8\x40\xf8\x98\xd8\xfa\xfb\xf1\x05\x1f\xe5\xa4\ -\x9d\x5a\x79\x7b\x74\x01\x8f\x05\x80\xa5\xcc\x91\x32\x97\x69\xe8\ -\x03\x87\x2b\x2b\x1e\xfa\xc5\xff\x3c\xf5\x68\x55\xf5\xe1\x59\x3b\ -\x77\x96\xf7\x54\x57\x56\xbc\x10\x8b\x46\xaa\x9a\x1a\x1b\x2f\xca\ -\xc9\xc9\xbe\x75\xd1\xfc\x33\xe0\xf5\x7a\x90\x96\x96\x8e\xed\xe5\ -\xbb\x8b\x98\xac\x14\xda\xa6\xd1\x9a\xfa\xff\x06\xf0\xf7\x09\x2a\ -\xe5\xa4\x3e\x4c\x0d\x0f\xcf\xdb\xe1\x05\x3a\x1c\xc0\x10\x08\x6b\ -\xf4\x9e\xe3\x57\xa5\xd0\x90\x39\x75\x4d\x6b\x6b\xa8\x39\xf4\xe3\ -\x37\x43\xa1\x95\xf1\x81\x68\x65\x2c\x1a\x69\x00\xe0\x12\xdc\x6c\ -\x6e\x6e\x6e\x89\x2e\x98\x77\x86\xcf\xe2\x04\x3b\x76\xed\x45\x3c\ -\x9e\x48\xb8\xdd\x6e\x5f\xb4\xdf\x18\xda\xe0\xb4\x86\x81\x18\xb2\ -\x64\xea\x19\x19\xf6\x7b\x62\x54\x14\xec\x51\xd1\x38\xf9\xbe\x50\ -\xaa\x88\xe9\x50\xfa\x00\x70\xa7\xee\x4e\x00\x12\x21\x84\x0a\x21\ -\xdc\xa9\x94\x90\x98\xc4\xa4\x82\x89\x45\x77\xe4\x17\x16\x9e\x15\ -\x1b\x18\x68\x68\x6d\x6d\xdb\x1e\x8b\x84\xcb\x75\x4d\x6b\xe0\xb6\ -\x9d\x00\xa0\x0d\xb3\x44\xca\xf1\x44\x0a\x10\x46\x01\xe0\x63\x00\ -\xf9\xc7\x0e\xf9\x86\xb1\xd0\x50\x1d\xa8\xc3\xd2\x49\x4d\x75\x43\ -\x79\x98\x11\x42\x88\x2c\x84\x90\x52\xb9\x99\x18\x96\x2e\xd6\xa8\ -\x15\xd7\x52\x77\xfb\x54\x1e\x74\x9f\x8c\x46\x87\xd8\x68\xb8\xd3\ -\x43\x20\xd8\x18\x67\x87\x7c\x58\xb1\x19\xa3\xee\xa7\xfe\x98\xfe\ -\x1f\xd9\x99\x1b\x06\x88\x8e\x9a\xa7\xc7\x02\x21\xfe\x59\x0e\x8f\ -\xbe\xfe\x77\x00\x74\x4a\x51\x78\xe6\x5e\x0b\xa1\x00\x00\x00\x00\ -\x49\x45\x4e\x44\xae\x42\x60\x82\ -" - -qt_resource_name = b"\ -\x00\x05\ -\x00\x6f\xa6\x53\ -\x00\x69\ -\x00\x63\x00\x6f\x00\x6e\x00\x73\ -\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\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\x1e\ -\x01\xea\x7e\xa7\ -\x00\x47\ -\x00\x6e\x00\x6f\x00\x6d\x00\x65\x00\x2d\x00\x4d\x00\x65\x00\x64\x00\x69\x00\x61\x00\x2d\x00\x50\x00\x6c\x00\x61\x00\x79\x00\x62\ -\x00\x61\x00\x63\x00\x6b\x00\x2d\x00\x53\x00\x74\x00\x61\x00\x72\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x0a\ -\x05\xab\x56\x47\ -\x00\x70\ -\x00\x79\x00\x71\x00\x6f\x00\x64\x00\x65\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\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\x11\ -\x01\xa6\xc4\x87\ -\x00\x64\ -\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x6f\x00\x70\x00\x65\x00\x6e\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\ -\x00\x09\ -\x06\xc7\x98\x67\ -\x00\x61\ -\x00\x62\x00\x6f\x00\x75\x00\x74\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x10\ -\x0c\xbc\x2e\x67\ -\x00\x64\ -\x00\x6f\x00\x63\x00\x75\x00\x6d\x00\x65\x00\x6e\x00\x74\x00\x2d\x00\x6e\x00\x65\x00\x77\x00\x2e\x00\x70\x00\x6e\x00\x67\ -\x00\x14\ -\x0d\x9a\x02\xe7\ -\x00\x47\ -\x00\x6e\x00\x6f\x00\x6d\x00\x65\x00\x2d\x00\x53\x00\x79\x00\x73\x00\x74\x00\x65\x00\x6d\x00\x2d\x00\x52\x00\x75\x00\x6e\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\x09\x00\x00\x00\x02\ -\x00\x00\x00\xda\x00\x00\x00\x00\x00\x01\x00\x00\x6b\xc7\ -\x00\x00\x00\x56\x00\x00\x00\x00\x00\x01\x00\x00\x15\x4a\ -\x00\x00\x00\x98\x00\x00\x00\x00\x00\x01\x00\x00\x23\xa9\ -\x00\x00\x00\x10\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\ -\x00\x00\x01\x02\x00\x00\x00\x00\x00\x01\x00\x00\x71\xc8\ -\x00\x00\x00\x28\x00\x00\x00\x00\x00\x01\x00\x00\x0b\x70\ -\x00\x00\x01\x1a\x00\x00\x00\x00\x00\x01\x00\x00\xb2\x33\ -\x00\x00\x01\x40\x00\x00\x00\x00\x00\x01\x00\x00\xbb\x78\ -\x00\x00\x00\xb2\x00\x00\x00\x00\x00\x01\x00\x00\x66\x61\ -" - -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() \ No newline at end of file diff --git a/examples/qidle/share/qidle.desktop b/examples/qidle/share/qidle.desktop deleted file mode 100644 index 90f355ea..00000000 --- a/examples/qidle/share/qidle.desktop +++ /dev/null @@ -1,9 +0,0 @@ -[Desktop Entry] -Encoding=UTF-8 -Name=Qidle -Comment=Qidle, idle made with pyQode -Exec=qidle -Terminal=false -Type=Application -Icon=/usr/share/pixmaps/qidle.png -Categories=Development;IDE; diff --git a/examples/qidle/share/qidle.png b/examples/qidle/share/qidle.png deleted file mode 100644 index c838a4e4..00000000 Binary files a/examples/qidle/share/qidle.png and /dev/null differ diff --git a/examples/widgets/console.py b/examples/widgets/console.py new file mode 100644 index 00000000..977773c9 --- /dev/null +++ b/examples/widgets/console.py @@ -0,0 +1,11 @@ +from pyqode.qt import QtWidgets +from pyqode.python.widgets import PyConsole + + +app = QtWidgets.QApplication([]) +console = PyConsole(color_scheme='qt') +console.resize(800, 600) +# console.change_interpreter('python2') +console.show() + +app.exec_() diff --git a/examples/widgets/interactive_console.py b/examples/widgets/interactive_console.py new file mode 100644 index 00000000..28d9b2b7 --- /dev/null +++ b/examples/widgets/interactive_console.py @@ -0,0 +1,37 @@ +""" +This example show you how to use the PyInteractiveConsole. We run a python +script which raises an exception. The exception traceback will be highlighted +differently than the rest of the process output and each module file path are +clickable by the user. We open an editor to show the specified module at the +specified line. +""" +import os +import sys +from pyqode.core.api import TextHelper +from pyqode.qt import QtWidgets +from pyqode.python.widgets import PyInteractiveConsole, PyCodeEdit + + +editor_windows = [] + + +def open_editor(path, line): + global editor_windows + print(path, line) + editor = PyCodeEdit() + # prevent the restoration of cursor position which will reset the position + # we will set after opening the file + editor.file.restore_cursor = False + editor.file.open(path) + TextHelper(editor).goto_line(line) + editor.show() + editor_windows.append(editor) + + +app = QtWidgets.QApplication(sys.argv) +console = PyInteractiveConsole() +console.open_file_requested.connect(open_editor) +console.start_process(sys.executable, [ + os.path.join(os.getcwd(), 'interactive_process.py')]) +console.show() +app.exec_() diff --git a/examples/widgets/interactive_process.py b/examples/widgets/interactive_process.py new file mode 100644 index 00000000..601b65a8 --- /dev/null +++ b/examples/widgets/interactive_process.py @@ -0,0 +1,8 @@ +""" +Simple interactive process used to demonstrate the use of the +PyInteractiveConsole widget. +""" +print('running an interactive process that will raise an error soon') + +# traceback will be highlighted +raise RuntimeError() diff --git a/examples/widgets/outline.py b/examples/widgets/outline.py new file mode 100644 index 00000000..c4b6018b --- /dev/null +++ b/examples/widgets/outline.py @@ -0,0 +1,27 @@ +""" +This example show you how to use the PyOuytlineTreeWidget to show the structure +of a python document. + +The widget works in combination with a DocumentAnalyserMode. Such a mode must +be installed on the editor widget otherwise no data will be displayed. +""" +import sys +from pyqode.qt import QtCore, QtWidgets +from pyqode.core.api import code_edit +from pyqode.core.widgets import OutlineTreeWidget +from pyqode.python.widgets import PyCodeEdit + + +app = QtWidgets.QApplication(sys.argv) +window = QtWidgets.QMainWindow() +editor = PyCodeEdit() +editor.file.open(code_edit.__file__) +window.setCentralWidget(editor) +window.resize(800, 600) +outline = OutlineTreeWidget() +outline.set_editor(editor) +dock_outline = QtWidgets.QDockWidget('Outline') +dock_outline.setWidget(outline) +window.addDockWidget(QtCore.Qt.RightDockWidgetArea, dock_outline) +window.show() +app.exec_() \ No newline at end of file diff --git a/forms/rc/class.png b/forms/rc/class.png index 88432d2c..984b8f17 100644 Binary files a/forms/rc/class.png and b/forms/rc/class.png differ diff --git a/forms/rc/func.png b/forms/rc/func.png index e515e76e..72c4c695 100644 Binary files a/forms/rc/func.png and b/forms/rc/func.png differ diff --git a/forms/rc/func_priv.png b/forms/rc/func_priv.png index 49dda7df..bcfccb17 100644 Binary files a/forms/rc/func_priv.png and b/forms/rc/func_priv.png differ diff --git a/forms/rc/func_prot.png b/forms/rc/func_prot.png index f8add65e..bb8a43a4 100644 Binary files a/forms/rc/func_prot.png and b/forms/rc/func_prot.png differ diff --git a/forms/rc/keyword.png b/forms/rc/keyword.png index e5a51858..89c300ae 100644 Binary files a/forms/rc/keyword.png and b/forms/rc/keyword.png differ diff --git a/forms/rc/namespace.png b/forms/rc/namespace.png index 18d29415..f85c9222 100644 Binary files a/forms/rc/namespace.png and b/forms/rc/namespace.png differ diff --git a/forms/rc/var.png b/forms/rc/var.png index 089cfb45..3e804606 100644 Binary files a/forms/rc/var.png and b/forms/rc/var.png differ diff --git a/forms/rc/var_priv.png b/forms/rc/var_priv.png index 8c6cf64f..a2105bd1 100644 Binary files a/forms/rc/var_priv.png and b/forms/rc/var_priv.png differ diff --git a/forms/rc/var_prot.png b/forms/rc/var_prot.png index a7496aad..fdf87d38 100644 Binary files a/forms/rc/var_prot.png and b/forms/rc/var_prot.png differ diff --git a/pyqode/__init__.py b/pyqode/__init__.py index 68a59e94..c77fe1d5 100644 --- a/pyqode/__init__.py +++ b/pyqode/__init__.py @@ -1,6 +1,8 @@ # -*- coding: utf-8 -*- """ -pyQode is a code editor framework for python qt applications. +pyQode is a source code editor widget for Python Qt (PyQt5/PyQt4/PySide) + +pyQode is a **namespace package**. """ import pkg_resources pkg_resources.declare_namespace(__name__) diff --git a/pyqode/python/__init__.py b/pyqode/python/__init__.py index ce871ade..3dee597b 100644 --- a/pyqode/python/__init__.py +++ b/pyqode/python/__init__.py @@ -1,9 +1,10 @@ # -*- coding: utf-8 -*- """ pyqode.python is an extension of pyqode.core that brings support -for the python programming language. It does so by providing a set -of additional modes and panels for the frontend and by supplying -dedicated workers for the backend. +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.3.0' + +__version__ = '2.12.1' diff --git a/pyqode/python/_forms/pyqode_python_icons_rc.py b/pyqode/python/_forms/pyqode_python_icons_rc.py index 333fa7c5..51deca91 100644 --- a/pyqode/python/_forms/pyqode_python_icons_rc.py +++ b/pyqode/python/_forms/pyqode_python_icons_rc.py @@ -2,202 +2,53 @@ # Resource object code # -# Created: Mon Aug 11 09:29:41 2014 -# by: The Resource Compiler for PyQt (Qt v5.3.1) +# Created by: The Resource Compiler for PyQt5 (Qt v5.5.1) # # WARNING! All changes made in this file will be lost! -from pyqode.core.qt import QtCore +from pyqode.qt import QtCore qt_resource_data = b"\ -\x00\x00\x02\x6b\ +\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\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\x0d\x49\x44\x41\x54\x78\xda\x62\ -\x64\x08\x8a\x61\xc0\x03\x84\xb9\x39\x39\xaf\xfc\xfb\xf7\x8f\xf3\ -\xfb\xcf\x9f\x6a\x40\xfe\x2b\x64\xc9\xff\x6b\x17\x33\x30\x11\xd2\ -\x5c\x12\x1e\x2c\x3e\xbb\xa7\x8d\x9f\x8d\x9d\xed\x16\x50\x4c\x0c\ -\x5d\x11\x13\x7e\xcd\x41\xe2\x7e\x2e\x0e\x8c\x3f\x59\xd9\x18\x82\ -\x4b\x8a\xf9\xd9\xd8\x30\x0d\x61\xc2\xa7\xd9\xd7\xd9\x91\xf1\xc2\ -\xe7\x6f\x0c\x7f\x7e\xff\x66\xb0\x15\x11\x64\x70\x49\x4d\x06\x1a\ -\xc2\x8a\x62\x08\x13\x6e\xcd\x0e\x40\xcd\x5f\x19\x7e\xfe\xfa\xc5\ -\x70\xe9\xdd\x7b\x86\x25\x77\x1f\x32\x5c\xfb\xf4\x99\x41\xc8\xcd\ -\x8d\x9f\x85\x85\xe5\x0e\x4c\x03\x0b\x56\xcd\x4e\x0e\x8c\x27\x3f\ -\x7c\x66\xb8\xf2\xf1\x33\xc3\xa9\xd7\x6f\x18\x3e\x7e\xfd\xca\xf0\ -\xfb\xfb\x0f\x86\x5f\x3f\x80\xf8\xe7\x4f\x86\xbf\x0c\x0c\xcc\x40\ -\xf5\x52\x40\xfc\x8c\x05\x5d\xb3\x87\xa3\x3d\xe3\xcc\x27\x2f\x19\ -\x2e\x00\x6d\xfd\xfc\xed\x1b\x50\xe3\x77\xb0\xc6\xdf\x40\xfc\xe3\ -\xd3\x27\x86\x8f\x07\x0f\x7d\xfb\xff\xe7\x8f\x2a\x48\x33\xcc\x05\ -\x60\xcd\xc5\x61\x81\xe2\x26\x36\xd6\x8c\x45\x37\xee\x31\x7c\x06\ -\x6a\x42\x68\x84\xd0\xbf\x80\xce\xff\x78\xf8\x08\x8a\x66\xb0\x01\ -\x20\xcd\x39\x41\xbe\xe2\x4a\x16\xe6\x8c\x0d\xb7\xee\x33\xfc\x00\ -\x3b\xf5\x3b\xd8\x46\x38\x0d\xd4\xfc\xe9\xe8\x31\x0c\xcd\x60\x03\ -\xfe\xfc\xfd\xc3\x2d\xa4\xa3\xcd\x38\xf1\xce\x23\x86\x1f\x30\x0d\ -\x40\xdb\x8d\xf9\x78\x18\x42\xb4\x55\x19\xb4\xf8\x79\x19\x8e\x5d\ -\xb8\xfc\xa7\xf6\xec\x39\xf5\xb7\x0b\xa7\x83\x35\xcb\xcb\xcb\x33\ -\xc0\x68\x46\x60\x4a\x14\x63\x65\x65\xbd\x23\x1f\x1d\xc5\xfb\x8f\ -\x91\x01\x1c\x58\x36\x42\x02\x0c\xe5\xfa\x5a\x0c\x53\xda\x5a\x19\ -\xfe\xfc\xfc\xf9\x5f\xdc\xd2\x56\xbf\x23\x26\xfc\x32\x4c\x23\x32\ -\x60\x84\x26\x65\xa0\x21\x2c\x77\x44\x3c\x3d\x79\x35\x81\x9a\x7b\ -\x2d\x8d\x19\x7c\x8c\x8d\xc0\x41\x8d\xa2\x16\x0b\x80\xa5\x83\x57\ -\xbf\x7f\xff\x51\x79\xbd\x6d\xfb\xe7\x60\x59\x49\x86\xc9\xcd\xcd\ -\x60\xcd\x8f\x4c\xec\xa4\x91\x93\x3e\x36\x8c\x9c\x90\x5e\xfd\xf9\ -\xf3\x47\xc5\x80\x93\xe3\x2f\xc8\xd9\x20\x01\xb9\x33\x87\x9e\x31\ -\x60\xba\x82\x11\x5f\x52\x7e\x65\xa5\xae\xca\x22\x69\xe3\xa0\x8f\ -\x64\x2b\xc3\xa3\x47\x8f\xee\x63\xf1\x02\x98\xcf\xf8\xff\xff\x7f\ -\xac\xb9\x09\x14\x60\x40\x8d\x6d\x0c\x90\x54\x57\x2e\x27\x27\x87\ -\x55\x1d\x40\x80\x01\x00\x14\xcb\xfe\x73\xe8\xfc\x47\x71\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\ -\x93\xbb\x6f\xd3\x50\x14\xc6\xcf\xb5\x9d\x80\x55\x05\x23\x90\x62\ -\xa0\xc2\xae\x4a\x9b\xf4\x41\x55\x08\x0a\x42\x01\xc2\x40\x11\x04\ -\x68\xda\x01\x0a\x43\x68\xc4\xc2\x8a\x18\x10\x62\xe8\x02\xa8\x74\ -\x41\x20\xc4\x8e\xf8\x03\x58\x11\x62\x40\x2c\x9d\x28\x13\x74\x28\ -\x18\xa5\x09\x69\x42\x2d\x82\x68\xe3\x47\x52\xbf\xb8\xbe\xaa\x2b\ -\x27\x31\xe5\x4a\x47\xf6\xb5\xcf\xef\xfb\xce\xf5\x39\x46\x33\x70\ -\x08\xb6\x59\x7b\x77\xb0\xec\x17\xdb\xb6\x59\xa3\xd9\x8c\xe1\xbd\ -\xec\x7f\xf9\xc0\x91\x80\xfa\x1f\x9c\xce\x5f\xe7\x6f\xcd\x3d\xe2\ -\x42\xe1\xf0\x57\xfc\x2c\xda\x9e\x44\x6d\x07\x9f\xce\x5f\xe3\x8f\ -\x4d\x64\x10\xc3\xee\x84\xab\xb9\x9b\x1c\x13\x0a\x75\x88\x50\xff\ -\x84\xa7\x31\x3c\x9e\x41\xda\x72\x15\x36\x36\x9a\xc0\x0e\x8b\x30\ -\x76\x29\xcb\xd1\x0c\xd3\x22\x42\x05\xc1\xa7\xa6\xa7\xf8\x44\xf6\ -\x3c\xd2\x8a\x55\x68\x36\x1a\xb0\xf6\xad\x08\xe5\xb7\xf3\xb0\x5e\ -\xf8\x01\x83\x62\x1f\x47\xd1\xb4\xe4\x01\x4c\x07\x7c\x03\xc3\xe3\ -\x17\x90\x22\xad\x80\xf2\xbd\x0c\xbf\x17\x25\x50\xd7\xd7\x40\x6f\ -\xe8\x38\x34\xd0\x75\x0d\xc0\x76\x68\x9c\x7f\x00\x47\x85\xf1\xc3\ -\x27\x31\x7c\x24\x33\x86\x6a\xef\x3e\xc2\x9f\xa5\x02\x68\x8a\x02\ -\xda\x26\xe4\x0a\xa8\xba\x02\xc5\x9f\x2b\x9a\xed\x38\xfd\x2e\xec\ -\x55\x40\xe0\x54\xee\x0a\x7f\x38\x99\x44\x95\x97\x6f\x40\xad\xd7\ -\xb7\xdc\x3c\x67\x45\x57\xa1\x2c\x57\x5b\x60\x22\x10\xc6\xf0\x89\ -\xa9\x49\x7e\xb0\x77\x00\x55\x5f\x7f\x00\x5d\x53\x09\x40\x9c\x09\ -\xec\x3a\xab\x50\xf9\xb5\xda\x01\x13\x01\xdb\x32\xbb\x84\x3d\xfb\ -\xd0\xea\xfb\x05\xd0\x74\x75\xcb\xb1\x6b\xa4\x17\x62\x93\x67\x60\ -\x57\xbc\x07\x0a\xf3\x9f\xcc\xda\xcc\xd3\xf8\xfd\xda\x02\x81\x45\ -\x51\x24\xf0\x2b\x7c\x45\x78\x12\xa3\xb8\x35\x52\xfa\x68\x2a\x62\ -\x59\x26\x71\xde\x7d\x7c\x08\x86\xef\xe4\x60\xf6\xc5\x33\x30\x0d\ -\xc3\xb9\xcc\xc7\x46\xcf\xcd\xdd\xfd\xec\x81\xfe\x85\x36\x47\x39\ -\x4a\xe3\xd6\x0c\xf5\xc4\x23\x91\xf8\x41\x48\x3e\xbe\x0d\x89\x8b\ -\x67\x01\xe8\x96\x2e\xa3\xa0\x89\xf3\x32\x64\xcb\xb2\xfa\x16\x97\ -\x97\xea\xdd\xd9\x34\x3c\x7c\xfe\x84\xc0\xf9\x52\xa8\xdb\x97\xeb\ -\x04\x85\xdf\x42\xb6\xb1\x08\x37\xd2\x6f\x99\x86\xe9\x90\x33\x0a\ -\x46\xa5\xbd\xe2\xf6\x4a\xda\x27\x51\x16\x52\x09\x66\x62\xff\xc0\ -\xa8\xcf\x15\x4a\xa5\x52\x21\xe0\x08\x64\x8f\x1c\xc7\x09\xfc\x9b\ -\xdc\x0f\x86\xc1\x59\x7c\xeb\x4e\xdd\x3d\x41\x10\x02\xf3\xfe\x0a\ -\x30\x00\xfc\xbd\xff\x8b\x35\x0d\xb7\x2e\x00\x00\x00\x00\x49\x45\ +\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\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\x84\ -\x93\x4d\x68\x13\x41\x14\x80\xdf\xa4\xdb\xd5\xd0\x60\xb0\x8a\x81\ -\x1e\x25\xf1\xa2\x20\xa1\x6a\x45\x2d\x4d\x6d\x2c\x5e\x2a\x74\x0b\ -\x7a\xf1\x26\x9e\xd4\x8b\xed\x49\x44\x7b\x10\x4f\x22\x78\x16\xf4\ -\xa0\x3d\x49\xc4\x93\xb9\x17\x6c\xeb\x42\x24\x48\x10\x29\xb1\x52\ -\xc1\x80\x69\x1b\xbb\x99\xec\xec\xce\xee\x6c\xd6\xb7\xdb\x6c\xdd\ -\xda\x6d\x7c\xf0\x78\xcc\xcf\xf7\xe6\xfd\x0d\x01\xe5\x3a\x74\x91\ -\x43\x7d\xf1\x78\xa5\xdd\x6e\xc7\x0d\xce\x8f\xe1\xba\x1e\x3e\x74\ -\x0b\xaf\x20\xf6\x3f\x78\xe6\xda\x54\xea\xf9\x93\xc7\x49\x79\x9f\ -\xbc\x8c\x7b\x47\xfe\xbd\x14\xeb\x0e\x2b\xa9\x2b\xf9\x1c\xe1\xbd\ -\x32\x4c\xcd\x4c\x27\x65\x79\xb7\x93\x58\x37\x78\x62\x6c\x94\x94\ -\x29\x03\x61\xdb\x30\x7c\xf8\x20\xe4\x6f\xde\x40\x27\xbd\x3b\x9c\ -\xc4\xf6\x86\x73\x08\xeb\xc0\x2d\x0b\x3e\x37\x7e\xc3\xeb\x6f\xab\ -\xf0\xa5\x49\xa1\x7f\x7c\x3c\x29\x49\x52\x35\x00\xa4\x48\xf8\x62\ -\x8e\x7c\xdc\xa4\x50\xd1\x28\xa8\x6b\xeb\xa0\xe9\x3a\xd8\x86\x09\ -\x96\x89\xca\x39\x38\x00\x3d\x78\x7f\x00\xb5\x46\x3a\x5d\xd8\x86\ -\x2f\x8f\x8e\x90\x17\x3f\xeb\x50\xc6\x57\x29\x63\x08\x1a\x3e\x68\ -\xa3\x8a\x56\x0b\xb4\xf9\x79\x66\x73\x2b\x33\xe9\xea\xb5\x20\x02\ -\x1f\x9e\xbe\x3a\x99\x3a\x75\xe1\x3c\xb9\xfb\x75\x05\x28\x42\x7f\ -\xc1\x2d\x5b\x18\x1b\x06\x63\xa3\xe1\x14\xf7\x4b\x67\x0a\x0f\xef\ -\xd5\x60\x70\x70\x2b\x05\x0f\xbe\xad\x4c\xa4\x8e\x9e\x1d\x22\xb3\ -\xcb\xdf\xc1\xf4\x43\x35\xfc\x17\x03\xfb\x36\x3f\x02\x4f\xef\xdc\ -\x82\x52\xa9\xe4\x85\x5e\x09\xa5\x4d\x24\xe1\x88\xbe\xfe\x13\xc7\ -\xc9\xb3\xea\x0f\x30\x03\xd0\xe8\x58\x6e\x42\x1b\xf3\x37\x1a\x0d\ -\xa7\x03\x93\x80\xc4\xb5\xeb\x77\x81\x5b\x76\xfa\xfe\x83\x47\x94\ -\x6e\xac\x03\x67\x58\x75\x04\x38\xe6\xce\x0d\x54\x4d\x83\xd6\xe2\ -\x12\x2b\x7e\x2a\x9f\x8c\x1a\x96\x6c\x36\xeb\xb7\xb1\x6e\xdb\x76\ -\x7a\x75\x6e\x8e\x62\x8e\x3e\x6c\xf9\x70\x13\xf4\x25\xd5\x2f\xd8\ -\xca\xbb\x37\x2f\x83\xe9\x0d\xa9\x27\x6a\x30\x07\xe8\x44\xa4\xd7\ -\xde\x17\xa9\xa9\x6d\x02\x6f\x22\xac\xaa\xcc\x15\x22\x73\x89\xfe\ -\xaa\x31\xc6\x4e\x47\x45\xe0\xed\x87\xe7\xa0\x2e\x84\x48\xb3\x0f\ -\x8b\x55\xe1\xba\x3d\xe0\x38\x19\xaf\xcf\x11\x1c\x09\x45\xb0\x63\ -\x90\xa0\xf3\xdb\x0e\x20\x3c\xb0\x07\xbc\x4b\x24\xef\x4b\x46\xc8\ -\x36\xac\x28\x8a\x67\x16\x50\xcf\x85\xea\xe0\x4b\x22\x91\x58\xf8\ -\x23\xc0\x00\xbc\xd3\x37\x40\x96\xe9\x0c\x28\x00\x00\x00\x00\x49\ -\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x01\x79\ -\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\x1b\x49\x44\x41\x54\x78\xda\xc4\ -\x93\xcf\x6a\x84\x30\x10\xc6\xe3\xea\x5d\x10\x57\x59\x7a\x5b\x4f\ -\x16\x72\xf0\x01\x7c\x09\xdf\x60\x1f\xc4\xab\xf8\x16\xfb\x48\x5b\ -\x16\x7a\x70\x25\x1e\x44\x29\x4b\xef\x8a\x7f\xb3\x19\x1b\x25\xa4\ -\xa4\x3d\x6c\xa1\x03\x1f\xc9\xfc\xc8\x8c\xc9\x37\xa8\x51\x4a\xd1\ -\x33\xb1\x43\x4f\x86\x21\xe5\x2f\x4c\x47\xa6\x3d\xd3\x27\x53\xc1\ -\xb9\xcc\x6a\x55\x83\x63\x92\x24\xe7\xbe\xef\x3d\x5d\xd7\x49\x1c\ -\xc7\x27\x80\x6c\x3d\xb7\x6d\xeb\x19\x86\x41\xd2\x34\x3d\xfd\xd4\ -\x60\x0f\xc5\xd3\x34\xa1\x61\x18\x3c\xfe\x55\x04\xc5\xc0\x9a\xa6\ -\xd9\x98\xaa\x01\x82\x83\xf3\x3c\x2f\x5a\xa3\xeb\x3a\x44\x08\x41\ -\x65\x59\xfe\x6a\xe2\x9d\x5d\xf3\x06\x4d\xd8\x13\x6e\x90\x83\xf2\ -\x3c\x7f\x2b\x8a\x02\x99\xa6\x79\xe1\x6c\x0b\x4d\x1a\xe3\x81\x1b\ -\xe6\xf2\x83\xa2\x89\x22\xfb\x50\x3d\x61\x27\xdc\x4a\xde\xcb\xec\ -\x2b\xe0\x06\x82\xc2\x28\x8a\xde\x31\xc6\x34\x0c\xc3\x2b\xe4\xa0\ -\x20\x08\xae\x8e\xe3\x50\xdf\xf7\x57\xb6\xd5\x7c\x9b\x42\x96\x65\ -\xaf\xe3\x38\xa2\xba\xae\xf1\xea\x78\x55\x55\x58\x66\xca\x29\xb0\ -\xf1\x2d\x82\x02\x91\x81\xb1\x22\x53\x4e\xc1\xb2\xac\x0b\x14\xd8\ -\xb6\xbd\x3a\x7e\x77\x5d\x77\x61\xb0\xfe\xf9\x14\xb4\x7f\xff\x1b\ -\x1f\x02\x0c\x00\x31\xa1\xb7\x7f\x8b\xba\x02\xdf\x00\x00\x00\x00\ -\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x02\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\x01\xb4\x49\x44\x41\x54\x78\xda\xa4\ -\xd3\xcd\x2f\x03\x41\x14\x00\xf0\xb7\xb5\x5d\x69\x9a\x68\x94\x68\ -\xe2\x28\xe5\xc2\x51\x42\x82\x28\x1a\x71\x21\xd1\x26\x9c\x9c\xc4\ -\xcd\x09\x47\x11\x07\x71\x72\x71\x14\x57\xfd\x17\x38\xfb\xaa\xea\ -\xa9\x11\x11\x91\x22\x44\x24\xaa\xc5\xee\xd8\x8f\xd9\x9d\x76\xbd\ -\xae\x5a\x45\xbb\x24\x5e\xf2\x32\xd9\xdd\xf9\xbd\xf9\x5c\x97\x69\ -\x9a\xf0\x9f\xe4\x01\x83\x8b\x4e\x81\x43\x34\x78\x3d\x9e\xd3\x42\ -\xa1\xe0\x51\x29\x6d\xc3\xe7\x4c\xf9\x47\x17\x38\x87\x85\x17\x26\ -\xa3\x81\xcd\xb5\x55\x9f\x50\x2b\x5c\xe0\xbb\xa6\xbf\x16\x28\xe1\ -\x48\x60\x2c\x1c\xe2\xa8\x5b\x80\xe8\xc2\xbc\x4f\x10\xbe\x16\x71\ -\xfd\x86\x47\x87\x06\xb8\x14\x51\x80\x19\x06\xf4\x35\xd6\x43\x78\ -\x66\x1a\x8b\xb8\xed\x22\x2e\x67\x1c\x42\x2c\x03\xd5\x75\x38\x79\ -\x7a\x86\xad\xcb\x1b\x38\x93\x08\xf8\x87\x87\x7d\x3c\xcf\xa7\x8b\ -\x9d\xf9\xaa\x78\x30\xc4\x1d\xbf\x10\x38\x15\x09\x24\x1f\xb3\x20\ -\xca\x32\x18\xaa\x06\xba\x86\x49\x29\xe4\x01\x6a\xb0\x7f\x33\x5f\ -\x09\x8f\x0c\xf4\x73\x1b\x77\x0f\x90\xc2\x51\x89\xa2\x20\x54\x2d\ -\x68\x60\x6a\x92\x04\xe2\xee\x9e\x62\x32\xd6\x8a\xe6\x9e\x2f\xc7\ -\xf3\x13\xe3\x81\xce\xde\x1e\x6e\xee\xfc\x0a\x08\xa2\x4f\xf8\xde\ -\xea\x38\x7d\x71\xff\xc0\xc6\xf6\x12\x8a\x78\x36\x32\x1a\x68\xe9\ -\xee\xe2\x96\x2f\xae\x41\xb3\xa6\xaa\x5a\x23\xda\x2d\x62\xe9\x30\ -\xfe\x05\xdb\x05\x58\x9e\x79\xfd\x1d\xed\xdc\x7a\xfa\x16\xb4\x0f\ -\xa0\x96\x5a\x8a\x49\x08\xbc\xc6\x13\x3f\xb0\x7d\x0a\x54\x37\x82\ -\x8b\x4b\x2b\x84\xe4\xb2\x40\x15\xdc\x75\xdc\x30\x8a\x6b\xa7\x2a\ -\xa6\x28\x56\xc5\xe5\xc7\x98\x31\x0c\x23\x78\x13\x8b\x11\x35\xf7\ -\x64\x61\xdd\xc2\x12\xc8\x89\x64\x55\xfc\xfd\x1e\x60\x11\x16\x7c\ -\xdc\xde\x21\x9a\xf8\x02\x14\x77\x5b\x4e\x3a\xe3\x4a\xf7\x20\xc3\ -\x18\x0b\x2a\x87\x47\x69\x66\x9a\x35\x90\xcf\x3b\xe2\x4a\x05\xa0\ -\xf4\xb7\xd5\x21\x6e\xfe\x0d\x17\xe3\x4d\x80\x01\x00\x4b\xfa\x4f\ -\x76\x5f\x35\x91\x0a\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\ @@ -243,150 +94,306 @@ \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\x47\ +\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\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\xe9\x49\x44\x41\x54\x78\xda\xa4\ -\x93\xcf\x4f\x13\x41\x14\xc7\xdf\xb4\xdb\x4a\x63\x62\x13\x49\x5c\ -\xc2\x01\x13\xb3\x18\x49\x3c\x18\x09\x09\x41\xf0\x64\x22\x3d\x88\ -\x1e\x14\x3d\x20\xc4\x8b\x7f\x06\x07\xe2\xc1\x3b\x7f\x00\x37\x6e\ -\x1e\x4c\x88\x21\x9a\x18\x03\xe1\x84\x72\x92\x03\xb0\x06\xab\x6d\ -\xb7\x2c\xb4\xec\x76\xe7\x47\xdb\xed\xee\xf8\x76\x85\xb5\xd4\x96\ -\x1e\x98\x64\x36\xbb\xb3\xef\xf3\xfd\xce\x9b\xf7\x86\x48\x29\xe1\ -\x22\x43\x09\x1e\xf3\x44\x3b\x2f\xa6\xf7\x52\x2a\xf5\xdd\xf7\xfd\ -\x94\x5b\xab\xdd\xc4\x6f\x33\x58\x5c\x90\x7a\xf8\x33\xd6\xc5\x20\ -\x84\xef\xcf\xbd\x50\x5f\xbf\x7d\x93\x4e\x24\x93\xbb\xb8\x76\xad\ -\x39\x20\xd6\x0d\x9e\x98\x7b\xae\x0e\x3f\xce\x10\x25\xd5\x03\xcf\ -\x66\x5e\xa5\x95\x44\xe2\x8c\x08\x09\xce\xa0\x4d\x0a\x7f\xe1\x59\ -\x84\xa7\x32\x44\xfc\x2a\x82\xeb\xba\x50\x77\xeb\x90\x5f\xff\x06\ -\x9f\x56\xde\xdb\x5e\xa3\x11\xa6\x13\xeb\xe4\x3c\x3e\x3b\xad\xde\ -\x9d\x7a\x48\x78\xd6\x80\x5a\xb5\x0a\xf6\x5e\x16\x72\xab\x1b\x50\ -\xd9\xff\x0d\x43\xd7\xb5\x74\x2c\x1e\xd7\xa3\x43\xfc\x0f\x7e\x89\ -\xf0\xa3\x49\x42\xf5\x3c\xd0\x1f\x39\x28\x6f\xeb\xc0\x2a\x36\x88\ -\xaa\xc0\xc9\x41\x08\x0e\xe0\xcb\x38\xc6\xf7\x2b\xad\xf0\x3d\x84\ -\xef\x64\x1e\x90\xd2\xc7\x4d\xb0\x76\xf6\x81\x53\x0a\xfc\x04\x0a\ -\x04\x98\xa0\x90\x2d\xe6\xb9\x2f\xe5\x20\x32\x05\xa5\x19\x1e\x9b\ -\x79\xaa\xde\x1e\x19\x21\x85\xa5\x0f\xc0\x1c\x27\x72\x3b\x75\xa6\ -\x82\x41\xce\x34\x42\x18\xcb\x58\x88\x52\x48\x22\x3c\x3a\xfd\x44\ -\x1d\xba\x71\x8b\x18\xef\xbe\x80\xe0\x2c\x04\x42\xe7\x10\x0e\x9c\ -\x19\x14\x8e\x0e\x22\xe7\x33\x8d\xe4\x7b\x8d\xcb\x03\x57\xfb\xc8\ -\xc1\xe7\xaf\xc0\x05\xfb\x97\x6b\xf5\x74\xdb\x1c\x8c\xf2\x21\x97\ -\x2d\x70\xd4\x07\x8d\xba\xab\x2d\x2f\x2e\x3a\x65\xab\x04\x8c\x53\ -\xa0\xdc\xc1\x49\xf1\x9d\x01\x65\xb4\x23\xdc\xdc\x48\x26\xd6\x55\ -\x5b\xdb\xda\x70\x8e\x6d\x2b\x14\xe1\x01\x8c\x42\x45\xab\xd4\x11\ -\x6e\xed\x44\xd3\xf3\x3c\x6d\xfb\xe7\x8e\x53\xa1\xb8\x03\x3c\x6d\ -\xd3\xb6\xce\x85\xdb\xf5\x81\xe9\xa3\x88\x71\x7c\xa8\x4b\xac\x73\ -\x37\xb8\x9d\x00\x9c\xdc\xb6\x2b\x08\xf7\x77\x83\x83\xf1\x47\x80\ -\x01\x00\x31\x7f\x37\x0b\x09\x11\x0b\x96\x00\x00\x00\x00\x49\x45\ -\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x02\x90\ +\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\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\x32\x49\x44\x41\x54\x78\xda\x84\ -\x93\xcf\x4f\x13\x41\x14\xc7\xdf\x6c\xb7\xd5\x8d\x8d\x4d\x34\x71\ -\x0d\x07\x49\xb0\x18\x89\x46\x53\x49\x8d\xc1\x5f\x31\xc1\x68\x63\ -\x40\x6d\x14\x3d\x20\xc4\x8b\x1c\xf8\x1b\xbc\xa8\x31\x1c\xbc\x71\ -\x31\x5e\x38\xc9\x8d\xab\x78\xd2\xc6\x04\x62\xd4\xea\xa5\x1c\x90\ -\x2a\x34\xc2\x16\x4b\x68\xb7\xdd\xd9\xb7\x6d\xf7\x97\xb3\x9b\x5d\ -\x5c\x6c\xc1\x97\xbc\xec\xcc\xec\x7c\xbe\xef\xcd\xbc\x37\xe4\x31\ -\x1c\x85\x5d\xec\xe0\x1e\x41\xc8\x59\x96\x25\xe8\x8d\xc6\x31\x36\ -\x2f\x05\x7f\x3e\xb1\xf3\xc0\xfd\x0f\xbe\x34\x7a\x5f\x7c\x34\xf1\ -\x2c\x16\x8e\x44\xbe\xb3\xb5\x43\xff\x6e\xe2\x76\x83\x2f\x8e\xde\ -\x13\x7b\x6f\xa6\x08\x2f\xec\x85\xbb\xc3\x0f\x63\x7c\x38\xdc\x22\ -\xc2\xed\x08\x8f\x30\x78\x20\x45\x70\xa5\x08\xcd\x66\x03\x84\x13\ -\x9d\xd0\x7f\x63\x30\x16\xe2\xf9\x6d\x22\x5c\x3b\xf8\xc2\xc8\x90\ -\x78\x66\xf0\x1a\xc1\x42\x11\x1a\xf5\x3a\x54\x97\x0a\xb0\xfa\x76\ -\x0e\x6a\xcb\xbf\xa0\xa7\x33\x1e\xe3\x42\xa1\xbc\x0f\xf0\x2d\xf0\ -\x03\x06\x0f\x5c\x27\x34\xbf\x06\xf4\xc7\x2a\x94\x17\xf2\xa0\xd6\ -\xaa\xa0\xd5\x35\xe6\x08\x9a\x86\x00\x96\x1d\x62\xfb\x3b\x98\x4b\ -\xc4\xab\x82\x0b\x9f\x67\x70\x22\xd5\x4f\x2a\xef\xbf\x81\xbc\xb8\ -\x0c\x48\x29\xa0\x07\xb9\x02\xba\x06\x85\xf5\x35\x34\x74\xa3\x3b\ -\x77\xfb\x94\xe4\x67\xe0\xc2\x7d\xc3\x77\xc4\x93\xc9\x24\x91\xa6\ -\xde\x80\xaa\x28\x5b\xd1\xfc\xc8\x97\x5f\x3f\x07\x54\xd1\x14\x67\ -\x33\x67\xc7\x66\x5e\x49\xbd\xfe\x11\x22\x0c\x3e\x37\x74\x4b\xec\ -\xe9\x3a\x4e\x8a\x33\x19\xd0\x50\x75\x01\x37\xb2\x0b\x6b\x70\x65\ -\x7a\x02\xc6\x5f\x3c\x85\x6c\x36\xeb\xa4\x9e\x0b\x1c\x9b\xf0\x96\ -\x69\xec\x3b\x72\xe0\x30\xf9\xfd\xee\x0b\xa0\xa6\xfe\x3d\xab\x2f\ -\xa0\x37\x98\x28\x9a\x1e\x4c\x7c\x92\xcd\x6d\xb7\x0a\x46\x53\x8f\ -\x4f\x4f\x4e\x2a\x65\x79\x13\x54\xa4\x40\x51\x61\x4e\xd9\x58\x05\ -\xaa\x52\x28\x96\x37\x70\x69\x36\x73\xba\x5d\xb3\x24\x12\x09\xb7\ -\x8c\x25\xd3\x30\xe2\x1f\xbe\xce\x29\x95\xaa\xec\x8a\xa0\x03\x33\ -\xa1\x75\x79\x13\x4d\x76\x61\x2f\x7f\x7e\x9e\xf2\x18\x3b\xe0\x8e\ -\x7d\xf2\xfb\xa0\x64\x9a\x66\x7c\x61\x65\x51\xa9\x51\x96\x81\x46\ -\xa1\x54\x95\xd1\xb6\xed\xee\x8f\x57\xbb\x24\x44\x4c\xb6\xcb\xc0\ -\x59\x0f\xf6\x41\xc9\x62\x22\xc5\xca\x46\xde\x66\x75\x76\x60\xa7\ -\xce\x6d\x38\x12\xc8\x60\x5b\x23\x81\xf7\xda\xf6\x33\xb8\x63\x07\ -\xb8\xc5\x78\xe7\x49\xb6\xb1\x2d\x38\x9d\x4e\x3b\x9f\x79\xe6\x7d\ -\x81\x7b\x70\x2d\x1a\x8d\xce\xff\x11\x60\x00\xa3\xc7\x37\xb7\x0e\ -\xa4\x9b\xd0\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x02\x3d\ +\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\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\xdf\x49\x44\x41\x54\x78\xda\x94\ -\x93\xcf\x4b\x1b\x41\x14\xc7\xbf\x6f\x5d\xf1\xa2\xf5\xb6\xf1\xe4\ -\x49\xe8\xa9\x87\x84\xfe\x07\x45\x28\x78\x53\xf4\xa4\x10\x2d\xf4\ -\xee\xa1\xf4\xa4\x82\x87\x5e\x4a\x0f\xf5\x68\xaa\x17\xa5\xfe\x00\ -\x8d\x3f\x41\x91\xfa\xab\x07\x41\x31\xa0\x41\xa4\xa5\x58\x2a\xf8\ -\x23\x31\x11\x76\x37\xb1\x04\xe3\x8e\x6f\xc6\xdd\x90\xac\x3f\x88\ -\x0f\x1e\x33\xbb\xf3\x3e\x33\xdf\xf7\xde\x0c\x09\x21\x50\x6c\xef\ -\xda\xc8\xe0\xe1\xdc\xfd\xac\x1b\x9a\x14\x49\x3c\x65\x72\x03\xcf\ -\xbb\x5a\x61\xb0\x3b\xe9\xb3\x9f\x22\x75\xba\x2e\xe4\x5c\xfe\x2b\ -\x8e\xf1\xbb\xe6\x3f\xf9\xf3\xc0\x26\x55\xd7\xbc\x80\x76\xbd\x85\ -\xde\x9e\x0f\x54\xa4\xe6\x41\xd3\xef\xc3\xb5\xc8\xa6\x17\x61\x9e\ -\x4f\xc2\x32\x2d\x10\x81\x78\x5d\xe3\x54\x1c\x19\xdb\x4b\x0d\x25\ -\x29\x6a\xf7\xe0\xd4\x02\xc3\x13\x0c\x9b\xf8\x1a\x39\x62\x99\x08\ -\xf8\xe1\x70\x74\x90\xde\x76\x84\x95\x3a\xfd\x0e\xde\x50\xb2\x33\ -\xa9\x79\x05\xdb\x96\xc5\xf0\x3f\xc4\xff\xbe\x42\xfe\x46\x4f\x84\ -\x42\x21\x54\xe5\x05\x1a\xb9\x64\xe1\x68\x84\xcc\xa5\x3d\xe4\xa2\ -\x07\x72\x4f\xd2\x88\x4d\x38\x37\xc8\x5c\x30\x7c\x36\x0e\xcb\x32\ -\x15\xcc\x16\xd8\xde\xd9\x97\xa7\x20\x16\x8b\x51\x63\xdc\x16\x9d\ -\x33\xdf\xc8\x5e\x8a\x23\xf3\x7d\x17\x6b\x99\x1d\x15\xa3\x71\x25\ -\x03\x1f\xbb\xdf\xe0\xe4\x68\x54\xc1\x03\x91\x63\xb5\x50\xdc\x3e\ -\x96\xae\x71\x31\x28\x3d\xbd\x8d\xec\x58\x0c\x2b\xf6\x96\x8a\xe9\ -\x17\x7f\x92\x24\x5b\xe1\xd6\x21\xe1\xc6\x97\xc0\x2c\x5f\x48\x05\ -\x6e\xfe\x85\x18\x09\xab\x1c\xbc\x8b\x24\x2b\x2d\x47\xaf\x60\xfe\ -\x0d\x3c\x25\x5f\x9a\x5e\x1b\x57\x55\x95\xa7\x5e\x17\xf0\xd4\x25\ -\x91\x1e\x0c\x06\x85\x37\x47\x73\xbb\xc1\xee\xcc\x1e\xfe\x16\xef\ -\x7f\x6c\x0a\x39\xd7\x51\x86\x49\x15\xf9\x0a\x0e\xad\x7f\x89\xb9\ -\x4f\x7d\x58\x37\x6d\xac\x65\x73\x2a\x03\xf2\xbf\x85\xc7\x8c\x5a\ -\x3a\x1c\x86\x69\xc3\xbe\xc2\xc2\xc5\x25\x7e\x0d\x0d\xcb\x77\x10\ -\xd0\xcb\x84\x55\xbb\x97\x93\x97\x58\xfd\x9f\x2b\xc0\x62\x6a\x24\ -\xf9\x1c\x05\x06\x0b\x4e\xb8\x2f\x50\xc1\x25\x5d\x28\x57\x89\xe2\ -\xa7\x46\x0a\x9d\xba\x15\x60\x00\xc2\x0e\x39\xac\xa3\xf7\xe3\x21\ -\x00\x00\x00\x00\x49\x45\x4e\x44\xae\x42\x60\x82\ -\x00\x00\x01\x55\ +\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\x06\x00\x00\x00\x1f\xf3\xff\x61\ -\x00\x00\x00\x04\x73\x42\x49\x54\x08\x08\x08\x08\x7c\x08\x64\x88\ -\x00\x00\x00\x09\x70\x48\x59\x73\x00\x00\x0d\xd7\x00\x00\x0d\xd7\ -\x01\x42\x28\x9b\x78\x00\x00\x00\x19\x74\x45\x58\x74\x53\x6f\x66\ -\x74\x77\x61\x72\x65\x00\x77\x77\x77\x2e\x69\x6e\x6b\x73\x63\x61\ -\x70\x65\x2e\x6f\x72\x67\x9b\xee\x3c\x1a\x00\x00\x00\xd2\x49\x44\ -\x41\x54\x38\x8d\xed\xd3\x31\xaa\xc3\x30\x0c\x06\xe0\xbf\x4f\x6f\ -\x4e\x06\x67\xc8\x66\x08\x04\x32\x66\x69\x0e\x91\x2e\x3e\x92\x2f\ -\x95\x1e\xa2\x17\x70\x20\x59\x42\xc0\x78\xf1\x90\x97\x59\xe8\x2d\ -\x1d\x0a\xce\x10\xe8\x56\x2a\xd0\x22\xac\x0f\x49\xe0\x8b\x88\xe0\ -\x9d\xf8\x79\xab\xfb\x33\x80\xdf\xa3\xa2\x31\xa6\x57\x4a\x59\x66\ -\x6e\xbc\xf7\xa3\x73\xce\xae\xeb\x7a\x3f\x05\x18\x63\xfa\xb6\x6d\ -\x07\xad\x35\x98\x19\xf3\x3c\x5f\x01\x0c\x79\x9e\xdf\xb6\x6d\x4b\ -\x90\x04\x50\x4a\x59\xad\x35\xba\xae\x03\x33\x03\x00\x42\x08\x28\ -\x8a\xc2\x02\x48\x80\xe4\x06\xcc\xdc\x30\x33\x98\x19\x44\xf4\x9a\ -\xcd\xa9\x15\xbc\xf7\xe3\x73\x6c\x10\x11\x96\x65\x41\x8c\x11\xfb\ -\xbe\x8f\xa7\x00\xe7\x9c\x05\x30\x84\x10\x40\x44\x88\x31\x62\x9a\ -\x26\x84\x10\xec\x11\x00\x11\x49\x32\xcb\xb2\xbe\xaa\xaa\x47\x5d\ -\xd7\x7f\x65\x59\x3e\x00\xf4\x47\xef\x44\x04\x97\xef\x5f\xc0\x3f\ -\xd8\xa3\x78\x67\x08\xfb\xb2\x91\x00\x00\x00\x00\x49\x45\x4e\x44\ +\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"\ @@ -399,22 +406,6 @@ \x00\x00\x07\x83\ \x00\x72\ \x00\x63\ -\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\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\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\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\ \x00\x07\ \x0c\x85\x57\xa7\ \x00\x76\ @@ -427,34 +418,50 @@ \x0c\x46\x5a\xe7\ \x00\x66\ \x00\x75\x00\x6e\x00\x63\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\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\x00\xf8\x00\x00\x00\x00\x00\x01\x00\x00\x0f\xf9\ -\x00\x00\x00\x54\x00\x00\x00\x00\x00\x01\x00\x00\x02\x6f\ -\x00\x00\x00\xc6\x00\x00\x00\x00\x00\x01\x00\x00\x0b\x09\ -\x00\x00\x01\x30\x00\x00\x00\x00\x00\x01\x00\x00\x14\xce\ -\x00\x00\x00\x74\x00\x00\x00\x00\x00\x01\x00\x00\x04\xfa\ +\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\x18\x00\x00\x00\x00\x00\x01\x00\x00\x12\x8d\ -\x00\x00\x00\xe2\x00\x00\x00\x00\x00\x01\x00\x00\x0d\xae\ -\x00\x00\x00\xb2\x00\x00\x00\x00\x00\x01\x00\x00\x08\xf3\ -\x00\x00\x00\x92\x00\x00\x00\x00\x00\x01\x00\x00\x07\x76\ +\x00\x00\x01\x2c\x00\x00\x00\x00\x00\x01\x00\x00\x15\x47\ " def qInitResources(): diff --git a/pyqode/python/backend/__init__.py b/pyqode/python/backend/__init__.py index 70fb20ac..b1b9e815 100644 --- a/pyqode/python/backend/__init__.py +++ b/pyqode/python/backend/__init__.py @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """ The backend package contains everything needed to implement the -server side of pyqode. +server side of a python editor. """ from .workers import calltips @@ -9,7 +9,9 @@ from .workers import goto_assignments from .workers import icon_from_typename from .workers import quick_doc -from .workers import run_frosted +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 @@ -20,6 +22,7 @@ 'goto_assignments', 'icon_from_typename', 'quick_doc', + 'run_pyflakes', 'run_frosted', 'run_pep8', 'JediCompletionProvider' diff --git a/pyqode/python/backend/pep8utils.py b/pyqode/python/backend/pep8utils.py index 3335a097..343335e3 100644 --- a/pyqode/python/backend/pep8utils.py +++ b/pyqode/python/backend/pep8utils.py @@ -1,15 +1,15 @@ # -*- 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. +This module contains utility classes for interacting with the pycodestyle +module using strings instread of files. This allow live checking on code +without the need to save. """ -import pep8 +import pycodestyle -class CustomReport(pep8.StandardReport): +class CustomReport(pycodestyle.StandardReport): """ - Custom report used to get the pep8 results as a list of string. This + Custom report used to get the pycodestyle results as a list of string. This is easier to handler then retrieving the stdout and parsing. """ @@ -18,10 +18,11 @@ def get_file_results(self): return self._deferred_print -class CustomChecker(pep8.Checker): +class CustomChecker(pycodestyle.Checker): """ Custom Checker with our Custom report. """ + def __init__(self, *args, **kwargs): super(CustomChecker, self).__init__( *args, report=CustomReport(kwargs.pop("options")), **kwargs) diff --git a/pyqode/python/backend/server.py b/pyqode/python/backend/server.py index 8c8b2237..d5cba18b 100644 --- a/pyqode/python/backend/server.py +++ b/pyqode/python/backend/server.py @@ -1,24 +1,24 @@ #!/usr/bin/env python # -*- coding: utf-8 -*- """ -Server main script customised for pyqode.python. +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. -Users of pyqode.python can directly use this script. If you need to append -directories to sys.path, use the '-s' command line arguments, e.g.:: +:: - python server.py 8080 -s /home/your_name/MyProj /home/your_name/MyLib + usage: server.py [-h] [-s [SYSPATH [SYSPATH ...]]] port + positional arguments: + port the local tcp port to use to run the server -The server can be run with a custom python interpreter, this is needed if you -want to support python 2 syntax or virtualenv. This means that pyqode.core, -pyqode.python and all their pure python dependencies (not PyQt) must be -installed in the targeted env (virtualenv or python2 site package). Another -option is to bundle all dependencies in a zip archive that the server will -append to sys path, that way you don't clutter the use1r env with IDE specific -package but you have to write a new server to do that. + optional arguments: + -h, --help show this help message and exit + -s [SYSPATH [SYSPATH ...]], --syspath [SYSPATH [SYSPATH ...]] """ import argparse +import logging import sys @@ -26,6 +26,7 @@ """ 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 " @@ -36,7 +37,7 @@ # add user paths to sys.path if args.syspath: for path in args.syspath: - print('append path %s to sys.path\n' % path) + print('append path %s to sys.path' % path) sys.path.append(path) from pyqode.core import backend diff --git a/pyqode/python/backend/workers.py b/pyqode/python/backend/workers.py index e6f8a057..e7e1aaa6 100644 --- a/pyqode/python/backend/workers.py +++ b/pyqode/python/backend/workers.py @@ -5,7 +5,10 @@ """ import logging import os +import tempfile import jedi +from pyqode.core.share import Definition +from pyflakes import messages def _logger(): @@ -35,7 +38,14 @@ def calltips(request_data): # encoding = request_data['encoding'] encoding = 'utf-8' # use jedi to get call signatures - script = jedi.Script(code, line, column, path, encoding) + try: + script = jedi.Script(code, line, column, path, encoding) + except ValueError: + # Is triggered when an the position is invalid, for example if the + # column is larger or equal to the line length. This may be due to a + # bug elsewhere in PyQode, but this at least suppresses the error + # message, and does not seem to hve any adverse side effects. + return [] signatures = script.call_signatures() for sig in signatures: results = (str(sig.module_name), str(sig.name), @@ -43,8 +53,8 @@ def calltips(request_data): sig.bracket_start, column) # todo: add support for multiple signatures, for that we need a custom # widget for showing calltips. - return True, results - return False, [] + return results + return [] def goto_assignments(request_data): @@ -66,86 +76,35 @@ def goto_assignments(request_data): ret_val = [(d.module_path, d.line - 1 if d.line else None, d.column, d.full_name) for d in definitions] - return True, ret_val + return ret_val _old_definitions = {} -class Definition(object): - """ - Represents a defined name in a python source code (import, function, class, - method). Definition usually form a tree limited to 2 levels (we stop at the - method level). - """ - def __init__(self, name='', icon='', line=1, column=0, full_name=''): - #: 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 - #: Symbol name + parent name (for methods and class variables) - self.full_name = full_name - #: Possible list of children (only classes have children) - self.children = [] - if self.full_name == "": - self.full_name = self.name - - def add_child(self, definition): - """ - Adds a child definition - """ - self.children.append(definition) - - def to_dict(self): - """ - Serialises 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, - 'full_name': self.full_name, 'children': []} - for child in self.children: - ddict['children'].append(child.to_dict()) - return ddict - - def from_dict(self, ddict): - """ - Deserialise the definition from a simple dict. - """ - self.name = ddict['name'] - self.icon = ddict['icon'] - self.line = ddict['line'] - self.column = ddict['column'] - self.full_name = ddict['full_name'] - self.children[:] = [] - for child_dict in ddict['children']: - self.children.append(Definition().from_dict(child_dict)) - return self - - def __repr__(self): - return 'Definition(%r, %r, %r, %r)' % (self.name, self.icon, - self.line, self.column) - - -def _extract_def(d): - d_line, d_column = d.start_pos +def _extract_def(d, path): + d_line, d_column = d.line, d.column # use full name for import type - definition = Definition(d.name, icon_from_typename(d.name, d.type), - d_line - 1, d_column, d.full_name) + 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() + sub_definitions = d.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)) - except AttributeError: + definition.add_child(_extract_def(sub_d, path)) + except (AttributeError, IndexError): pass return definition @@ -157,18 +116,14 @@ def defined_names(request_data): global _old_definitions ret_val = [] path = request_data['path'] - toplvl_definitions = jedi.defined_names( + toplvl_definitions = jedi.names( request_data['code'], path, 'utf-8') for d in toplvl_definitions: - definition = _extract_def(d) + definition = _extract_def(d, path) if d.type != 'import': - # ignore imports ret_val.append(definition) - - _logger().debug("Document structure changed %s") - status = True ret_val = [d.to_dict() for d in ret_val] - return status, ret_val + return ret_val def quick_doc(request_data): @@ -187,8 +142,8 @@ def quick_doc(request_data): except jedi.NotFoundError: return [] else: - ret_val = [d.doc for d in definitions] - return True, ret_val + ret_val = [d.docstring() for d in definitions] + return ret_val def run_pep8(request_data): @@ -197,35 +152,51 @@ def run_pep8(request_data): :returns a list of tuples (msg, msg_type, line_number) """ - import pep8 + import pycodestyle 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'] + pycodestyle.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=True, - checker_class=CustomChecker) + pep8style = pycodestyle.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 False, [] + return [] else: messages = [] for line_number, offset, code, text, doc in results: - messages.append(('[PEP8] %s' % text, WARNING, line_number - 1)) - return True, messages + 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_frosted(request_data): + +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 frosted import checker + from pyflakes import checker import _ast WARNING = 1 ERROR = 2 @@ -233,8 +204,12 @@ def run_frosted(request_data): code = request_data['code'] path = request_data['path'] encoding = request_data['encoding'] - if not code or not encoding or not path: - status = False + 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: @@ -256,16 +231,25 @@ def run_frosted(request_data): # 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 warning in w.messages: - msg = "[pyFlakes] %s: %s" % ( - warning.type.error_code, warning.message.split(':')[-1]) - line = warning.lineno - 1 - status = (WARNING if warning.type.error_code.startswith('W') - else ERROR) + 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)) - status = True prev_results = ret_val - return status, 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): @@ -278,21 +262,27 @@ def icon_from_typename(name, icon_type): :returns: The associate icon resource filename or None. """ - ICONS = {'CLASS': ':/pyqode_python_icons/rc/class.png', - 'IMPORT': ':/pyqode_python_icons/rc/namespace.png', - 'STATEMENT': ':/pyqode_python_icons/rc/var.png', - 'FORFLOW': ':/pyqode_python_icons/rc/var.png', - 'MODULE': ':/pyqode_python_icons/rc/namespace.png', - 'KEYWORD': ':/pyqode_python_icons/rc/keyword.png', - 'PARAM': ':/pyqode_python_icons/rc/var.png', - 'ARRAY': ':/pyqode_python_icons/rc/var.png', - 'INSTANCE': ':/pyqode_python_icons/rc/var.png', - 'PARAM-PRIV': ':/pyqode_python_icons/rc/var.png', - 'PARAM-PROT': ':/pyqode_python_icons/rc/var.png', - 'FUNCTION': ':/pyqode_python_icons/rc/func.png', - 'DEF': ':/pyqode_python_icons/rc/func.png', - 'FUNCTION-PRIV': ':/pyqode_python_icons/rc/func_priv.png', - 'FUNCTION-PROT': ':/pyqode_python_icons/rc/func_prot.png'} + 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 @@ -332,7 +322,7 @@ def complete(code, line, column, path, encoding, prefix): script = jedi.Script(code, line + 1, column, path, encoding) completions = script.completions() print('completions: %r' % completions) - except jedi.NotFoundError: + except RuntimeError: completions = [] for completion in completions: ret_val.append({ diff --git a/pyqode/python/designer_plugin.py b/pyqode/python/designer_plugin.py index 147bd36b..78bd7505 100644 --- a/pyqode/python/designer_plugin.py +++ b/pyqode/python/designer_plugin.py @@ -10,7 +10,7 @@ """ # 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 +from pyqode.core._designer_plugins import WidgetPlugin class PyCodeEditPlugin(WidgetPlugin): diff --git a/pyqode/python/folding.py b/pyqode/python/folding.py index a8e652e4..78c0879e 100644 --- a/pyqode/python/folding.py +++ b/pyqode/python/folding.py @@ -1,12 +1,24 @@ """ -Contains the python code folding mode +This module contains the python code fold detector. """ import re from pyqode.core.api import IndentFoldDetector, TextBlockHelper, TextHelper class PythonFoldDetector(IndentFoldDetector): - single_line_docstring = re.compile(r'""".*"""') + """ + 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 '' @@ -30,7 +42,7 @@ def _handle_docstrings(self, block, lvl, prev_block): 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( + single_line = self._single_line_docstring.match( prev_block.text().strip()) if single_line: TextBlockHelper.set_fold_lvl(prev_block, lvl) @@ -49,6 +61,14 @@ def _handle_imports(self, block, lvl, prev_block): 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. diff --git a/pyqode/python/managers/__init__.py b/pyqode/python/managers/__init__.py index 5a692880..1ade1f68 100644 --- a/pyqode/python/managers/__init__.py +++ b/pyqode/python/managers/__init__.py @@ -1,3 +1,6 @@ +""" +This module contains some python specific managers. +""" from .file import PyFileManager __all__ = [ diff --git a/pyqode/python/managers/file.py b/pyqode/python/managers/file.py index 36605eed..3e2be8d8 100644 --- a/pyqode/python/managers/file.py +++ b/pyqode/python/managers/file.py @@ -15,10 +15,10 @@ class PyFileManager(FileManager): """ #: True to fold import statements on open. - fold_imports = True + fold_imports = False #: True to fold docstring on open - fold_docstrings = True + fold_docstrings = False def detect_encoding(self, path): """ @@ -44,10 +44,10 @@ def detect_encoding(self, path): first_two_lines) if possible_encoding: return possible_encoding.group(1) + return 'UTF-8' def open(self, path, encoding=None, use_cached_encoding=True): - if encoding is None: - encoding = self.detect_encoding(path) + encoding = self.detect_encoding(path) super(PyFileManager, self).open( path, encoding=encoding, use_cached_encoding=use_cached_encoding) try: @@ -67,3 +67,8 @@ def open(self, path, encoding=None, use_cached_encoding=True): 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 diff --git a/pyqode/python/modes/__init__.py b/pyqode/python/modes/__init__.py index 3164b21d..a77a137c 100644 --- a/pyqode/python/modes/__init__.py +++ b/pyqode/python/modes/__init__.py @@ -8,8 +8,9 @@ from .autoindent import PyAutoIndentMode from .calltips import CalltipsMode from .comments import CommentsMode -from .document_analyser import DocumentAnalyserMode -from .frosted_checker import FrostedCheckerMode +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 @@ -17,16 +18,25 @@ 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__ = [ - 'PyAutoCompleteMode', - 'PyAutoIndentMode', + 'Assignment', 'CalltipsMode', 'CommentsMode', - 'DocumentAnalyserMode', + 'PyFlakesChecker', 'FrostedCheckerMode', - 'Assignment', 'GoToAssignmentsMode', + 'PEP8CheckerMode', + 'PyAutoCompleteMode', + 'PyAutoIndentMode', 'PyIndenterMode', 'PythonSH', - 'PEP8CheckerMode', ] diff --git a/pyqode/python/modes/autocomplete.py b/pyqode/python/modes/autocomplete.py index 3385b897..af5b000e 100644 --- a/pyqode/python/modes/autocomplete.py +++ b/pyqode/python/modes/autocomplete.py @@ -5,7 +5,8 @@ class PyAutoCompleteMode(AutoCompleteMode): - """ + """ Auto complete parentheses and method definitions. + Extends :class:`pyqode.core.modes.AutoCompleteMode` to add support for method/function call: @@ -46,58 +47,5 @@ def _on_post_key_pressed(self, event): self._handle_fct_def() else: line = TextHelper(self.editor).current_line_text().strip() - if line != '"""': + if not line.endswith(('"""', "'''")): super(PyAutoCompleteMode, self)._on_post_key_pressed(event) - - -# Auto complete has been removed because there no way to know if there is -# already a docstring after the user has typed """ (all the below code is now -# a docstring). -# In a future version of pyqode, there will be a code assistant widget -# that allow to execute a contextual action where the user has a choice -# to make (e.g. insert sphinx or epydoc params,...) -# I keep the below code as a reference the day we implement that feature in the -# code assistant. - - # def _format_func_params(self, indent): - # parameters = [] - # th = TextHelper(self.editor) - # current_line_nbr = th.current_line_nbr() - # line_nbr = current_line_nbr - 2 - # def_line_nbr = None - # l = line_nbr - # while def_line_nbr is None: - # if 'def ' in th.line_text(l): - # def_line_nbr = l - # break - # l -= 1 - # for i in range(def_line_nbr, line_nbr + 1): - # txt = th.line_text(i) - # if i == def_line_nbr: - # # remove `def fct_name(` - # txt = txt[txt.find('(') + 1:] - # if i == line_nbr: - # # remove `):` - # txt = txt[:txt.rfind('):')] - # params = txt.strip().split(',') - # parameters += params - # param_str = "" - # for param in parameters: - # if param and param != '"""': - # param_str += "\n{1}:param {0}:".format(param.strip(), - # indent * " ") - # return '{1}\n{0}"""'.format(indent * " ", param_str) - # - # def _insert_docstring(self, def_line, below_fct): - # indent = TextHelper(self.editor).line_indent() - # if "class" in def_line or not below_fct: - # to_insert = '\n{0}"""'.format(indent * " ") - # else: - # to_insert = self._format_func_params(indent) - # cursor = self.editor.textCursor() - # pos = cursor.position() - # cursor.beginEditBlock() - # cursor.insertText(to_insert) - # cursor.setPosition(pos) - # cursor.endEditBlock() - # self.editor.setTextCursor(cursor) diff --git a/pyqode/python/modes/autoindent.py b/pyqode/python/modes/autoindent.py index f39d56ec..69582b1c 100644 --- a/pyqode/python/modes/autoindent.py +++ b/pyqode/python/modes/autoindent.py @@ -3,12 +3,13 @@ import re from pyqode.core.api import TextHelper, get_block_symbol_data from pyqode.qt.QtGui import QTextCursor -from pyqode.core.modes.autoindent import AutoIndentMode -from pyqode.core.modes.matcher import SymbolMatcherMode +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. @@ -23,7 +24,7 @@ def on_install(self, editor): def _get_indent(self, cursor): ln, column = self._helper.cursor_position() - fullline = self._get_full_line(cursor) + fullline = self._get_full_line(cursor).rstrip() line = fullline[:column] pre, post = AutoIndentMode._get_indent(self, cursor) if self._at_block_start(cursor, line): @@ -34,7 +35,7 @@ def _get_indent(self, cursor): c2.movePosition(c2.Left) if (self._helper.is_comment_or_string( c2, formats=['comment', 'docstring']) or - fullline.endswith('"""')): + fullline.endswith(('"""', "'''"))): if line.strip().startswith("#") and column != len(fullline): post += '# ' return pre, post @@ -45,6 +46,8 @@ def _get_indent(self, 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( @@ -57,16 +60,17 @@ def _get_indent(self, cursor): elif line.endswith("\\"): # if user typed \ and press enter -> indent is always # one level higher - post += self.editor.tab_length * " " + post += self._single_indent elif (fullline.endswith((')', '}', ']')) and lastword.endswith((')', '}', ']'))): post = self._handle_indent_after_paren(cursor, post) - elif ("\\" not in fullline and "#" not in fullline and - not self._at_block_end(cursor, fullline)): + 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 + fullline.strip().startswith('return')) or lastword == "pass"): post = post[:-self.editor.tab_length] return pre, post @@ -88,13 +92,13 @@ def _is_in_string_def(full_line, column): @staticmethod def _is_paren_open(paren): - return (paren.character == "(" or paren.character == "[" - or paren.character == '{') + return (paren.character == "(" or paren.character == "[" or + paren.character == '{') @staticmethod def _is_paren_closed(paren): - return (paren.character == ")" or paren.character == "]" - or paren.character == '}') + return (paren.character == ")" or paren.character == "]" or + paren.character == '}') @staticmethod def _get_full_line(tc): @@ -120,6 +124,10 @@ def _parens_count_for_block(self, col, block): 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(): @@ -133,14 +141,15 @@ def _between_paren(self, tc, col): @staticmethod def _get_last_word(tc): tc2 = QTextCursor(tc) - tc2.movePosition(QTextCursor.Left, 1) + tc2.movePosition(QTextCursor.Left, tc.KeepAnchor, 1) tc2.movePosition(QTextCursor.WordLeft, tc.KeepAnchor) - return tc2.selectedText().strip() + w = tc2.selectedText().strip() + return w @staticmethod def _get_last_word_unstripped(tc): tc2 = QTextCursor(tc) - tc2.movePosition(QTextCursor.Left, 1) + tc2.movePosition(QTextCursor.Left, tc.KeepAnchor, 1) tc2.movePosition(QTextCursor.WordLeft, tc.KeepAnchor) return tc2.selectedText() @@ -148,7 +157,11 @@ def _get_indent_of_opening_paren(self, tc): tc.movePosition(tc.Left, tc.KeepAnchor) char = tc.selectedText() tc.movePosition(tc.Right, tc.MoveAnchor) - mapping = {')': ('(', 0), '}': ('{', 1), ']': ('[', 2)} + mapping = { + ')': (OPEN, PAREN), + ']': (OPEN, SQUARE), + '}': (OPEN, BRACE) + } try: character, char_type = mapping[char] except KeyError: @@ -164,7 +177,11 @@ def _get_first_open_paren(self, tc, column): char = None ln = tc.blockNumber() tc_trav = QTextCursor(tc) - mapping = {'(': (')', 0), '[': (']', 1), '{': ('}', 2)} + 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()) @@ -202,21 +219,14 @@ def _get_first_open_paren(self, tc, column): def _get_paren_pos(self, tc, column): pos, char = self._get_first_open_paren(tc, column) - if char == '(': - ptype = 0 - closingchar = ')' - elif char == '[': - ptype = 1 - closingchar = ']' - else: - ptype = 2 - closingchar = '}' + mapping = {'(': PAREN, '[': SQUARE, '{': BRACE} tc2 = QTextCursor(tc) tc2.setPosition(pos) + import sys ol, oc = self.editor.modes.get(SymbolMatcherMode).symbol_pos( - tc2, char, ptype) + tc2, OPEN, mapping[char]) cl, cc = self.editor.modes.get(SymbolMatcherMode).symbol_pos( - tc2, closingchar, ptype) + tc2, CLOSE, mapping[char]) return (ol, oc), (cl, cc) @staticmethod @@ -231,7 +241,10 @@ def _get_prev_char(tc): tc2 = QTextCursor(tc) tc2.movePosition(QTextCursor.PreviousCharacter, QTextCursor.KeepAnchor) char = tc2.selectedText() - return char + 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): """ @@ -247,11 +260,11 @@ def _handle_indent_between_paren(self, column, line, parent_impl, tc): 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: - post = open_line_indent * ' ' + post = open_line_indent * self._indent_char + self._single_indent + elif next_close and prev_char != ',': + post = open_line_indent * self._indent_char elif tc.block().blockNumber() == open_line: - post = open_symbol_col * ' ' + post = open_symbol_col * self._indent_char # adapt indent if cursor on closing line and next line have same # indent -> PEP8 compliance @@ -259,17 +272,20 @@ def _handle_indent_between_paren(self, column, line, parent_impl, tc): txt = self._helper.line_text(close_line) bn = tc.block().blockNumber() flg = bn == close_line - next_indent = self._helper.line_indent(bn + 1) * ' ' + next_indent = self._helper.line_indent(bn + 1) * self._indent_char 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 * ' ' + post += self._single_indent # breaking string if next_char in ['"', "'"]: tc.movePosition(tc.Left) - if self._helper.is_comment_or_string(tc, formats=['string']): + 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']): @@ -303,24 +319,24 @@ 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 * ' ' + post += self._single_indent if fullline.endswith(':'): - post += n * " " + post += self._single_indent 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 * " " + post = ( + self._get_indent_of_opening_paren(cursor) * self._indent_char + + self._single_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"] + "except", "finally", "try", "with"] l = fullline ln = cursor.blockNumber() @@ -333,23 +349,24 @@ def check_kw_in_line(kwds, lparam): 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 * " " + indent = (len(l) - len(l.lstrip())) * self._indent_char + indent += self._single_indent 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 * " " + post = indent * self._indent_char return post def _handle_indent_in_statement(self, fullline, lastword, post, pre): - if lastword and lastword[-1] != " ": - pre += " \\" - else: - pre += '\\' - post += self.editor.tab_length * " " + if lastword[-1] != ':': + if lastword and lastword[-1] != " ": + pre += " \\" + else: + pre += '\\' + post += self._single_indent if fullline.endswith(':'): - post += self.editor.tab_length * " " + post += self._single_indent return post, pre diff --git a/pyqode/python/modes/calltips.py b/pyqode/python/modes/calltips.py index 99962499..0093ac81 100644 --- a/pyqode/python/modes/calltips.py +++ b/pyqode/python/modes/calltips.py @@ -3,18 +3,20 @@ Contains the JediCompletionProvider class implementation. """ import logging -import os + from pyqode.core.api import Mode, TextHelper -from pyqode.python.backend import workers 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`. """ @@ -29,9 +31,10 @@ def __init__(self): self.__requestCnt = 0 def on_state_changed(self, state): - if "PYQODE_NO_COMPLETION_SERVER" not in os.environ: - if state: - self.editor.key_released.connect(self._on_key_released) + 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 @@ -45,32 +48,46 @@ def _on_key_released(self, event): # jedi has a bug if the statement has a closing parenthesis # remove it! lines = source.splitlines() - l = lines[line].rstrip() + 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 - _logger().debug("Calltip requested") 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, status, results): - if status: - _logger().debug("Calltip request finished") - 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 _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: @@ -89,17 +106,19 @@ 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']) + calltip = "

{0}.{1}(".format( + call['call.module.name'], call['call.call_name']) for i, param in enumerate(call['call.params']): - if i != 0: - calltip += ", " + 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 += ')' + 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 diff --git a/pyqode/python/modes/comments.py b/pyqode/python/modes/comments.py index 621df0f7..82fe814a 100644 --- a/pyqode/python/modes/comments.py +++ b/pyqode/python/modes/comments.py @@ -1,17 +1,20 @@ # -*- coding: utf-8 -*- +import sys import os -from pyqode.core import api +from pyqode.core import api, icons from pyqode.qt import QtGui, QtCore, QtWidgets class CommentsMode(api.Mode): - """ - Mode that allow to comment/uncomment a set of lines using Ctrl+/. + """ 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 = 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): """ @@ -19,11 +22,11 @@ def on_state_changed(self, state): """ if state: self.action.triggered.connect(self.comment) - self.editor.add_action(self.action) + 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) + 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) @@ -47,77 +50,79 @@ def check_selection(self, cursor): 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() - # make comment/uncomment a single operation for the undo stack - cursor.beginEditBlock() + # 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() - # did the user do a reversed selection (from _bottom to _top)? - has_sel, reversed_sel, sel_end, sel_start = self.check_selection( - cursor) - # get selected lines - lines = cursor.selection().toPlainText().splitlines() - nb_lines = len(lines) - # move to first line - cursor.setPosition(sel_start) - # we uncomment if all lines were commented, otherwise we comment all - # lines in selection - comment = False - for i in range(nb_lines): - cursor.movePosition(QtGui.QTextCursor.StartOfLine) - cursor.movePosition(QtGui.QTextCursor.EndOfLine, cursor.KeepAnchor) - line = cursor.selectedText().lstrip() - if not len(line.strip()): - # skips empty lines - continue - indent = len(cursor.selectedText()) - len(line) - if not line.startswith("# "): - comment = True - break - # next line - cursor.movePosition(QtGui.QTextCursor.EndOfLine) - cursor.setPosition(cursor.position() + 1) - cursor.setPosition(sel_start) - l = 2 # len('# ') == 2 - performed = 0 - for i in range(nb_lines): - cursor.movePosition(QtGui.QTextCursor.StartOfLine) - cursor.movePosition(QtGui.QTextCursor.EndOfLine, cursor.KeepAnchor) - line = cursor.selectedText().lstrip() - if line != "": - cursor.movePosition(QtGui.QTextCursor.StartOfLine) - # Uncomment - if not comment: - cursor.setPosition(cursor.position() + indent) - cursor.movePosition(cursor.Right, cursor.KeepAnchor, 2) - cursor.insertText("") - if i == 0: - sel_start -= l - sel_end -= l - # comment - else: - cursor.movePosition(QtGui.QTextCursor.StartOfLine) - cursor.setPosition(cursor.position() + indent) - cursor.insertText("# ") - if i == 0: - sel_start += l - sel_end += l - performed += 1 - # next line - cursor.movePosition(QtGui.QTextCursor.EndOfLine) - if not cursor.atEnd(): - cursor.setPosition(cursor.position() + 1) - cursor.endEditBlock() - if has_sel: - cursor.setPosition(sel_start) - cursor.setPosition(sel_end, QtGui.QTextCursor.KeepAnchor) + 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: - if not cursor.atEnd(): - if performed: - cursor.setPosition(sel_start + (l if not comment else -l)) - cursor.movePosition(cursor.Down, cursor.MoveAnchor, 1) - self.editor.setTextCursor(cursor) + cursor.deleteChar() + cursor.deleteChar() diff --git a/pyqode/python/modes/document_analyser.py b/pyqode/python/modes/document_analyser.py deleted file mode 100644 index 171e18a9..00000000 --- a/pyqode/python/modes/document_analyser.py +++ /dev/null @@ -1,111 +0,0 @@ -# -*- coding: utf-8 -*- -import logging -from pyqode.core import api -from pyqode.core.api import Mode -from pyqode.core.api import DelayJobRunner -from pyqode.core.backend import NotRunning -from pyqode.python.backend.workers import Definition, defined_names -from pyqode.qt import QtCore, QtGui, QtWidgets - - -def _logger(): - return logging.getLogger(__name__) - - -class DocumentAnalyserMode(Mode, QtCore.QObject): - """ - This mode analyses the structure of a document (a tree of - :class:`pyqode.python.backend.workers.Definition`. - - :attr:`pyqode.python.modes.DocumentAnalyserMode.document_changed` - is emitted whenever the document structure changed. - - To keep good performances, the analysis task is run when the application is - idle for more than 1 second (by default). - """ - #: Signal emitted when the document structure changed. - document_changed = QtCore.Signal() - - def __init__(self, delay=1000): - Mode.__init__(self) - QtCore.QObject.__init__(self) - self._jobRunner = DelayJobRunner(delay=delay) - #: The list of results (elements might have children; this is actually - #: a tree). - 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): - if self.enabled and self.editor and self.editor.toPlainText() and \ - self.editor.file: - request_data = { - 'code': self.editor.toPlainText(), - 'path': self.editor.file.path, - 'encoding': self.editor.file.encoding - } - try: - self.editor.backend.send_request( - defined_names, 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, status, results): - if results: - results = [Definition().from_dict(ddict) for ddict in results] - self.results = results - if self.results is not None: - _logger().debug("Document structure changed") - self.document_changed.emit() - - @property - def flattened_results(self): - """ - Flattens the document structure tree as a simple sequential list. - """ - ret_val = [] - for d in self.results: - ret_val.append(d) - for sub_d in d.children: - nd = Definition(sub_d.name, sub_d.icon, sub_d.line, - sub_d.column, sub_d.full_name) - nd.name = " " + nd.name - nd.full_name = " " + nd.full_name - ret_val.append(nd) - return ret_val - - def to_tree_widget_items(self): - """ - Returns the results as a list of top level QTreeWidgetItem. - - This is a convenience function that you can use to update a document - tree widget wheneve the document changed. - """ - def convert(name, editor): - ti = QtWidgets.QTreeWidgetItem() - ti.setText(0, name.name) - ti.setIcon(0, QtGui.QIcon(name.icon)) - name.block = editor.document().findBlockByNumber(name.line) - ti.setData(0, QtCore.Qt.UserRole, name) - - for ch in name.children: - ti_ch = convert(ch, editor) - if ti_ch: - ti.addChild(ti_ch) - - return ti - return [convert(d, self.editor) for d in self.results] diff --git a/pyqode/python/modes/frosted_checker.py b/pyqode/python/modes/frosted_checker.py index d906e8ea..213cfd56 100644 --- a/pyqode/python/modes/frosted_checker.py +++ b/pyqode/python/modes/frosted_checker.py @@ -3,12 +3,13 @@ This module contains the pyFlakes checker mode """ from pyqode.core.modes import CheckerMode -from pyqode.python.backend.workers import run_frosted +from pyqode.python.backend.workers import run_pyflakes -class FrostedCheckerMode(CheckerMode): - """ +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(FrostedCheckerMode, self).__init__(run_frosted, delay=1200) + super(PyFlakesChecker, self).__init__(run_pyflakes, delay=1200) diff --git a/pyqode/python/modes/goto_assignements.py b/pyqode/python/modes/goto_assignements.py index 56e7280e..19a97308 100644 --- a/pyqode/python/modes/goto_assignements.py +++ b/pyqode/python/modes/goto_assignements.py @@ -4,8 +4,9 @@ """ import logging import os +from pyqode.core import icons from pyqode.qt import QtCore, QtGui, QtWidgets -from pyqode.core.api import Mode, TextHelper, DelayJobRunner +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 @@ -17,12 +18,12 @@ def _logger(): class Assignment(object): """ - Assignment definition. + Defines an assignment. Used by :class:`GoToAssignmentsMode`. """ def __init__(self, path, line, column, full_name): - #: Module path 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 @@ -44,15 +45,13 @@ def __repr__(self): class GoToAssignmentsMode(WordClickMode): """ - Goes to the assignments (using jedi.Script.goto_assignments). 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 - :attr:`pyqode.python.modes.GoToAssignmentsMode.out_of_doc` if the - definition can not be reached in the current document. IDE will typically - open a new editor tab and go to the definition. + 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 @@ -67,18 +66,21 @@ 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 = 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) + self.editor.add_action(self.action_goto, sub_menu='Python') else: - self.editor.remove_action(self.action_goto) + self.editor.remove_action(self.action_goto, sub_menu='Python') def request_goto(self): """ @@ -151,12 +153,11 @@ def _clear_selection(self): def _validate_definitions(self, definitions): if definitions: if len(definitions) == 1: - return (definitions[0].line is not None and - definitions[0].module_path) + return definitions[0].line is not None return True return False - def _on_results_available(self, status, definitions): + 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] @@ -183,8 +184,8 @@ def _perform_goto(self, definitions): "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:", + 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: diff --git a/pyqode/python/modes/indenter.py b/pyqode/python/modes/indenter.py index 1e0a94fc..3c89da3a 100644 --- a/pyqode/python/modes/indenter.py +++ b/pyqode/python/modes/indenter.py @@ -8,20 +8,27 @@ class PyIndenterMode(IndenterMode): """ - Implements python specific indentation, tab/back-tab always - indents/unindents the **whole** line. This replace the default - IndenterMode which we found to be better suited for python code editing. - - To use the default behaviour, just set the ``tab_always_indent`` property - to False + 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__() @@ -37,20 +44,10 @@ def indent(self): else: cursor = self.editor.textCursor() assert isinstance(cursor, QtGui.QTextCursor) - if not cursor.hasSelection(): - cursor.select(cursor.LineUnderCursor) 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) + cursor.insertText(self._single_indent) def unindent(self): """ @@ -58,14 +55,14 @@ def unindent(self): """ if self.tab_always_indent: cursor = self.editor.textCursor() - p = cursor.position() - assert isinstance(cursor, QtGui.QTextCursor) + cursor.beginEditBlock() if not cursor.hasSelection(): cursor.select(cursor.LineUnderCursor) self.unindent_selection(cursor) - p -= self.editor.tab_length - c = self.editor.textCursor() - c.setPosition(p) - self.editor.setTextCursor(c) + cursor.endEditBlock() + self.editor.setTextCursor(cursor) else: super(PyIndenterMode, self).unindent() + + def clone_settings(self, original): + self.tab_always_indent = original.tab_always_indent diff --git a/pyqode/python/modes/pep8_checker.py b/pyqode/python/modes/pep8_checker.py index 63d17bfc..8fd095f2 100644 --- a/pyqode/python/modes/pep8_checker.py +++ b/pyqode/python/modes/pep8_checker.py @@ -8,7 +8,7 @@ class PEP8CheckerMode(CheckerMode): """ - This checker mode runs pep8utils.py on the fly to check your python style. + This checker mode runs pep8.py on the fly to check your python style. """ def __init__(self): CheckerMode.__init__(self, run_pep8) diff --git a/pyqode/python/modes/sh.py b/pyqode/python/modes/sh.py index f050d6b2..39fc5fb6 100644 --- a/pyqode/python/modes/sh.py +++ b/pyqode/python/modes/sh.py @@ -7,10 +7,15 @@ It is approximately 3 time faster then :class:`pyqode.core.modes.PygmentsSH`. """ -import builtins + +try: + #it works on windows + import builtins +except ImportError: + #it works on osx + builtins = __import__('__builtin__') + import re -import sys -from pyqode.qt import QtGui from pyqode.core.api import SyntaxHighlighter as BaseSH from pyqode.core.api import TextBlockHelper @@ -25,8 +30,6 @@ def any(name, alternates): 'False', 'None', 'True', - 'and', - 'as', 'assert', 'break', 'class', @@ -38,16 +41,10 @@ def any(name, alternates): 'except', 'finally', 'for', - 'from', 'global', 'if', - 'import', - 'in', - 'is', 'lambda', 'nonlocal', - 'not', - 'or', 'pass', 'raise', 'return', @@ -57,12 +54,19 @@ def any(name, alternates): '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]*"]) @@ -87,18 +91,19 @@ def make_python_patterns(additional_keywords=[], additional_builtins=[]): ufstring2 = any("uf_dqstring", [uf_dqstring]) ufstring3 = any("uf_sq3string", [uf_sq3string]) ufstring4 = any("uf_dq3string", [uf_dq3string]) - return "|".join([instance, decorator, kw, builtin, builtin_fct, - comment, ufstring1, - ufstring2, - ufstring3, ufstring4, string, number, - any("SYNC", [r"\n"])]) + 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): - """Python Syntax Highlighter""" + """ + Highlights python syntax in the editor. + """ mimetype = 'text/x-python' # Syntax highlighting rules: @@ -152,7 +157,8 @@ def highlight_block(self, text, block): end = max([0, end + offset]) if key == "uf_sq3string": self.setFormat(start, end - start, - self.formats["string"]) + self.formats["docstring"]) + block.docstring = True state = self.INSIDE_SQ3STRING elif key == "uf_dq3string": self.setFormat(start, end - start, @@ -171,9 +177,10 @@ def highlight_block(self, text, block): # trick to highlight __init__, __add__ and so on with # builtin color self.setFormat(start, end - start, - self.formats["builtin"]) + self.formats["constant"]) else: - if '"""' in value and key != 'comment': + if ('"""' in value or "'''" in value) and \ + key != 'comment': # highlight docstring with a different color block.docstring = True self.setFormat(start, end - start, @@ -195,27 +202,27 @@ def highlight_block(self, text, block): match1 = self.IDPROG.match(text, end) if match1: start1, end1 = match1.span(1) - fmt = self.formats["definition"] - if value == "class": - fmt.setFontWeight(QtGui.QFont.Bold) + fmt_key = ('definition' if value == 'class' + else 'function') + fmt = self.formats[fmt_key] self.setFormat(start1, end1 - start1, fmt) - elif value == "import": - 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["keyword"]) + 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) diff --git a/pyqode/python/panels/__init__.py b/pyqode/python/panels/__init__.py index acdc7f35..7660a723 100644 --- a/pyqode/python/panels/__init__.py +++ b/pyqode/python/panels/__init__.py @@ -10,7 +10,17 @@ 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__ = [ - 'SymbolBrowserPanel', 'QuickDocPanel', + 'SymbolBrowserPanel', ] diff --git a/pyqode/python/panels/quick_doc.py b/pyqode/python/panels/quick_doc.py index 88b0e922..d0cc1d37 100644 --- a/pyqode/python/panels/quick_doc.py +++ b/pyqode/python/panels/quick_doc.py @@ -3,31 +3,23 @@ Contains the quick documentation panel """ from docutils.core import publish_parts -from pyqode.qt import QtCore, QtGui, QtWidgets +from pyqode.core import icons +from pyqode.qt import QtCore, QtWidgets from pyqode.core.api import Panel, TextHelper -from pyqode.core.api.utils import drift_color 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. """ - STYLESHEET = """ - - QTextEdit - { - background-color: %s; - color: %s; - } - """ - - _KEYS = ["panelBackground", "background", "panelForeground", - "panelHighlight"] + _KEYS = ['panelBackground', 'background', 'panelForeground', + 'panelHighlight'] def __init__(self): - super(QuickDocPanel, self).__init__() + super(QuickDocPanel, self).__init__(dynamic=True) # layouts layout = QtWidgets.QHBoxLayout() self.setLayout(layout) @@ -42,8 +34,8 @@ def __init__(self): # A QPushButton (inside a child layout for a better alignment) # to close the panel self.bt_close = QtWidgets.QPushButton() - self.bt_close.setIcon(QtGui.QIcon.fromTheme( - "window-close", QtGui.QIcon(":/pyqode-icons/rc/close.png"))) + 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) @@ -51,32 +43,26 @@ def __init__(self): layout.addLayout(child_layout) # Action - self.action_quick_doc = QtWidgets.QAction("Show documentation", self) - self.action_quick_doc.setShortcut("Alt+Q") + 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 _reset_stylesheet(self): - p = self.text_edit.palette() - p.setColor(p.Base, self.editor.palette().toolTipBase().color()) - p.setColor(p.Text, self.editor.palette().toolTipText().color()) - self.text_edit.setPalette(p) - def on_install(self, editor): super(QuickDocPanel, self).on_install(editor) - self._reset_stylesheet() 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) + self.editor.add_action(self.action_quick_doc, sub_menu='Python') else: - self.editor.remove_action(self.action_quick_doc) - - def refresh_style(self): - self._reset_stylesheet() + 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) @@ -90,35 +76,33 @@ def _on_action_quick_doc_triggered(self): self.editor.backend.send_request( quick_doc, request_data, on_receive=self._on_results_available) - def _on_results_available(self, status, results): - self._reset_stylesheet() - if status: - self.setVisible(True) - if results: - 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 - self.text_edit.setText("Documentation not found") + 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')) diff --git a/pyqode/python/panels/symbol_browser.py b/pyqode/python/panels/symbol_browser.py index 896d1226..8ccc1793 100644 --- a/pyqode/python/panels/symbol_browser.py +++ b/pyqode/python/panels/symbol_browser.py @@ -5,6 +5,7 @@ import logging from pyqode.core.api import Panel, TextHelper from pyqode.qt import QtGui, QtCore, QtWidgets +from pyqode.core.share import Definition def _logger(): @@ -12,8 +13,7 @@ def _logger(): class SymbolBrowserPanel(Panel): - """ - Show a combo box with the file definitions. + """ Shows a combo box with the definitions found in the document. Allow quick navigation in the file and sync with the cursor position. @@ -40,44 +40,60 @@ def on_state_changed(self, state): self._on_cursor_pos_changed) try: self.editor.modes.get( - 'DocumentAnalyserMode').document_changed.connect( + 'OutlineMode').document_changed.connect( self._on_document_changed) except KeyError: - _logger().warning("No DocumentAnalyserMode found, install it " + _logger().warning("No OutlineMode found, install it " "before SymbolBrowserPanel!") else: self.editor.cursorPositionChanged.disconnect( self._on_cursor_pos_changed) try: self.editor.modes.get( - 'DocumentAnalyserMode').document_changed.disconnect( + 'OutlineMode').document_changed.disconnect( self._on_document_changed) except KeyError: - _logger().warning("No DocumentAnalyserMode found, install it " - "before SymbolBrowserPanel!") + 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('DocumentAnalyserMode') - definitions = mode.flattened_results + 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: - self.combo_box.addItem(QtGui.QIcon(d.icon), d.name, d) + 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(True) + self.editor.setFocus() def _sync_combo_box(self, line): i = -1 diff --git a/pyqode/python/widgets/__init__.py b/pyqode/python/widgets/__init__.py index ca6a8306..b556d647 100644 --- a/pyqode/python/widgets/__init__.py +++ b/pyqode/python/widgets/__init__.py @@ -5,6 +5,16 @@ - PyInteractiveConsole """ - -from .code_edit import PyCodeEdit +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' +] diff --git a/pyqode/python/widgets/code_edit.py b/pyqode/python/widgets/code_edit.py index 8cd8e825..aa4edb6e 100644 --- a/pyqode/python/widgets/code_edit.py +++ b/pyqode/python/widgets/code_edit.py @@ -2,6 +2,9 @@ """ 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 @@ -9,55 +12,76 @@ 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 -# load pyqode.python resources (code completion icons) -# DO NOT REMOVE -from pyqode.python._forms import pyqode_python_icons_rc -class PyCodeEdit(api.CodeEdit): +class PyCodeEditBase(api.CodeEdit): """ - Extends CodeEdit with a hardcoded set of modes and panels specifics to - a python code editor widget. - - It also implements utility methods to switch from a white style to a dark - style and inversely. + 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): - super(PyCodeEdit, self).__init__(parent) - self.file = pymanagers.PyFileManager(self) + 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(pymodes.DocumentAnalyserMode()) + 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.panels.append(panels.SearchAndReplacePanel(), - panels.SearchAndReplacePanel.Position.BOTTOM) - self.panels.append(pypanels.SymbolBrowserPanel(), - pypanels.SymbolBrowserPanel.Position.TOP) - self.panels.append(panels.EncodingPanel(), api.Panel.Position.TOP) self.add_separator() - self.panels.append(pypanels.QuickDocPanel(), api.Panel.Position.BOTTOM) # 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()) @@ -66,25 +90,28 @@ def __init__(self, parent=None): self.modes.append(modes.CodeCompletionMode()) self.modes.append(modes.OccurrencesHighlighterMode()) self.modes.append(modes.SmartBackSpaceMode()) - self.modes.append(modes.ExtendedSelectionMode()) # python specifics - self.modes.append(pymodes.PythonSH(self.document())) self.modes.append(pymodes.PyAutoIndentMode()) self.modes.append(pymodes.PyAutoCompleteMode()) - self.modes.append(pymodes.FrostedCheckerMode()) + 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 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). - """ - self.syntax_highlighter.docstrings[:] = [] - self.syntax_highlighter.import_statements[:] = [] - super(PyCodeEdit, self).setPlainText(txt, mimetype, 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 + + def __repr__(self): + return 'PyCodeEdit(path=%r)' % self.file.path diff --git a/pyqode/python/widgets/console.py b/pyqode/python/widgets/console.py new file mode 100644 index 00000000..daaa1395 --- /dev/null +++ b/pyqode/python/widgets/console.py @@ -0,0 +1,81 @@ +""" +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 + """ + pass + + +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.SymbolMatcherMode()) + self.modes.append(CodeCompletionMode()) + self.modes.append(pymodes.PyAutoCompleteMode()) + self.modes.append(modes.IndenterMode()) + 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() diff --git a/pyqode/python/widgets/interactive.py b/pyqode/python/widgets/interactive.py index 2016cb03..661cb702 100644 --- a/pyqode/python/widgets/interactive.py +++ b/pyqode/python/widgets/interactive.py @@ -12,6 +12,8 @@ class PyInteractiveConsole(InteractiveConsole): 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. @@ -30,13 +32,22 @@ def __init__(self, parent=None): self.set_writer(self._write) self.setMouseTracking(True) self.PROG = QtCore.QRegExp( - r'\s*File "[a-zA-Z\/_\d]*((.\.[a-zA-Z\/_\d]*")|(")), ' - r'line [0-9]*.*') - self.FILENAME_PROG = QtCore.QRegExp(r'"[a-zA-Z\/_\.\d]*"') + 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) @@ -62,6 +73,7 @@ def write_with_underline(text_edit, text, color, 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: diff --git a/pyqode/python/widgets/outline.py b/pyqode/python/widgets/outline.py new file mode 100644 index 00000000..79c0ac32 --- /dev/null +++ b/pyqode/python/widgets/outline.py @@ -0,0 +1,13 @@ +""" +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 diff --git a/pytest.ini b/pytest.ini index 00ff1711..f7672a10 100644 --- a/pytest.ini +++ b/pytest.ini @@ -8,4 +8,5 @@ pep8ignore= *_ui.py ALL examples/*.py ALL test/*.py ALL + scripts/*.py ALL * +ALL diff --git a/pyuic.cfg b/pyuic.json similarity index 59% rename from pyuic.cfg rename to pyuic.json index ee1ad250..8ccfa458 100644 --- a/pyuic.cfg +++ b/pyuic.json @@ -2,15 +2,16 @@ "files": [ [ "forms/*.ui", - "pyqode/python/forms" + "pyqode/python/_forms" ], [ "forms/*.qrc", - "pyqode/python/forms" + "pyqode/python/_forms" ] ], "pyrcc": "pyqode-rcc", "pyrcc_options": "", "pyuic": "pyqode-uic", - "pyuic_options": "--from-imports" + "pyuic_options": "--from-imports", + "hooks": ["gettext"] } diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 00000000..3e3c1b3c --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,7 @@ +PyQt5 +-e git://github.com/pyQode/pyqode.qt.git#egg=pyqode.qt +-e git://github.com/pyQode/pyqode.core.git#egg=pyqode.core +pytest +pytest-cov +coveralls +jedi diff --git a/scripts/git-hooks/copy_hooks.py b/scripts/git-hooks/copy_hooks.py new file mode 100755 index 00000000..93b59036 --- /dev/null +++ b/scripts/git-hooks/copy_hooks.py @@ -0,0 +1,12 @@ +#!/usr/bin/env python3 +import os +import shutil +import stat + +destination = os.path.abspath(os.path.join('..', '..', '.git', 'hooks')) +for hook in os.listdir(): + if hook not in __file__: + # make sure the source is executable + st = os.stat(hook) + os.chmod(hook, st.st_mode | stat.S_IEXEC) + shutil.copy(hook, destination) diff --git a/scripts/git-hooks/post-commit b/scripts/git-hooks/post-commit new file mode 100755 index 00000000..64f9d78c --- /dev/null +++ b/scripts/git-hooks/post-commit @@ -0,0 +1,9 @@ +#!/bin/sh +echo +if [ -a .commit ] + then + rm .commit + git add pyqode/python/__init__.py + git commit --amend -C HEAD --no-verify +fi +exit diff --git a/scripts/git-hooks/pre-commit b/scripts/git-hooks/pre-commit new file mode 100755 index 00000000..0d40d7a8 --- /dev/null +++ b/scripts/git-hooks/pre-commit @@ -0,0 +1,2 @@ +#!/bin/sh +python .git/hooks/pre-commit.py \ No newline at end of file diff --git a/scripts/git-hooks/pre-commit.py b/scripts/git-hooks/pre-commit.py new file mode 100755 index 00000000..c9dbefd6 --- /dev/null +++ b/scripts/git-hooks/pre-commit.py @@ -0,0 +1,41 @@ +#!/usr/bin/env python3 +import os +import re +import sys +import subprocess + +VERSION_FILE = 'pyqode/python/__init__.py' + +def bump_version(): + with open(VERSION_FILE) as f: + lines = f.read().splitlines() + new_lines = f.newlines + for i, l in enumerate(lines): + if '__version__' in l: + string = l.split('=')[1].strip().replace('"', '').replace("'", '') + for prefix in ['dev', 'a', 'b', 'rc']: + try: + suffix = re.findall(r'%s\d*' % prefix, string)[0] + except IndexError: + suffix = None + version = None + else: + version = int(suffix.replace(prefix, '')) + break + if None in [suffix, version]: + return # stable version, nothing to do + version += 1 + new_suffix = '%s%d' % (prefix, version) + new_string = string.replace(suffix, new_suffix) + lines[i] = "__version__ = '%s'" % new_string + print(lines[i]) + break + + with open(VERSION_FILE, 'w') as f: + f.write('\n'.join(lines)) + f.write('\n') + + with open('.commit', 'w') as f: + pass + +bump_version() diff --git a/scripts/git-hooks/readme.rst b/scripts/git-hooks/readme.rst new file mode 100755 index 00000000..95c31785 --- /dev/null +++ b/scripts/git-hooks/readme.rst @@ -0,0 +1,4 @@ +The pre-commit hook automatically bumps the dev/alpha/beta/rc version number on each commit. +The post-commit is used to ammend the changes made to __version__. + +To use those hooks, copy them to ``.git/hooks`` (or run ``python3 copy_hooks.py``) diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 00000000..2a9acf13 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,2 @@ +[bdist_wheel] +universal = 1 diff --git a/setup.py b/setup.py index 54caba2b..817c1111 100644 --- a/setup.py +++ b/setup.py @@ -3,8 +3,10 @@ """ This setup script packages pyqode.python """ +import sys from setuptools import setup, find_packages - +from pyqode.python import __version__ +from setuptools.command.test import test as TestCommand # # add ``build_ui command`` (optional, for development only) @@ -19,33 +21,52 @@ cmdclass = {} -def read_version(): - with open("pyqode/python/__init__.py") as f: - lines = f.read().splitlines() - for l in lines: - if "__version__" in l: - return l.split("=")[1].strip().replace('"', '').replace( - "'", '') +class PyTest(TestCommand): + user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")] + + def initialize_options(self): + TestCommand.initialize_options(self) + self.pytest_args = [] + + def run_tests(self): + # import here, cause outside the eggs aren't loaded + import pytest + if self.pytest_args: + self.pytest_args = self.pytest_args.replace('"', '').split(' ') + else: + self.pytest_args = [] + print('running test command: py.test "%s"' % ' '.join( + self.pytest_args)) + errno = pytest.main(self.pytest_args) + sys.exit(errno) + + +cmdclass['test'] = PyTest + + +DESCRIPTION = 'Adds python support to pyqode.core' def readme(): + if 'bdist_deb' in sys.argv: + return DESCRIPTION return str(open('README.rst').read()) # get requirements requirements = [ 'pyqode.qt', - 'pyqode.core>=2.3.0', - 'jedi>=0.8', - 'pep8', - 'frosted', + 'pyqode.core', + 'jedi', + 'pycodestyle', + 'pyflakes', 'docutils' ] setup( name='pyqode.python', namespace_packages=['pyqode'], - version=read_version(), + version=__version__, packages=[p for p in find_packages() if 'test' not in p], keywords=["CodeEdit PySide PyQt code editor widget python"], package_dir={'pyqode': 'pyqode'}, @@ -53,9 +74,10 @@ def readme(): license='MIT', author='Colin Duquesnoy', author_email='colin.duquesnoy@gmail.com', - description='Add python support to pyqode', + description=DESCRIPTION, long_description=readme(), install_requires=requirements, + tests_require=['pytest-cov', 'pytest-pep8', 'pytest'], entry_points={'pyqode_plugins': ['pyqode_python = ' 'pyqode.python.designer_plugin']}, @@ -72,6 +94,10 @@ def readme(): 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', 'Topic :: Software Development :: Libraries :: Application Frameworks', 'Topic :: Software Development :: Widget Sets', 'Topic :: Text Editors :: Integrated Development Environments (IDE)' diff --git a/stdeb.cfg b/stdeb.cfg new file mode 100644 index 00000000..a980525b --- /dev/null +++ b/stdeb.cfg @@ -0,0 +1,2 @@ +[DEFAULT] +Copyright-File: LICENSE diff --git a/test/folding_cases/03.results b/test/folding_cases/03.results index a2caff55..31b56a8d 100644 --- a/test/folding_cases/03.results +++ b/test/folding_cases/03.results @@ -12,14 +12,14 @@ l11:2V l12:2V l13:1V l14:1V -l15:1+V -l16:2I -l17:2I -l18:2I -l19:2-I -l20:3-I -l21:4I -l22:2I +l15:1-V +l16:2V +l17:2V +l18:2V +l19:2-V +l20:3-V +l21:4V +l22:2V l23:2V l24:1-V l25:2-V diff --git a/test/helpers.py b/test/helpers.py index def744a8..36bfd44e 100644 --- a/test/helpers.py +++ b/test/helpers.py @@ -81,107 +81,3 @@ def wrapper(editor, *args, **kwds): return func(editor, *args, **kwds) return wrapper return decorator - - -def preserve_editor_config(func): - @functools.wraps(func) - def wrapper(editor, *args, **kwds): - ret = None - editor.setReadOnly(False) - try: - ret = func(editor, *args, **kwds) - finally: - editor.modes.clear() - editor.panels.clear() - setup_editor(editor) - editor.setReadOnly(False) - if not editor.backend.connected: - editor.backend.start(server_path()) - wait_for_connected(editor) - return ret - return wrapper - - -def require_python2(): - """ - Skips the test if there is no python2 interpreter. - """ - def decorator(func): - @functools.wraps(func) - def wrapper(*args, **kwds): - if os.path.exists(python2_path()): - return func(*args, **kwds) - return wrapper - return decorator - - -def log_test_name(func): - @functools.wraps(func) - def wrapper(*args, **kwds): - import logging - logging.info('---------------- %s ----------------' % func.__name__) - return func(*args, **kwds) - return wrapper - - -# ------------------- -# Helper functions -# ------------------- -def wait_for_connected(editor): - while not editor.backend.connected: - QTest.qWait(100) - - -def python2_path(): - """ - Returns the path to the python2 interpreter. - - The expected python2 path is '/usr/bin/python' on Linux and - 'c:\Python27\python.exe' on Windows. - """ - return '/usr/bin/python' if platform.system() == 'Linux' else \ - 'c:\\Python27\\python.exe' - - -def server_path(): - return os.path.join(os.path.dirname(__file__), 'server.py') - - -def setup_editor(code_edit): - from pyqode.python import modes as pymodes - from pyqode.python import panels as pypanels - - code_edit.modes.append(pymodes.DocumentAnalyserMode()) - - # panels - code_edit.panels.append(panels.FoldingPanel()) - code_edit.panels.append(panels.LineNumberPanel()) - code_edit.panels.append(panels.MarkerPanel()) - code_edit.panels.append(panels.SearchAndReplacePanel(), - panels.SearchAndReplacePanel.Position.BOTTOM) - code_edit.panels.append(pypanels.SymbolBrowserPanel(), - pypanels.SymbolBrowserPanel.Position.TOP) - - # modes - # generic - code_edit.modes.append(modes.CaretLineHighlighterMode()) - code_edit.modes.append(modes.FileWatcherMode()) - code_edit.modes.append(modes.RightMarginMode()) - code_edit.modes.append(modes.ZoomMode()) - code_edit.modes.append(modes.SymbolMatcherMode()) - code_edit.modes.append(modes.WordClickMode()) - code_edit.modes.append(modes.CodeCompletionMode()) - # python specifics - code_edit.modes.append(pymodes.PythonSH(code_edit.document())) - code_edit.modes.append(pymodes.PyAutoCompleteMode()) - code_edit.modes.append(pymodes.PyAutoIndentMode()) - code_edit.modes.append(pymodes.FrostedCheckerMode()) - code_edit.modes.append(pymodes.PEP8CheckerMode()) - code_edit.modes.append(pymodes.CalltipsMode()) - code_edit.modes.append(pymodes.PyIndenterMode()) - code_edit.modes.append(pymodes.GoToAssignmentsMode()) - code_edit.panels.append(pypanels.QuickDocPanel(), - api.Panel.Position.BOTTOM) - code_edit.modes.append(pymodes.CommentsMode()) - - code_edit.syntax_highlighter.fold_detector = PythonFoldDetector() diff --git a/test/test_backend/test_workers.py b/test/test_backend/test_workers.py index 79c0a1f9..44021a18 100644 --- a/test/test_backend/test_workers.py +++ b/test/test_backend/test_workers.py @@ -2,6 +2,11 @@ Test all workers in pyqode.python.backend.workers. """ import sys + +import jedi +from pyqode.core.modes import CheckerMessages +from pyqode.core.share import Definition + try: from future.builtins import str, open except: @@ -17,8 +22,7 @@ def test_calltips(): 'column': len('open('), 'path': None } - status, results = workers.calltips(data) - assert status is True + results = workers.calltips(data) assert len(results) == 6 @@ -29,8 +33,7 @@ def test_calltips_with_closing_paren(): 'column': len('open()'), 'path': None } - status, results = workers.calltips(data) - assert status is False + results = workers.calltips(data) assert len(results) == 0 @@ -41,13 +44,13 @@ def test_goto_assignments(): 'column': len('foo = 10;print(foo)') - 1, 'path': None } - status, results = workers.goto_assignments(data) - assert status is True - assert len(results) == 1 - definition = results[0] - module, line, column, full_name = definition - assert line == 0 - assert column == 0 + results = workers.goto_assignments(data) + # todo: restore assertion once jedi#571 is resolved + # assert len(results) == 1 + # definition = results[0] + # module, line, column, full_name = definition + # assert line == 0 + # assert column == 0 data = { 'code': "foo = 10;print(foo)", @@ -55,23 +58,33 @@ def test_goto_assignments(): 'column': len('foo = 10;print(foo)'), 'path': None } - status, results = workers.goto_assignments(data) - assert status is True + results = workers.goto_assignments(data) assert len(results) == 0 +def test_extract_def(): + code = """ + import pyqode.python.widgets + import PyQt5.QtWidgets as QtWidgets + app = QtWidgets.QApplication([]) + editor = pyqode.python.widgets.PyCyodeEdit() + editor.file.open(__file__) + editor.show() + app.exec() + """ + for definition in jedi.names(code): + result = workers._extract_def(definition, "") + assert result + def test_defined_names(): - code = "" filename = __file__ with open(filename, 'r', encoding='utf-8') as file: code = file.read() - status, results = workers.defined_names({'code': code, 'path': filename}) - assert status is True + results = workers.defined_names({'code': code, 'path': filename}) assert len(results) definitions = [] for i, definition in enumerate(results): - d = workers.Definition() - d.from_dict(definition) + d = Definition.from_dict(definition) definitions.append(d) if i: assert d != definitions[i-1] @@ -79,8 +92,7 @@ def test_defined_names(): # now that the code changed, defined_names should return # (True, [xxx, yyy, ...]) code += "\ndef foo():\n print('bar')" - status, results = workers.defined_names({'code': code, 'path': filename}) - assert status is True + results = workers.defined_names({'code': code, 'path': filename}) assert len(results) @@ -91,53 +103,50 @@ def test_quick_doc(): 'column': 1, 'path': None } - status, results = workers.quick_doc(data) - assert status is True + results = workers.quick_doc(data) assert len(results) == 1 assert isinstance(results[0], str) def test_run_pep8(): - status, messages = workers.run_pep8( - {'code': 'print("foo")\n', 'path': None}) - assert status is True + messages = workers.run_pep8( + {'code': 'print("foo")\n', 'path': None, + 'max_line_length': 79, 'ignore_rules': []}) assert len(messages) == 0 - status, messages = workers.run_pep8( - {'code': 'print("foo"); print("bar")\n', 'path': None}) - assert status is True + messages = workers.run_pep8( + {'code': 'print("foo"); print("bar")\n', 'path': None, + 'max_line_length': 79, 'ignore_rules': []}) assert len(messages) == 1 assert messages[0][2] == 0 -def test_run_frosted(): - status, messages = workers.run_frosted( - {'code': None, 'path': __file__, 'encoding': 'utf-8'}) - assert status is False +def test_run_pyflakes(): + messages = workers.run_pyflakes( + {'code': None, 'path': __file__, 'encoding': 'utf-8', + 'max_line_length': 79, 'ignore_rules': []}) assert len(messages) == 0 # OK - status, messages = workers.run_frosted( + messages = workers.run_pyflakes( {'code': 'print("foo")\n', 'path': __file__, 'encoding': 'utf-8'}) - assert status is True assert len(messages) == 0 # Syntax error - status, messages = workers.run_frosted( + messages = workers.run_pyflakes( {'code': 'print("foo\n', 'path': __file__, 'encoding': 'utf-8'}) - assert status is True assert len(messages) == 1 assert messages[0][2] == 0 + assert messages[0][1] == CheckerMessages.ERROR # unused import - status, messages = workers.run_frosted( + messages = workers.run_pyflakes( {'code': 'import sys; print("foo");\n', 'path': __file__, 'encoding': 'utf-8'}) - assert status is True assert len(messages) == 1 msg, status, line = messages[0] - assert 'sys imported but unused' in msg.lower() + assert "'sys' imported but unused" in msg assert line == 0 diff --git a/test/test_modes/auto_indent_cases/27.ctx b/test/test_modes/auto_indent_cases/27.ctx index 72e20340..055f5dc5 100644 --- a/test/test_modes/auto_indent_cases/27.ctx +++ b/test/test_modes/auto_indent_cases/27.ctx @@ -1,5 +1,5 @@ if True: - if (main == |'__name__'): + if (main ==| '__name__'): pass -> if True: diff --git a/test/test_modes/auto_indent_cases/60.ctx b/test/test_modes/auto_indent_cases/60.ctx new file mode 100644 index 00000000..8431661b --- /dev/null +++ b/test/test_modes/auto_indent_cases/60.ctx @@ -0,0 +1,4 @@ +logging.debug(|'Value: %d', 4) +-> +logging.debug( + |'Value: %d', 4) \ No newline at end of file diff --git a/test/test_modes/auto_indent_cases/61.ctx b/test/test_modes/auto_indent_cases/61.ctx new file mode 100644 index 00000000..162198cb --- /dev/null +++ b/test/test_modes/auto_indent_cases/61.ctx @@ -0,0 +1,4 @@ +gterm.RpcHandler(rpc.FCTID_RC_BONUS_CROWNS_SET_STATE,|) +-> +gterm.RpcHandler(rpc.FCTID_RC_BONUS_CROWNS_SET_STATE, + |) \ No newline at end of file diff --git a/test/test_modes/auto_indent_cases/62.ctx b/test/test_modes/auto_indent_cases/62.ctx new file mode 100644 index 00000000..2392a9cd --- /dev/null +++ b/test/test_modes/auto_indent_cases/62.ctx @@ -0,0 +1,8 @@ + + print('haha') + with open(path, 'w') as f:| +-> + + print('haha') + with open(path, 'w') as f: + | \ No newline at end of file diff --git a/test/test_modes/auto_indent_cases/63.ctx b/test/test_modes/auto_indent_cases/63.ctx new file mode 100644 index 00000000..4b6dc8fc --- /dev/null +++ b/test/test_modes/auto_indent_cases/63.ctx @@ -0,0 +1,4 @@ +a = 4 + | +-> +a = 4 + \ + | \ No newline at end of file diff --git a/test/test_modes/auto_indent_cases/64.ctx b/test/test_modes/auto_indent_cases/64.ctx new file mode 100644 index 00000000..32d4d65b --- /dev/null +++ b/test/test_modes/auto_indent_cases/64.ctx @@ -0,0 +1,4 @@ +elif a < b:| +-> +elif a < b: + | \ No newline at end of file diff --git a/test/test_modes/auto_indent_cases/65.ctx b/test/test_modes/auto_indent_cases/65.ctx new file mode 100644 index 00000000..dacb04fa --- /dev/null +++ b/test/test_modes/auto_indent_cases/65.ctx @@ -0,0 +1,5 @@ +a = 'A string %d' %| + +-> +a = 'A string %d' % \ + | diff --git a/test/test_modes/auto_indent_cases/66.ctx b/test/test_modes/auto_indent_cases/66.ctx new file mode 100644 index 00000000..7499d5a5 --- /dev/null +++ b/test/test_modes/auto_indent_cases/66.ctx @@ -0,0 +1,9 @@ +a = '''import| pyqode.core +print(pyqode.core.__version__) +''' + +-> +a = '''import +pyqode.core +print(pyqode.core.__version__) +''' diff --git a/test/test_modes/auto_indent_cases/67.ctx b/test/test_modes/auto_indent_cases/67.ctx new file mode 100644 index 00000000..f0d2a443 --- /dev/null +++ b/test/test_modes/auto_indent_cases/67.ctx @@ -0,0 +1,5 @@ + a = color| + +-> + a = color + | diff --git a/test/test_modes/auto_indent_cases/68.ctx b/test/test_modes/auto_indent_cases/68.ctx new file mode 100644 index 00000000..f1f96473 --- /dev/null +++ b/test/test_modes/auto_indent_cases/68.ctx @@ -0,0 +1,5 @@ +if __name__ == '__main__':|main() + +-> +if __name__ == '__main__': + |main() diff --git a/test/test_modes/auto_indent_cases/69.ctx b/test/test_modes/auto_indent_cases/69.ctx new file mode 100644 index 00000000..28501ffc --- /dev/null +++ b/test/test_modes/auto_indent_cases/69.ctx @@ -0,0 +1,5 @@ +if __name__ == '__main__':| main() + +-> +if __name__ == '__main__': + |main() diff --git a/test/test_modes/test_autocomplete.py b/test/test_modes/test_autocomplete.py index e38599d0..2cdc835a 100644 --- a/test/test_modes/test_autocomplete.py +++ b/test/test_modes/test_autocomplete.py @@ -29,7 +29,7 @@ def test_basic(editor): def test_autocomple_func_parens(editor): editor.clear() editor.setPlainText('def foo') - TextHelper(editor).goto_line(1, len('def foo')) + TextHelper(editor).goto_line(0, len('def foo')) QTest.keyPress(editor, '(') assert editor.toPlainText() == 'def foo():' @@ -37,6 +37,6 @@ def test_autocomple_func_parens(editor): def test_autocomple_method_parens(editor): editor.clear() editor.setPlainText('class\n def foo') - TextHelper(editor).goto_line(2, len(' def foo')) + TextHelper(editor).goto_line(1, len(' def foo')) QTest.keyPress(editor, '(') assert editor.toPlainText() == 'class\n def foo(self):' diff --git a/test/test_modes/test_autoindent.py b/test/test_modes/test_autoindent.py index 94e0709d..d9d7af25 100644 --- a/test/test_modes/test_autoindent.py +++ b/test/test_modes/test_autoindent.py @@ -91,14 +91,10 @@ def run(self, editor): def collect_cases(): cases = [] for file_path in sorted(glob.glob('auto_indent_cases/*.ctx')): - # if '44' in file_path: cases.append(Case(file_path)) return cases @pytest.mark.parametrize('test_case', collect_cases()) def test_auto_indent(editor, test_case): - QtWidgets.QApplication.setActiveWindow(editor) - editor.setFocus(True) test_case.run(editor) - diff --git a/test/test_modes/test_comments.py b/test/test_modes/test_comments.py index adc0585d..862cf31b 100644 --- a/test/test_modes/test_comments.py +++ b/test/test_modes/test_comments.py @@ -5,13 +5,13 @@ from pyqode.core.api import TextHelper from pyqode.python import modes as pymodes -from ..helpers import editor_open, preserve_editor_config +from ..helpers import editor_open def get_mode(editor): return editor.modes.get(pymodes.CommentsMode) -@preserve_editor_config + @editor_open(__file__) def test_enabled(editor): mode = get_mode(editor) @@ -20,7 +20,6 @@ def test_enabled(editor): mode.enabled = True -@preserve_editor_config @editor_open(__file__) def test_comment_single(editor): editor.setPlainText('import os') @@ -34,7 +33,6 @@ def test_comment_single(editor): assert TextHelper(editor).current_line_nbr() == 0 -@preserve_editor_config @editor_open(__file__) def test_uncomment_single(editor): editor.clear() @@ -54,14 +52,21 @@ def test_uncomment_single(editor): assert editor.toPlainText() == '# #import os\n' -@preserve_editor_config @editor_open(__file__) def test_comment_selection(editor): editor.clear() - editor.setPlainText('import os;\n \ndef foo():\n print("bar")') + editor.setPlainText('''import os + +def foo(): + print("bar") +''') QTest.qWait(100) mode = get_mode(editor) editor.selectAll() mode.comment() QTest.qWait(100) - assert editor.toPlainText() == '# import os;\n \n# def foo():\n# print("bar")' + assert editor.toPlainText() == '''# import os + +# def foo(): +# print("bar") +''' diff --git a/test/test_modes/test_goto_assignments.py b/test/test_modes/test_goto_assignments.py index 0157cf7e..05ef28e0 100644 --- a/test/test_modes/test_goto_assignments.py +++ b/test/test_modes/test_goto_assignments.py @@ -1,18 +1,18 @@ """ Test the autocomplete mode """ +import pytest from pyqode.core.api import TextHelper from pyqode.qt import QtCore, QtWidgets from pyqode.qt.QtTest import QTest from pyqode.python import modes as pymodes -from test.helpers import preserve_editor_config, editor_open +from test.helpers import editor_open def get_mode(editor): return editor.modes.get(pymodes.GoToAssignmentsMode) -@preserve_editor_config @editor_open(__file__) def test_enabled(editor): mode = get_mode(editor) @@ -21,7 +21,6 @@ def test_enabled(editor): mode.enabled = True -@preserve_editor_config @editor_open(__file__) def test_goto_variable(editor): editor.clear() @@ -30,8 +29,9 @@ def test_goto_variable(editor): mode = get_mode(editor) TextHelper(editor).goto_line(2, len('print(a)') - 2) mode.request_goto() - QTest.qWait(1000) - assert TextHelper(editor).current_line_nbr() == 0 + QTest.qWait(5000) + # todo: restore assertion once jedi#571 is resolved + # assert TextHelper(editor).current_line_nbr() == 0 out = False @@ -42,8 +42,8 @@ def _on_out_of_doc(*args): out = True -@preserve_editor_config @editor_open(__file__) +@pytest.mark.xfail def test_goto_out_of_doc(editor): global out out = False @@ -55,7 +55,7 @@ def test_goto_out_of_doc(editor): mode.out_of_doc.connect(_on_out_of_doc) assert out is False mode.request_goto() - QTest.qWait(1000) + QTest.qWait(5000) assert out is True @@ -72,7 +72,6 @@ def accept_dlg(): QTest.keyPress(w, QtCore.Qt.Key_Tab) QTest.keyPress(w, QtCore.Qt.Key_Return) -@preserve_editor_config @editor_open(__file__) def test_multiple_results(editor): global flg_multi @@ -81,15 +80,14 @@ def test_multiple_results(editor): editor.setPlainText(code) mode = get_mode(editor) TextHelper(editor).goto_line(1, 4) - QTest.qWait(1000) + QTest.qWait(5000) mode.request_goto() assert flg_multi is False QtCore.QTimer.singleShot(1000, accept_dlg) - QTest.qWait(1000) + QTest.qWait(5000) assert flg_multi is True -@preserve_editor_config @editor_open(__file__) def test_make_unique(editor): seq = ['a', 'b', 'c', 'a'] diff --git a/test/test_modes/test_doc_analyser.py b/test/test_modes/test_outline.py similarity index 85% rename from test/test_modes/test_doc_analyser.py rename to test/test_modes/test_outline.py index aceaa089..cffd70c8 100644 --- a/test/test_modes/test_doc_analyser.py +++ b/test/test_modes/test_outline.py @@ -1,7 +1,7 @@ # This foo class is here so that the document analyser got nodes with children # DO NOT REMOVE IT from pyqode.qt.QtTest import QTest -from pyqode.python import modes as pymodes +from pyqode.core import modes from ..helpers import editor_open @@ -11,7 +11,7 @@ def y(self): def get_mode(editor): - return editor.modes.get(pymodes.DocumentAnalyserMode) + return editor.modes.get(modes.OutlineMode) def test_enabled(editor): diff --git a/test/test_panels/test_quick_doc.py b/test/test_panels/test_quick_doc.py index 892f3666..4ac48d98 100644 --- a/test/test_panels/test_quick_doc.py +++ b/test/test_panels/test_quick_doc.py @@ -1,3 +1,4 @@ +import pytest from pyqode.core.api import TextHelper from pyqode.qt import QtCore from pyqode.qt.QtTest import QTest @@ -16,13 +17,15 @@ def test_enabled(editor): panel.enabled = False +@pytest.mark.xfail def test_get_doc(editor): panel = get_panel(editor) assert not panel.isVisible() editor.setPlainText('open') TextHelper(editor).goto_line(1, 1) panel._on_action_quick_doc_triggered() - QTest.qWait(2000) + editor.show() + QTest.qWait(1000) assert panel.isVisible() assert 'open' in panel.text_edit.toPlainText() editor.clear() diff --git a/test/test_panels/test_symbol_browser.py b/test/test_panels/test_symbol_browser.py index 30c29ed3..942cbf94 100644 --- a/test/test_panels/test_symbol_browser.py +++ b/test/test_panels/test_symbol_browser.py @@ -1,16 +1,15 @@ +import pytest from pyqode.core.api import TextHelper from pyqode.qt.QtTest import QTest from pyqode.python import panels from ..helpers import editor_open -from ..helpers import preserve_editor_config def get_panel(editor): return editor.panels.get(panels.SymbolBrowserPanel) -@preserve_editor_config def test_empty_editor(editor): editor.panels.clear() editor.modes.clear() @@ -24,7 +23,9 @@ def test_empty_editor(editor): @editor_open(__file__) +@pytest.mark.xfail def test_goto_definition(editor): + editor.show() QTest.qWait(1000) panel = get_panel(editor) line = TextHelper(editor).current_line_nbr() diff --git a/tox.ini b/tox.ini deleted file mode 100644 index b6d08f1b..00000000 --- a/tox.ini +++ /dev/null @@ -1,51 +0,0 @@ -[tox] -skip_missing_interpreters = True -[testenv] -deps = - pytest>=2.6.0 - # coloroma for colored debug output - colorama - git+https://github.com/pyQode/pyqode.qt.git@develop - git+https://github.com/pyQode/pyqode.core.git@develop -commands = - py.test [] -sitepackages = True -[testenv:py27-pyqt4] -basepython=python2.7 -setenv = QT_API=pyqt4 -[testenv:py27-pyqt5] -basepython=python2.7 -setenv = QT_API=pyqt5 -[testenv:py32-pyqt4] -basepython=python3.2 -setenv = QT_API=pyqt4 -[testenv:py32-pyqt5] -basepython=python3.2 -setenv = QT_API=pyqt5 -[testenv:py33-pyqt4] -basepython=python3.3 -setenv = QT_API=pyqt4 -[testenv:py33-pyqt5] -basepython=python3.3 -setenv = QT_API=pyqt5 -[testenv:py34-pyqt4] -basepython=python3.4 -setenv = QT_API=pyqt4 -[testenv:py34-pyqt5] -basepython=python3.4 -setenv = QT_API=pyqt5 -[testenv:cov] -deps = - coverage - pytest-cov - {[testenv]deps} -setenv = QT_API=pyqt4 -commands = - py.test --cov {envsitepackagesdir}/pyqode/python ./test --debug=trace -[testenv:pep8] -deps = - pytest-pep8 - {[testenv]deps} -setenv = QT_API=pyqt4 -commands = - py.test --pep8 -m pep8 \ No newline at end of file