Repository: zhimingshenjun/DD_KaoRou2
Branch: master
Commit: 682c23d7a7ce
Files: 36
Total size: 76.2 MB
Directory structure:
gitextract_dfjns2sa/
├── .gitignore
├── .idea/
│ ├── .gitignore
│ ├── DD_KaoRou2.iml
│ ├── inspectionProfiles/
│ │ └── profiles_settings.xml
│ ├── misc.xml
│ ├── modules.xml
│ └── vcs.xml
├── LICENSE
├── README.md
├── expand.bat
├── hooks/
│ └── hook-tensorflow.py
├── image.qrc
├── images.py
├── main.py
├── pretrained_models/
│ └── 2stems/
│ ├── ._checkpoint
│ ├── checkpoint
│ ├── model.data-00000-of-00001
│ ├── model.index
│ └── model.meta
├── pyinstaller命令.txt
├── requirements.txt
├── temp_sub.ass
├── utils/
│ ├── AI.py
│ ├── anime4k.py
│ ├── assSelect.py
│ ├── graph.py
│ ├── hotKey.py
│ ├── main_ui.py
│ ├── pay.py
│ ├── qdark.qss
│ ├── releases.py
│ ├── setting.py
│ ├── subtitle.py
│ ├── videoDecoder.py
│ └── youtube_downloader.py
└── 感谢石油王.csv
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitignore
================================================
# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
*$py.class
# C extensions
*.so
# Distribution / packaging
.Python
build/
develop-eggs/
dist/
downloads/
eggs/
.eggs/
lib/
lib64/
parts/
sdist/
var/
wheels/
pip-wheel-metadata/
share/python-wheels/
*.egg-info/
.installed.cfg
*.egg
MANIFEST
# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
*.manifest
*.spec
# Installer logs
pip-log.txt
pip-delete-this-directory.txt
# Unit test / coverage reports
htmlcov/
.tox/
.nox/
.coverage
.coverage.*
.cache
nosetests.xml
coverage.xml
*.cover
*.py,cover
.hypothesis/
.pytest_cache/
# Translations
*.mo
*.pot
# Django stuff:
*.log
local_settings.py
db.sqlite3
db.sqlite3-journal
# Flask stuff:
instance/
.webassets-cache
# Scrapy stuff:
.scrapy
# Sphinx documentation
docs/_build/
# PyBuilder
target/
# Jupyter Notebook
.ipynb_checkpoints
# IPython
profile_default/
ipython_config.py
# pyenv
.python-version
# pipenv
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
# However, in case of collaboration, if having platform-specific dependencies or dependencies
# having no cross-platform support, pipenv may install dependencies that don't work, or not
# install all needed dependencies.
#Pipfile.lock
# PEP 582; used by e.g. github.com/David-OConnor/pyflow
__pypackages__/
# Celery stuff
celerybeat-schedule
celerybeat.pid
# SageMath parsed files
*.sage.py
# Environments
.env
.venv
env/
venv/
ENV/
env.bak/
venv.bak/
# Spyder project settings
.spyderproject
.spyproject
# Rope project settings
.ropeproject
# mkdocs documentation
/site
# mypy
.mypy_cache/
.dmypy.json
dmypy.json
# Pyre type checker
.pyre/
================================================
FILE: .idea/.gitignore
================================================
# Default ignored files
/shelf/
/workspace.xml
================================================
FILE: .idea/DD_KaoRou2.iml
================================================
================================================
FILE: .idea/inspectionProfiles/profiles_settings.xml
================================================
================================================
FILE: .idea/misc.xml
================================================
================================================
FILE: .idea/modules.xml
================================================
================================================
FILE: .idea/vcs.xml
================================================
================================================
FILE: LICENSE
================================================
MIT License
Copyright (c) 2020 jiafangjun
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.
================================================
FILE: README.md
================================================
# DD_KaoRou2
你没体验过的全新AI自动打轴机2.0版
新版DD烤肉机继承自之前的1.1版,并在他的基础上大幅改进了AI自动打轴算法,引入了字幕组打轴格式规范,目前轴的质量已经能基本吻合观看体验。
同时在1.1版的基础上做了大量优化和开发新特性,并解决了之前没有AVX指令集CPU无法运行的痛点。
主要的新特性:
1. 全新构架的UI界面,新增波形图和动态表格,使用更流畅
2. 表格间隔设置扩展至10ms,同时支持对帧操作和倍速播放
3. 可以导出AI分离的人声和背景声
4. 新增大量快捷键操作和右键菜单操作
5. 字幕样式设置更合理,同时压制视频新增MKV格式
6. 新增Anime4K画质扩展功能(只适合给动画类视频扩展,三次元视频扩展会变成油画效果)
# B站视频教程:https://www.bilibili.com/video/BV1p5411b7o7
================================================
FILE: expand.bat
================================================
@echo off
start cmd /k "Anime4KCPP_CLI.exe -i temp_video/tempVideo -o temp_video/tempVideo_4K -p 2 -n 2 -c 0.3 -g 1.0 -z 3.0 -q -v -a -e 20"
================================================
FILE: hooks/hook-tensorflow.py
================================================
from PyInstaller.utils.hooks import collect_all
def hook(hook_api):
packages = [
'tensorflow',
'astor',
'sklearn',
'sklearn.utils._cython_blas',
'spleeter'
]
for package in packages:
datas, binaries, hiddenimports = collect_all(package)
hook_api.add_datas(datas)
hook_api.add_binaries(binaries)
hook_api.add_imports(*hiddenimports)
================================================
FILE: image.qrc
================================================
weixin.jpg
alipay.jpg
qss/qss.qss
================================================
FILE: images.py
================================================
# -*- coding: utf-8 -*-
# Resource object code
#
# Created by: The Resource Compiler for PyQt5 (Qt v5.15.0)
#
# WARNING! All changes made in this file will be lost!
from PySide2 import QtCore
qt_resource_data = b"\
\x00\x01\xc0\x23\
\xff\
\xd8\xff\xe1\x1f\x0d\x45\x78\x69\x66\x00\x00\x4d\x4d\x00\x2a\x00\
\x00\x00\x08\x00\x07\x01\x12\x00\x03\x00\x00\x00\x01\x00\x01\x00\
\x00\x01\x1a\x00\x05\x00\x00\x00\x01\x00\x00\x00\x62\x01\x1b\x00\
\x05\x00\x00\x00\x01\x00\x00\x00\x6a\x01\x28\x00\x03\x00\x00\x00\
\x01\x00\x02\x00\x00\x01\x31\x00\x02\x00\x00\x00\x1d\x00\x00\x00\
\x72\x01\x32\x00\x02\x00\x00\x00\x14\x00\x00\x00\x8f\x87\x69\x00\
\x04\x00\x00\x00\x01\x00\x00\x00\xa4\x00\x00\x00\xd0\x00\x0a\xfc\
\x80\x00\x00\x27\x10\x00\x0a\xfc\x80\x00\x00\x27\x10\x41\x64\x6f\
\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x43\x20\
\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x00\x32\x30\x32\x30\x3a\x30\
\x37\x3a\x30\x35\x20\x31\x36\x3a\x33\x35\x3a\x33\x31\x00\x00\x00\
\x03\xa0\x01\x00\x03\x00\x00\x00\x01\x00\x01\x00\x00\xa0\x02\x00\
\x04\x00\x00\x00\x01\x00\x00\x01\x86\xa0\x03\x00\x04\x00\x00\x00\
\x01\x00\x00\x01\xfc\x00\x00\x00\x00\x00\x00\x00\x06\x01\x03\x00\
\x03\x00\x00\x00\x01\x00\x06\x00\x00\x01\x1a\x00\x05\x00\x00\x00\
\x01\x00\x00\x01\x1e\x01\x1b\x00\x05\x00\x00\x00\x01\x00\x00\x01\
\x26\x01\x28\x00\x03\x00\x00\x00\x01\x00\x02\x00\x00\x02\x01\x00\
\x04\x00\x00\x00\x01\x00\x00\x01\x2e\x02\x02\x00\x04\x00\x00\x00\
\x01\x00\x00\x1d\xd7\x00\x00\x00\x00\x00\x00\x00\x48\x00\x00\x00\
\x01\x00\x00\x00\x48\x00\x00\x00\x01\xff\xd8\xff\xed\x00\x0c\x41\
\x64\x6f\x62\x65\x5f\x43\x4d\x00\x01\xff\xee\x00\x0e\x41\x64\x6f\
\x62\x65\x00\x64\x80\x00\x00\x00\x01\xff\xdb\x00\x84\x00\x0c\x08\
\x08\x08\x09\x08\x0c\x09\x09\x0c\x11\x0b\x0a\x0b\x11\x15\x0f\x0c\
\x0c\x0f\x15\x18\x13\x13\x15\x13\x13\x18\x11\x0c\x0c\x0c\x0c\x0c\
\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x01\x0d\
\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\x10\x14\x0e\x0e\x0e\x14\x14\x0e\
\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\x0c\x0c\x11\x11\x0c\x0c\x0c\x0c\
\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\xff\
\xc0\x00\x11\x08\x00\xa0\x00\x7b\x03\x01\x22\x00\x02\x11\x01\x03\
\x11\x01\xff\xdd\x00\x04\x00\x08\xff\xc4\x01\x3f\x00\x00\x01\x05\
\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x01\
\x02\x04\x05\x06\x07\x08\x09\x0a\x0b\x01\x00\x01\x05\x01\x01\x01\
\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x03\x04\x05\
\x06\x07\x08\x09\x0a\x0b\x10\x00\x01\x04\x01\x03\x02\x04\x02\x05\
\x07\x06\x08\x05\x03\x0c\x33\x01\x00\x02\x11\x03\x04\x21\x12\x31\
\x05\x41\x51\x61\x13\x22\x71\x81\x32\x06\x14\x91\xa1\xb1\x42\x23\
\x24\x15\x52\xc1\x62\x33\x34\x72\x82\xd1\x43\x07\x25\x92\x53\xf0\
\xe1\xf1\x63\x73\x35\x16\xa2\xb2\x83\x26\x44\x93\x54\x64\x45\xc2\
\xa3\x74\x36\x17\xd2\x55\xe2\x65\xf2\xb3\x84\xc3\xd3\x75\xe3\xf3\
\x46\x27\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\
\xf5\x56\x66\x76\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6\x37\x47\x57\x67\
\x77\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\x11\x00\x02\x02\x01\x02\x04\
\x04\x03\x04\x05\x06\x07\x07\x06\x05\x35\x01\x00\x02\x11\x03\x21\
\x31\x12\x04\x41\x51\x61\x71\x22\x13\x05\x32\x81\x91\x14\xa1\xb1\
\x42\x23\xc1\x52\xd1\xf0\x33\x24\x62\xe1\x72\x82\x92\x43\x53\x15\
\x63\x73\x34\xf1\x25\x06\x16\xa2\xb2\x83\x07\x26\x35\xc2\xd2\x44\
\x93\x54\xa3\x17\x64\x45\x55\x36\x74\x65\xe2\xf2\xb3\x84\xc3\xd3\
\x75\xe3\xf3\x46\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\
\xd5\xe5\xf5\x56\x66\x76\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6\x27\x37\
\x47\x57\x67\x77\x87\x97\xa7\xb7\xc7\xff\xda\x00\x0c\x03\x01\x00\
\x02\x11\x03\x11\x00\x3f\x00\xf5\x54\x92\x49\x25\x29\x24\x92\x49\
\x4a\x49\x24\x92\x52\x92\x42\xc8\xc9\xa3\x16\x97\x5f\x91\x63\x6a\
\xa6\xb1\x2f\xb1\xe6\x00\xed\xc9\x58\x56\xfd\x7a\xe8\xac\x7e\xd6\
\x36\xfb\x9b\xfb\xec\xae\x07\xfe\x0c\xea\x9f\xff\x00\x41\x36\x53\
\x8c\x7e\x62\x03\x1e\x4c\xd8\xf1\xfc\xf2\x11\xbe\xef\x44\x92\xcf\
\xe9\x9d\x77\xa5\xf5\x49\x6e\x25\xd3\x6b\x46\xe7\x52\xf0\x58\xf0\
\x3f\x7b\x63\xfe\x93\x7f\x96\xcf\x62\xd0\x44\x10\x45\x83\x63\xc1\
\x7c\x65\x19\x0b\x89\x12\x1d\xc2\x92\x49\x24\x52\xa4\x92\x49\x25\
\x29\x24\x92\x49\x4f\xff\xd0\xf5\x54\x92\x49\x25\x29\x24\x92\x49\
\x4a\x49\x24\x92\x53\xc0\xfd\x71\xcf\xb7\x2b\xac\x9c\x27\xd9\xe9\
\xe3\x62\x16\x34\x4c\xed\x0f\x7b\x5a\xfb\x32\x6c\x0d\x1b\xbf\x46\
\xcb\x76\xff\x00\x21\x9e\xa7\xa7\xfc\xe2\xaa\xcf\xaa\xfd\x71\xf9\
\x36\x50\xea\x05\x42\x93\xef\xc8\xb1\xc1\xb4\xc4\x6e\xde\xcb\x3e\
\x95\xad\xfe\xa5\x7e\xcf\xf0\xbe\x92\xd3\xfa\xeb\xd1\x6d\x66\x4b\
\xba\xb5\x43\x7d\x16\x86\xb7\x24\x7e\xeb\x84\x54\xcb\x3f\xe2\xec\
\x66\xca\xff\x00\xf3\xb5\x83\x95\xd5\xfa\x86\x6e\x2d\x58\x97\xde\
\x5f\x8d\x43\x43\x1b\x50\xd1\xae\xdb\xf4\x5d\x7c\x7f\x3c\xff\x00\
\x6f\xf8\x45\x43\x25\x09\xcf\x8c\x1b\xbb\x8d\x76\x71\x79\x81\x11\
\x9b\x27\xbc\x24\x4d\xf1\x42\x8f\xcd\x0f\xd1\x1f\xdd\x6d\x1b\x3a\
\x57\x4a\xb1\xaf\xc3\x79\xea\x5d\x42\xa3\x2c\xc9\x24\xd7\x8d\x5b\
\x81\xe6\xa6\x56\xef\x53\x29\xdf\xf5\xdf\xb3\xbf\xfe\x82\xf4\x0e\
\x9d\x97\xf6\xde\x9f\x8d\x96\x46\xd3\x7d\x4c\xb0\xb4\x70\x0b\x9a\
\x1c\xe6\xaf\x33\xe9\xbd\x37\x2f\xaa\x64\x0c\x6c\x36\x97\x19\x02\
\xcb\x62\x59\x58\x3f\x9f\x63\xbf\xea\x59\xf4\xec\x5e\xa1\x8b\x8f\
\x5e\x2e\x35\x58\xd5\x4f\xa7\x43\x1b\x5b\x27\x98\x68\xd8\xd9\xfb\
\x94\xbc\xb5\x9e\x23\x55\x1f\xda\xda\xf8\x79\x99\xe3\x3c\x22\x38\
\xff\x00\x44\x0d\xb8\xbc\xff\x00\x49\x2a\x49\x24\xad\x3a\x0a\x49\
\x24\x92\x52\x92\x49\x24\x94\xff\x00\xff\xd1\xf5\x54\x92\x49\x25\
\x29\x24\x92\x49\x4a\x49\x24\x92\x53\x5f\x3b\x07\x1b\x3f\x1c\xe3\
\x65\x34\xbe\x97\x16\xb9\xcc\x92\x03\xb6\x9d\xed\x0e\xdb\x1e\xdd\
\xcd\x41\x7f\x43\xe8\xcf\x20\xbf\x03\x18\x91\x00\x4d\x4c\xe0\x71\
\xf9\xaa\xf2\x64\x0c\x62\x77\x00\xad\x30\x89\x36\x62\x09\xf1\x0c\
\x69\xa2\x9a\x2b\x15\x51\x5b\x6a\xad\xbc\x31\x80\x35\xa3\xe0\xd6\
\xa9\xa4\x92\x2b\x80\xad\x94\x92\x49\x24\xa5\x24\x92\x49\x29\x49\
\x24\x92\x4a\x7f\xff\xd2\xf5\x55\xe6\x9f\x58\x3e\xaf\x74\xef\xac\
\x3f\xe3\x3c\xf4\xfe\xa2\x1f\xe8\x7e\xce\x6d\x9f\xa3\x76\xd7\x6e\
\x6b\x88\x6f\xba\x1d\xfb\xcb\xd2\xd7\x0f\x07\xff\x00\x1d\xef\x87\
\x4b\xd7\xfc\xf4\x94\xf0\xa4\xff\x00\x8a\x10\x0e\x9d\x54\x91\xdb\
\xd8\xb6\xfa\x7f\xd5\xfe\x95\xd0\x3f\xc6\x87\x41\xc7\xe9\x5e\xa7\
\xd9\xf2\x30\xec\xc9\x3e\xab\xb7\x3a\x5f\x56\x6b\x7c\x1b\xf9\x95\
\xb1\x73\xc7\xfc\x52\xfd\x75\xd4\xfd\x9a\xaf\x87\xac\xcf\xef\x5d\
\x9e\x75\x6f\xab\xfc\x6c\x7d\x5a\xad\xe2\x1e\xce\x9a\x5a\xe8\xd4\
\x48\xaf\xa8\x07\x24\xa6\x1f\x52\xfa\xc6\x17\x43\xe9\xdf\x5a\x7a\
\xae\x60\x71\xc6\xc7\xea\x8f\xdf\xe9\x80\xe7\x7b\xde\xda\x59\xb5\
\xb2\xdf\xcf\xb5\x4b\xab\x7d\x61\xe8\x5f\x58\x30\x2f\xfa\xd9\xd2\
\xbd\x61\x9f\xf5\x65\xa1\xd8\xe2\xf6\x86\xd4\x5d\x79\x03\xdf\x58\
\x2e\x75\x9f\x41\xdf\xe1\x2b\x4b\xaa\x75\x7c\x2c\xaf\xad\x78\xbf\
\x5b\x6a\x2e\xfd\x8f\xf5\x77\xd5\xc3\xea\x56\x16\x90\xf6\x5a\xff\
\x00\x57\x1a\xb0\xca\x3f\x9c\xb5\xbe\xae\x45\x5e\xf6\x2e\x5b\xea\
\xff\x00\xd7\x1e\xb5\x4f\xd6\x9e\xa7\x8f\xf5\x6a\xac\x6b\xff\x00\
\x6e\xe7\x59\x75\x27\x2d\xaf\x1a\x6f\xba\xda\xbe\x8d\xb4\xfa\x7f\
\xa3\xb3\xf3\xd2\x53\x91\xd2\x3a\x55\xff\x00\x59\x73\xba\x97\xd6\
\x0c\xf0\xcf\xb0\xe2\x5a\x33\x3a\xb3\x2b\x25\x8f\x2c\xb9\xd6\xdd\
\x6f\xd9\x1a\x43\xfd\xdf\xa2\xb7\xe9\xd8\xba\xe7\x8c\x5f\x4b\xa2\
\x9b\xc3\xbd\x2d\xe3\xfe\x64\xed\xe4\x5a\x5d\x5e\xdf\xdb\x7f\xc8\
\xfb\x4f\xd8\x7f\x99\xfc\xcf\x5d\x1e\x8f\xf1\xaf\xd4\x31\x19\xd6\
\xb1\x3a\xeb\x71\xe8\xea\xb8\x53\x56\x0d\x74\x57\x63\xab\x7d\xcc\
\x36\xd7\x73\x6e\x77\xaa\xff\x00\xd1\xfa\x8c\xab\xf3\xea\x5c\x6f\
\x59\xeb\x7d\x2d\xf9\xfd\x37\xeb\x2f\x4f\xb1\xd6\x75\xc7\x5f\xf6\
\xce\xa5\x8f\x63\x48\xc7\x65\xd5\xba\xab\x29\xae\x86\xfb\x6c\xf4\
\x5c\xe6\x3f\x77\xeb\x36\xbf\xfe\x11\x25\x3e\xb7\xd1\xfe\xb6\x96\
\xd3\x9f\x85\xd6\xff\x00\xe5\x5e\x87\x43\xb2\x3a\x9b\xa8\x67\xe8\
\x4b\x40\x75\xcd\xfb\x37\xbb\x73\xdd\xf6\x7d\x9f\x49\xac\xf7\xae\
\x1f\xa9\x7d\x55\xeb\x7f\x5c\x3a\xd1\xfa\xe3\xd0\x7d\x11\x83\x96\
\xfa\xec\xc6\x6e\x4b\xb6\xbe\x71\xda\xcc\x57\xfa\xb5\x35\xb6\x37\
\xf9\xfc\x57\xff\x00\x84\xfe\x6d\x6e\x7d\x44\xeb\xbd\x0f\x2e\xce\
\xab\xf5\x92\xeb\x6d\xfd\xae\xfc\x6f\xb4\x75\x7a\x58\xc2\x31\xeb\
\x65\x3b\x83\x3e\xca\xcd\xae\xb5\xce\xf4\x69\x67\xf8\x7b\x96\x2f\
\xd7\x7c\x7f\xab\xd9\x2d\xe9\xdf\x5f\x30\xad\xc8\x70\xea\x39\xd4\
\xb6\xd0\xf8\x0c\x15\xe3\x87\x51\x67\xa7\x46\xc6\xdb\xbf\xf5\x2f\
\xf4\xc9\x29\xe9\x1c\x71\x7e\xb5\x13\xf5\x47\xeb\x4e\xf3\xd6\x7a\
\x77\xf9\x43\x27\xec\x63\x6d\x30\x3d\xb4\x57\x55\x8f\xde\xfb\x3f\
\x57\xce\xab\x7f\xe8\xfe\x9f\xe7\xac\x8f\xf1\x8f\xf5\x83\x03\xeb\
\x17\xd4\x2c\x6e\xa5\x82\xdb\x1b\x41\xea\x0d\x60\x16\xb4\x35\xc1\
\xcd\xaf\x20\x3b\x46\xb9\xed\xef\xfb\xcb\x56\xff\x00\xa9\x5f\x54\
\xfe\xbc\xbd\xff\x00\x5a\x2b\xc8\xcc\x23\x37\x46\x86\x39\x95\xb4\
\xfa\x1f\xaa\x7b\x59\x75\x16\x58\xdd\xde\x82\xe5\xfe\xb2\x74\x3e\
\xa3\xd0\xbf\xc5\x7e\x2e\x07\x52\xac\x55\x90\x3a\x9e\xf2\xd6\xb8\
\x3f\xda\xe6\x5f\xb7\xdc\xc9\x6a\x4a\x4d\xf5\x8f\xea\xef\xf8\xb1\
\xfa\xb9\xd4\x07\x4f\xea\x23\xa8\xfa\xce\xad\xb7\x03\x53\x9a\xe6\
\xed\x71\x7b\x07\xb8\xed\xf7\x7e\x8d\x51\xea\x9f\x57\x7e\xa5\x64\
\x7d\x4b\xcf\xfa\xc3\xd0\x06\x5e\xfc\x4b\x99\x8e\xdf\xb4\xb8\x01\
\xb8\xba\x8f\x53\xf4\x6d\x07\x73\x7d\x2c\x9f\xde\x5b\xdf\xe3\x23\
\xea\x2f\xd6\x2f\xac\x3f\x58\x2b\xcd\xe9\x94\xd6\xfc\x76\x63\x32\
\xa2\xe7\xd8\xd6\x1d\xcd\x7d\xcf\x70\xda\xef\x77\xe7\xb5\x53\xc9\
\xfa\xb9\xd5\x7e\xaf\x7f\x8a\x9e\xaf\x85\xd4\xeb\x6d\x77\xbf\x32\
\xbb\x9a\x18\xe0\xf1\xb1\xce\xc2\xa9\xae\xdc\xcf\xe5\xd6\xe4\x94\
\xfa\x7f\x48\x00\x74\xac\x20\x38\xfb\x3d\x5f\xf5\x0d\x56\xd5\x4e\
\x93\xff\x00\x25\x61\x7f\xe1\x7a\xbf\xea\x1a\xad\xa4\xa7\xff\xd3\
\xf5\x55\xcb\x7d\x61\xff\x00\x17\x9d\x1f\xeb\x07\x53\xfd\xa9\x95\
\x93\x99\x46\x47\xa6\xda\xa3\x1e\xc6\x31\xbb\x5b\x3f\xbf\x4d\xaf\
\xfc\xef\xdf\x5d\x4a\xe7\x3a\xcb\x3a\x3f\x43\xea\xdf\xf3\xaf\xaa\
\x75\x0b\xf1\xea\xf4\xc6\x27\xa3\x0e\x7d\x32\xe9\x73\x5d\xe9\x53\
\x5d\x96\x6f\xf6\xa4\xa7\xce\xbe\xc9\xfe\x29\xff\x00\xf9\xe0\xea\
\xbf\x08\x77\xfe\xf0\x2e\x9f\xa3\x7d\x58\xfa\x99\xd0\xfe\xb7\x74\
\xd6\xd3\xd4\x73\xae\xeb\x16\xd2\xfb\xf0\xa8\xc8\x21\xec\x75\x4f\
\xaf\x21\x8e\x73\xde\xdc\x6a\xf6\x7e\x8d\xb9\x0f\xd9\xeb\x57\xef\
\x5c\x07\x5f\xea\x9d\x07\x03\xa6\xd9\xf5\x7b\xea\xeb\xd9\xd4\xba\
\x7e\x51\x6e\x4d\x99\xf7\xd4\xe6\x64\x57\x70\x76\xd7\xd1\x53\x9f\
\x5e\x3f\xe8\x7d\x3a\x29\xff\x00\x05\xfe\x1a\xdf\x7a\xee\xe8\xea\
\x1f\xe3\x3c\x8c\x7c\x86\x7d\x59\xc0\x7b\xea\xad\xac\xa6\xf7\x59\
\x51\xb0\x32\x3f\x36\xc3\x99\xbd\xbb\x9a\xe4\x94\xe3\xfd\x5a\xe9\
\x9d\x5f\xae\x65\x75\xbe\x88\x68\x6f\xfc\xdd\xcd\xea\x57\x7e\xd1\
\xcc\xad\xcd\x6e\x45\x6f\xad\xdf\x68\xa1\xb4\x7a\x8f\x73\x76\x3e\
\xda\xa8\x6b\xff\x00\x54\xbb\xf9\xcb\x3f\xeb\x75\xb0\x7a\xb5\xd7\
\xff\x00\x8c\x2e\x91\xd1\x1d\x5d\x4c\xc6\xfa\xbf\x93\x77\x4f\xc4\
\xb1\xa0\x8b\x5f\x55\x5b\xb1\xeb\x7e\x53\xf7\x6c\xb2\xed\xb8\xed\
\xfe\x6a\xba\x59\xbf\xd4\xfd\x1a\xbf\xd4\x8e\x2b\xef\x0f\xfa\xef\
\x93\x67\xd5\x5c\xe7\x7b\xa8\xc6\xe9\x72\x59\x75\x64\x92\xfc\x9b\
\xce\x23\x73\xdb\xeb\xfa\xdb\xd9\xef\x7b\x10\x3e\xa9\x7e\xd0\xfa\
\xbd\xf5\xa3\x1b\x15\xd8\xb5\x64\xf4\xef\xac\x19\x06\xfe\x9f\xd4\
\x72\x62\xcc\x87\xe3\xb5\xb6\x3a\x9c\x9a\xf6\x3f\xd4\xa2\xdb\xea\
\xbe\xab\x2c\xfb\x45\x35\xd9\xef\xfe\x6d\x25\x3b\xfd\x7f\xea\xd1\
\xe8\xb6\xe7\x64\xe1\xb0\xdb\xd2\x3a\xf3\xed\xb7\xeb\x2e\x55\xee\
\x61\x7e\x2d\x32\xeb\x3d\x5e\x9c\xc6\xfa\x76\x6f\xfd\x6b\x2b\xfc\
\x06\x7f\xf3\x54\x7f\xd7\x38\x3c\xaf\xac\xf8\x2e\xeb\xbd\x13\x0a\
\xa7\x30\xf4\x1e\x81\x99\x59\xc6\xcb\xf4\xde\x2d\x7d\x1e\xa5\x2f\
\xb6\xdc\xa6\xc7\xe9\x1f\xb6\x9f\xf0\x78\xb5\x7f\xc5\xae\xed\xbd\
\x6b\xea\xe7\x4d\xcf\xeb\xb8\x5d\x3b\xa8\xbf\xaa\x75\xce\xa7\x73\
\xeb\xaf\xa6\x66\x32\xc7\x50\x32\x5a\xeb\x9a\x30\xd8\xe7\x55\x55\
\x0d\xa1\xd6\xdd\xe9\x7b\xf2\x3d\x2f\x4d\x95\xfe\x95\x73\x1e\x87\
\xd6\x0e\x9b\xd7\x2c\xc4\xeb\x9d\x23\x17\x12\xaf\xae\x17\xb3\x10\
\xb9\xa6\xbb\x1d\x4b\x5c\x7e\xcf\x73\xf0\x7d\x1b\x6e\xf4\x6c\x63\
\x73\x3d\x4f\xd2\xff\x00\x85\xf4\xd2\x53\xaf\xf5\x8b\x3f\xa2\xf4\
\xe0\xdf\xac\x1d\x36\xe7\x3f\xa7\xfd\x6f\x71\xc3\xea\x36\xd8\xc2\
\x3d\x3c\x66\x8f\xb3\x5f\x76\x0d\x2d\xae\x9b\x6b\xbd\xac\xf5\x5d\
\xfa\x76\xe4\xef\x7f\xf8\x24\x2f\xab\x75\xf4\x7f\xac\x7d\x40\x7d\
\x52\xc3\xb9\xf7\x7d\x5e\xe8\x5b\x73\xfa\x76\x58\x1b\x72\x2c\xb7\
\x73\x5f\x6b\x32\xbd\x7a\xfd\x27\xd3\xeb\xe6\x64\xb3\x63\x70\xe8\
\x7e\xca\xea\xf7\xff\x00\xa4\xd4\xcf\xe9\x1f\x56\xd9\xd2\xc7\x48\
\xc6\xcb\xb7\x27\x2f\xea\x5b\x2c\xcf\xfb\x35\x8c\xf6\xbd\xc0\x1c\
\xca\xaa\xcb\x73\xa9\x6d\x56\xd2\xf7\x6d\x63\xbe\xce\xff\x00\xe6\
\x96\x07\xd5\x9f\xab\xfd\x6b\xeb\x3f\x52\xc9\xfa\xd5\x6e\x3b\xba\
\x7e\x36\x45\x3e\xa6\x10\xc1\xb1\x95\x55\x6d\xf8\xee\xae\x86\x63\
\x59\x51\x7b\xef\x6d\x36\xd9\x8c\xf7\x59\xbf\xd2\xfd\x27\xf8\x54\
\x94\xe8\xdf\xd7\xfa\x57\x41\xff\x00\x1a\x5d\x66\xee\xab\x90\x71\
\xb0\xec\xc2\x65\x2c\xda\xd7\xbc\x6f\x7b\x70\xec\x86\xb2\x96\xd9\
\xb7\xda\xcb\x5f\xbb\x6a\xad\x6e\x6f\xf8\xac\xb7\xea\xed\x7f\x57\
\x5f\xd6\x73\x4e\x1d\x59\x1f\x6a\x6d\x9e\x9b\xfd\x5d\xe4\x3d\x9b\
\x37\x9c\x2f\x4f\xd2\xfd\x27\xfa\x24\xcd\xe9\x7f\xe3\x18\x7d\x64\
\xc9\xfa\xc7\x91\xf5\x7f\x12\xeb\xb2\xa9\x6d\x36\xd3\x6d\x94\xbe\
\xa6\xb5\xa2\x91\xea\x31\x87\x29\xcf\xf5\x36\xe3\x7e\xf2\xa9\xf5\
\xa3\xa8\x7f\xcf\x3c\xd7\x74\x1f\xa9\xf8\x38\xb9\x58\xd5\x35\x99\
\x7e\xbd\x4c\x18\xd6\xfb\x37\x55\x73\x5c\xec\xb3\x8a\xdf\x4f\x76\
\x45\x7f\x98\x92\x9d\x9e\x89\xfe\x2f\xfe\xa6\x75\xfc\x47\x66\xf4\
\xbe\xad\xd5\x2f\xa1\x96\x1a\x9c\xf3\x63\x59\xef\x68\x6b\xdc\x36\
\xdd\x88\xc7\x7d\x1b\x18\xb0\x5f\x83\xfe\x29\x5c\xd2\xcb\x3a\xff\
\x00\x54\x73\x7b\xb4\x87\x11\xa7\xc7\x01\x6c\x7f\x8b\xac\x9e\xbd\
\x8d\xf5\x06\xfb\x3e\xaf\xe2\xd7\x9b\x9f\xfb\x41\xc0\x53\x6b\x83\
\x5b\xb0\xb2\x8f\x51\xdb\x9d\x6e\x3f\xbb\xfe\xb8\xac\xb8\xff\x00\
\x8c\x52\x08\xff\x00\x9a\x1d\x2a\x4c\xf3\xe8\x11\xaf\x8f\xeb\x89\
\x29\xf4\x0e\x9e\x28\x18\x18\xc3\x1d\xc5\xf4\x0a\x99\xe9\x3d\xdc\
\x96\x6d\x1e\x9b\x9d\xa3\x7d\xce\x6f\xf2\x55\x84\x2c\x5f\x57\xec\
\xd4\xfa\xcc\x15\x5b\xb1\xbe\xa5\x6d\xfa\x2d\x74\x0d\xec\x6c\x7e\
\x6b\x1c\x8a\x92\x9f\xff\xd4\xf5\x55\xe4\xff\x00\xe3\x04\xe0\x65\
\xfd\x73\x77\x4d\xeb\x7d\x56\xfe\x9d\xd2\x7e\xc6\xcb\xb6\xb3\x7d\
\x8c\x37\x02\xf6\xd7\xfa\xb3\x3d\x46\xef\xda\xe7\xfb\xfd\x35\xeb\
\x0b\xcf\xff\x00\xc7\x16\x06\x0f\xfc\xdb\xfb\x7f\xd9\xea\xfb\x67\
\xda\x2a\xaf\xed\x3b\x1b\xea\xec\x8b\x3f\x47\xeb\x47\xa9\xb3\xf9\
\x1b\x92\x53\x97\x5d\x3f\x56\x3e\xa3\xf5\xaa\x7e\xae\xf5\x7a\x31\
\xb3\x70\x32\xa9\x76\x6d\x9d\x47\x32\x81\x65\xac\x2f\xdf\x43\x31\
\x98\xc6\x57\x77\xe8\xb7\x62\x7f\xe0\xcf\x4d\xd3\x73\x70\xea\xea\
\x55\xdf\xf5\x73\xeb\x16\x5f\xd6\x0e\xa8\x0b\xbe\xc9\xd1\x6f\x75\
\xb5\x51\x60\x2d\x73\x6c\x63\x9f\x91\xe9\xe3\xb1\xb8\xb8\xc6\xcb\
\xeb\xdc\xef\xfb\x4e\xb8\x7f\xae\x2d\xa5\xbd\x4e\xa1\x4f\x5b\xb3\
\xeb\x03\x7d\x06\x93\x99\x69\x71\x73\x4e\xeb\x3f\x56\xfd\x2b\xed\
\x76\xd6\x7f\x3b\xf4\xbf\xc3\x2f\x41\xc1\xc1\xea\x9d\x57\xd0\xe9\
\xf4\xfd\x58\x67\xd5\x97\xdc\xc6\xc7\x5f\xc6\x0c\x17\x53\xb5\xbe\
\xab\x9d\x5b\xa8\xaf\x1a\xe6\xfd\xb3\x67\xd9\x5f\xfa\xc7\xd0\xc9\
\xf7\xfa\x89\x29\xbd\xd3\xc3\x7f\xc6\x2f\x48\xea\x78\xdd\x63\x0a\
\x9e\x9f\x9d\x89\x70\xc4\x6e\x45\x6d\x6d\xb6\xd7\xb1\xcc\xba\xd6\
\x32\xdb\x3e\x8e\xeb\x19\xe9\xbf\xd3\x7a\xc2\xa7\xeb\xae\x76\x3f\
\x5a\xc7\xfa\xb3\x83\xd1\x71\x7a\x96\x6f\x46\xb1\xdd\x3b\xa7\xe4\
\x5a\x40\xb8\x8c\x79\xc6\xf5\x1b\x6d\x9e\xdc\x77\x5b\x5d\x1b\xec\
\xdb\x62\xa3\xd1\xbe\xa6\xfd\x7b\x67\x5e\xb3\x01\xb9\x5d\x47\xa6\
\xf4\xfb\xef\xb8\xdb\xd4\x2b\x7b\x9a\x1e\x5a\x2c\x35\xe4\xdd\x55\
\x77\xb3\x7b\xf2\x1c\xc6\x7b\x9d\x67\xf8\x45\xd2\x62\x74\x26\xd3\
\xd5\x2a\xeb\x5d\x56\x96\xf4\x7a\x7e\xac\xbc\xb6\xde\xa0\xfa\xc1\
\x7f\x53\x99\xa5\xdd\x47\x22\xd6\xec\xb5\x96\x5a\xe6\x36\xff\x00\
\xd2\x7d\xad\xfb\xf2\xbf\x9c\x49\x4f\x23\x89\x9f\xf5\x58\x75\xc6\
\xfd\x67\xb8\xf5\x27\x64\x33\x28\x66\x64\xb6\x9a\x2a\x76\x38\xb6\
\xc7\xba\xf3\x4d\x77\xd9\x7b\x2c\xf4\x5d\x67\xa8\xda\x5f\x6b\x19\
\x65\x95\xb1\x6a\x64\xfd\x70\xfa\xbd\x91\xfb\x62\xf1\xfb\x43\x2f\
\x2f\x35\xaf\x77\x4c\xfb\x4d\x55\xb9\xb8\x37\x96\x58\xda\xee\xc2\
\xbb\xed\x17\x59\x89\xfa\x47\x54\xef\x57\x1f\xd3\x7f\xe8\x2a\xff\
\x00\x46\xb3\x3e\xa1\x9c\xa6\xe4\x64\xe3\xe3\x06\x16\x65\x52\x28\
\xb9\xd7\x02\x6b\x69\x07\xd6\x37\x39\x9f\x46\xcf\xb3\xe3\xb7\x22\
\xdf\x72\xd1\x37\x54\xd2\xef\xb2\x07\x57\x49\x71\x35\xb6\x21\xc5\
\xbf\xe9\x6c\xd9\xb5\xbe\xa5\x9f\xce\x59\xb5\x20\x09\xd7\x65\xd4\
\x07\x8b\x83\xd0\x3a\xee\x67\x4f\xb3\xa8\xfd\xbd\xff\x00\x6b\x1d\
\x6a\x9f\xb3\x65\xe4\x3a\xc2\xfc\x81\x5b\x81\x65\x96\xd3\xea\x7f\
\x3f\x7b\x6a\x77\xe8\xd9\x6b\xd7\x4d\x89\xd6\xfe\xa7\x59\xf5\x53\
\x07\xa2\xd3\xd7\xf3\xba\x31\xc2\xb6\xc7\xef\xf4\xde\xcb\xde\x1e\
\xeb\x6c\xda\xff\x00\xb1\xfa\xd5\x7a\x7b\xb2\x3d\xbf\xa5\xfc\xc5\
\x53\xa8\x66\xd3\x57\xd5\xdc\xba\xb1\xaa\x6d\x79\xd7\x3d\xa2\xcb\
\xda\xd1\x27\x1d\xc6\x2f\x6e\xef\xcd\xb3\x77\xb3\x73\x3f\xc1\x3d\
\x66\x7d\x43\xbb\xa1\xd1\xd5\xb2\x8f\x58\xa7\x1b\x24\x3b\x0c\x8c\
\x3c\x7c\xa6\x35\xed\x7d\xe6\xc6\x7a\x35\x57\xea\x32\xdd\xb6\x59\
\xf4\x37\x25\x44\x1a\x2a\x20\x55\x84\x9d\x7f\xa8\xe1\xe2\x62\x55\
\x67\x42\xfa\xdb\xd4\x3a\xa6\x53\xee\x6b\x1f\x8e\xf7\xdf\x58\xf4\
\xcb\x5f\xbd\xfb\x9f\xe9\xfe\x78\xae\xbf\xfa\xe2\xde\xfa\xe2\x33\
\xba\x6f\xd4\xfa\x7a\x93\x7a\x65\x3f\x56\xba\xb7\xdb\x85\x07\xec\
\x05\x95\xbf\xd0\x2c\xb8\xec\xfb\x4e\x1e\xd7\x3a\xbb\x36\x37\x7d\
\x7b\xf6\x7e\x8d\x51\xa3\xa6\x75\xca\xbe\xb1\x65\x75\x87\x7d\x4a\
\x63\xf1\xb2\x28\x14\xd5\xd3\x48\xab\xd2\xaa\xc0\x2a\xfd\x66\xbf\
\xd0\xec\xdf\xba\x97\xfd\x1a\x59\xfc\xf7\xf3\xaa\x8d\x59\x9f\x5b\
\xbe\xaf\x13\x9f\xf5\xbf\xa7\xe4\x75\x8e\x98\xe1\xe8\xb3\x1b\xa9\
\x5c\x6c\xa8\x5c\xef\x7d\x57\x31\x97\xfd\xad\x9e\xb3\x19\x5d\xac\
\xdd\xe9\x7d\x0b\x2c\x49\x6b\x5b\xeb\x97\x57\xfa\xcd\xd3\xfa\x9d\
\x78\xc7\x19\xdf\x56\x87\xa2\xd7\x8c\x0c\x0b\xb6\x54\xed\xce\xb2\
\x72\x9c\xdc\x37\x8a\x7d\x5b\x63\xd3\x7f\xe7\xfe\x85\x75\x9f\x5d\
\x72\xea\xea\xbf\x57\xee\xfa\xd5\xd0\x7a\xe6\x5b\x6b\xc0\x6d\x58\
\x6f\xa3\x1d\xd6\xd5\x53\xad\xf5\x19\xea\x3e\xcd\xfe\x8b\xdc\xff\
\x00\x4f\x31\x9e\xfd\x8b\x95\xc5\x67\xd6\x3f\xac\x9f\x56\x2c\xa5\
\xbd\x26\xce\xaf\x94\x72\x74\xeb\x76\xbc\x5b\x7b\x18\xc0\xc7\x7d\
\x89\xae\xb8\x3a\xff\x00\x4b\xdd\xbf\xfa\x47\xa7\xfa\x5f\xe6\xd6\
\x8f\x47\xe8\x1d\x57\xea\xc7\xd5\xcc\xae\xb9\xd6\xd9\x6b\xf1\x71\
\x6f\xda\xff\x00\xab\xb9\x1f\xd1\xb2\x3d\x41\x4d\x15\x65\xdc\xd2\
\xeb\x69\xfd\x15\x96\xef\x6f\xea\xd6\x7b\xf1\x2b\x49\x4f\xae\xf4\
\xa7\x39\xdd\x33\x0d\xce\x71\x73\x9d\x45\x65\xce\x71\x92\x49\x63\
\x7d\xce\x71\xfa\x4a\xd2\xaf\x81\x63\x6d\xc1\xc6\xb5\xac\x15\x36\
\xca\x98\xe1\x5b\x7e\x8b\x41\x68\x76\xc6\xe8\xdf\x6b\x15\x84\x94\
\xff\x00\xff\xd5\xf5\x55\xe5\x3f\xe3\x86\xa1\x26\xdf\xdb\x46\x7f\
\x42\xd3\xd0\xe4\xc7\xf8\x5f\xd7\x36\xfa\xbf\xfb\xaf\xff\x00\x5c\
\x5e\xac\xb8\x8e\xbb\x9b\xf5\x42\xcf\xae\x5f\xb2\xfa\xf7\x4f\xc4\
\x07\xec\x8d\xbb\xf6\x9e\x5d\xad\x60\xd0\x90\xcc\x7d\x96\xb5\xad\
\xfd\xef\xf0\xc9\x29\xcc\xe9\xdd\x07\xa3\x64\xe6\xb3\xeb\x57\x5d\
\xe9\x98\xdf\x56\xf0\x71\x01\xc3\x7f\x48\xc9\xa5\x86\xab\x49\x13\
\x5e\x73\xac\x7b\x31\xab\xdc\xe7\x64\x7a\x5f\xd1\x6c\xfe\x8d\xfc\
\xf7\xee\x07\x12\xdb\xba\x56\x73\x7a\x8f\x4d\xfa\xd3\x67\xd6\x7b\
\x6a\x73\xbd\x0f\xab\xd5\x3d\xc3\xd6\x0f\x0e\xaf\x63\x3f\x58\xcb\
\xf6\xe1\xd6\xff\x00\xb5\x7f\x45\x7f\xf4\x6f\xf0\x4b\x67\x33\xea\
\xcd\xd9\x9d\x06\xef\xaa\x7d\x53\xeb\x1b\x32\xfa\xa6\x65\xa3\x2a\
\x9b\x2e\x03\xd6\xf4\x5b\xb0\xec\xaf\x10\xdf\xea\xbe\xad\xd4\x5c\
\xef\x53\x72\xc1\xfa\xc8\x31\x70\x18\xda\x3e\xa5\x74\x5f\xb6\x66\
\x32\xa6\x47\x5e\xe9\x60\xd9\xe8\xdc\xd7\x6c\xc8\xc7\x3f\x66\xaf\
\x21\xbe\xb5\x98\xcd\xfd\x2b\x1f\x91\xbf\xd3\xcb\x49\x4d\x2f\xab\
\xbf\x5a\x7a\xef\x5a\xce\xce\xfa\xa9\x6d\xf9\x58\x39\x9d\x57\x2a\
\xc7\xd5\x9c\xeb\x9e\xfb\x30\x85\x5b\xb2\x5f\x89\x55\x27\xd2\x7f\
\xfd\xa7\x76\x37\xb3\x23\x1b\xf9\xcf\xe6\xd5\xff\x00\xad\x38\x7f\
\x59\x3e\xad\xfd\x5e\xcf\xe9\xf9\x37\xe5\xfd\x64\xa3\xa9\xd7\xba\
\xcc\xeb\x37\xb5\x98\x62\xa7\x37\xf3\x5e\xec\xcd\xde\xbf\xa9\xfe\
\x96\x8f\xe6\xd5\x4f\xf1\x7f\xf5\x5f\x37\x17\xa9\x3b\xeb\x77\xd6\
\x1b\xdf\xd2\xce\x15\xcf\xf5\x59\x9f\x51\xa7\xd4\xf5\xd8\xfa\xbd\
\x77\x64\xe4\xbe\x96\xb3\xf4\xd9\x1f\xe8\xff\x00\x9c\x42\x77\xd6\
\x07\xe4\xe7\x75\xfc\xee\xa1\xd6\x59\x99\xd3\x30\x32\xec\xfb\x3f\
\x43\xb2\xd6\x9a\xf3\x69\x75\x96\x7a\x55\xd0\xf2\xf3\xfa\x1a\x9b\
\xe9\x58\xcf\x4e\x8c\x94\x94\x87\xea\x61\xa9\xb8\x7d\x54\x69\xb8\
\xe1\xe4\x06\xc7\x30\x4d\x0d\xb5\xde\xdf\x77\xf3\x16\x3f\xfb\x0b\
\xab\xff\x00\x9a\x6e\x17\x58\xe2\xf2\xf2\xe2\x5a\xdb\x00\x6e\xd0\
\x1a\x36\x87\x6e\x86\x37\x75\xbf\x9b\xfa\x27\xfd\x9e\xaf\xf4\xfb\
\x3f\x49\x93\xf5\x17\xea\x76\x5d\x35\x1c\xfe\xb3\x5e\x46\x2b\x5e\
\xf7\x63\xd3\x8e\xf6\x9a\xcb\x83\xda\xea\x2e\xb7\x29\xa4\x7a\x8c\
\xaa\xf6\xdb\xf6\x6a\x1b\xec\xff\x00\x4d\xfe\x81\x74\x9d\x43\x2b\
\xa8\x74\x60\x1f\x68\x7e\x5d\x0f\x6b\x69\xc7\xcb\xb0\x35\xd6\xee\
\x3e\xd6\x53\x63\x1a\x69\xde\xfb\x9f\xb7\xf5\xad\x9f\xa6\x7f\xf3\
\xde\x82\x5c\x46\x87\x0f\x4d\xd7\xf0\x83\x2a\x3d\x76\x78\x9e\xbd\
\x86\x71\x2d\xcb\xc4\xde\xd7\xb9\x8c\x92\x40\x81\x2e\x63\x2d\x73\
\x75\x0c\xfa\x0e\xff\x00\x09\xb2\xb6\x7f\x51\x51\xfa\xa2\x31\x70\
\xe9\xbb\xac\x7e\xcf\x67\x5e\xcc\xad\xc6\x91\xd2\x4b\x46\xfa\xaa\
\x60\x66\x57\xed\x8f\x50\xb3\x27\x65\x6c\xb7\xf5\x4f\xe6\x3f\xeb\
\xff\x00\xe0\xd7\x53\xd5\x3a\x05\x63\x27\x17\x2b\x2f\x2a\xcb\xaf\
\xbd\xd6\xfd\xb7\x71\x00\x5b\x68\x6b\x6c\xad\xb5\x9a\x59\xfa\x36\
\x57\x53\x6d\x75\xcc\xa3\x7f\xe8\x31\xff\x00\x57\xd8\xa8\xe6\x74\
\xab\x3a\x5f\x48\x6e\x47\xd5\xac\x0c\x8b\xf2\x0e\x6b\x19\x96\x71\
\x5b\x6b\xdd\x6e\x2b\xab\x71\xbf\x0d\x9e\xa0\xb7\x2f\xec\x2e\xb6\
\x86\xef\x75\xd5\xff\x00\x3d\x62\x6c\xb2\xc3\xdc\x8e\x3b\xf5\x98\
\xdf\xd8\xc2\x73\x40\x64\x18\x7f\x4e\x43\x8e\x23\xfa\xbf\xca\x2c\
\x8f\x54\x6f\xd6\x43\xfb\x74\xfd\x70\x77\xd5\xdf\xb4\x73\xd1\x85\
\xa5\xc2\xaf\x47\xf4\x5f\x4c\x64\x62\x7f\x49\xf4\xfe\xd1\xfd\x17\
\xfc\x37\xf8\x45\x55\xb4\x75\xdf\xf1\x9d\xd4\xdd\x63\xce\x4f\x48\
\xe8\xa6\xad\xf5\x83\xbb\x27\x18\xdd\x49\x15\x7b\x75\xc3\xa9\xb6\
\xbd\xb7\xd9\xfe\x62\xd6\xfa\xaf\xf5\x53\xea\xf7\x55\xea\xf9\x1d\
\x4b\x2f\x1b\x1b\x0e\xdb\xf1\xdc\xc3\xf5\x62\xd6\x0f\x57\x17\x69\
\xa6\xa6\x66\x58\xc7\x3a\x9b\xbf\x4c\xd6\x7a\xdf\xd1\x29\xfe\x99\
\xfc\xe7\xe7\xbf\x9d\xea\x7d\x17\xeb\xff\x00\xd5\x6c\x8f\xd8\xfd\
\x0e\xfe\xa3\x99\x82\xc6\x8b\x1b\x6e\x25\x16\x36\xbd\xd6\x7b\xac\
\x68\xf4\xbd\x76\xfb\x7f\xe3\x13\x97\xbb\xcf\xe9\x79\xb9\xb8\x4f\
\xeb\x07\x36\xdf\xf1\x79\x84\x1f\xe8\x3b\xa7\x30\x39\x95\xbd\xe0\
\x4f\xdb\x7f\x47\x67\x4d\x6f\xa9\x7e\xff\x00\x47\xfa\x3f\xfd\xa6\
\xfe\x75\x74\x1f\x5b\x7e\xa4\x75\x0f\xac\xcf\xaf\xd3\xeb\x96\xe1\
\xe0\x9a\x2b\xaa\xdc\x46\xb1\xd6\x55\x6b\x98\xf7\x5c\x32\x5e\xcf\
\xb4\x53\x5e\xf7\x6e\xaf\xfc\x1f\xf8\x25\xc6\x5f\xf5\xc3\xac\x7d\
\x65\xea\x43\xa8\x0f\xab\xd9\x9d\x4b\xa1\x8a\xbd\x1b\x3a\x6b\x0d\
\x96\xd0\xeb\xda\x5c\xf1\x7f\xab\x56\x33\x98\xdb\x58\xdb\x19\xec\
\xd9\xbd\x03\xeb\x6f\xd6\xcf\xaf\x57\xda\xdc\xfc\x7c\x0e\xa5\xf5\
\x7f\xa7\xd1\x4b\x6a\xb1\x84\x5a\x2a\xdd\xbd\xd1\x6b\xae\x75\x38\
\xec\x66\xff\x00\x56\xaa\x52\x53\xec\x78\x94\x7d\x9b\x12\x9c\x6d\
\xdb\xfd\x1a\xdb\x5e\xe8\x89\xda\x03\x37\x6d\xd7\xc1\x19\x56\xe9\
\x8f\x7d\x9d\x37\x12\xcb\x1c\x5e\xf7\xd3\x5b\x9e\xe3\xc9\x25\xad\
\x2e\x71\x56\x52\x53\xff\xd6\xf5\x55\xe7\x1f\x5d\xb3\x3a\x07\xfc\
\xe7\x38\x59\x3f\x56\xad\xeb\x9d\x43\xec\xcc\xb3\xd4\xa1\xf6\x6e\
\xf4\xe5\xfa\x7a\x14\x87\x7b\x6b\xff\x00\x48\xbd\x1d\x71\x5f\x67\
\xc8\xff\x00\xc7\x63\xed\x1e\x93\xfd\x0f\xd9\x9b\x3d\x6d\xa7\x66\
\xed\xdf\x47\xd4\x8d\x89\x29\xe3\x7e\xb3\x74\xbf\xf1\x87\xd2\x7e\
\xb1\xe3\xe7\x63\xdf\x95\xd5\xf3\x59\x8a\x1a\xcc\xfc\x7c\x42\xe6\
\xb1\xae\x75\xcc\x76\x31\x6b\x2b\xb6\xad\xed\xf7\x59\xfb\xff\x00\
\xa5\x5b\xff\x00\x50\xf3\xf1\xb3\xba\x9d\x36\xf4\xbc\xba\xfa\x3e\
\x23\x6c\xb1\x99\x7d\x02\xc7\xb5\xf7\xe4\xe4\x0a\x8b\xad\xcf\x67\
\xa8\x7d\x66\xb7\xdd\x57\xb2\xb6\x6c\xfd\x49\x74\x35\x66\xfd\x60\
\xfa\xb5\xf5\x7e\xec\xbf\xac\x36\x3b\xae\x65\xb6\xf1\xb0\x61\xd6\
\x03\x85\x4f\xf4\xeb\x63\x7d\x36\x57\x4f\xd0\x7f\xa9\x67\xd1\xfc\
\xf5\xc7\xf4\xec\x2c\x4f\xa9\x7d\x49\xb9\x79\xbd\x1f\x2b\xab\x75\
\x6b\x8b\xf3\x31\x73\x30\xc5\xa5\x95\x55\x7b\x5d\x47\xd9\x2d\xad\
\xc5\x95\xfa\xec\xfd\x36\xfd\xd5\x3f\xf9\xf4\x94\xbf\xd7\x3c\x2f\
\xac\x16\x74\x0e\xb1\x98\x7e\xb2\xd5\xd4\x7a\x75\x36\x86\xdd\x83\
\x53\x2b\x76\xd2\x6f\xaf\xd2\xc7\xb2\xda\xcb\x9d\x55\x94\xb9\xcc\
\xff\x00\x31\x73\xb7\xdb\xd1\xdd\xd0\xf1\xba\x75\x7f\x55\x72\x6b\
\xea\xd9\xb8\xd5\xb7\x13\x37\xf4\x93\x75\x81\xb5\x9b\x32\xb1\xa9\
\xdb\xfa\x66\xd9\xfc\xe7\xe8\xbf\x7d\x7a\x06\x38\xfa\xa9\x95\x6b\
\x7a\x06\x3f\x4a\xb6\xec\x4f\xac\x3f\xad\xf5\x17\xb2\xc7\xba\xba\
\xaf\x00\xe5\x7a\x19\x96\x32\xd7\x3f\x1b\x21\xb6\x51\xfc\xcb\x1f\
\x52\x6b\x7e\xab\xe6\x55\x6b\xab\xbb\xa8\xe2\xd7\xd4\x71\x89\x67\
\xd5\x06\xb9\xdb\x4e\x35\x2d\xf6\xfa\x2e\xa8\xb5\xbf\x6d\x77\xd9\
\x85\x35\x3d\xd7\xd7\x9b\xf4\x12\x53\xc5\xbb\xea\x5d\x9d\x67\xa1\
\x1b\x71\x7a\x3e\x47\x45\xcd\xe8\xd8\xc0\xe4\x0b\xaa\xb5\xcf\xcf\
\xb5\xcd\xff\x00\xb4\xec\x7e\xdd\x8e\x6b\xf1\xec\xfe\x6d\x96\x7f\
\x4a\x62\xe9\xfa\x4f\xd5\x2e\xa5\x87\xf5\x6b\x03\x37\xa4\x66\x8f\
\xab\x59\x2e\xc7\x2f\xeb\x2f\xba\xb3\x2f\xd9\xee\xae\xcb\xdb\x94\
\x76\xe3\xfd\x9f\xf4\xee\xff\x00\x07\xfc\xea\xcf\xa7\xeb\x97\xd7\
\x7e\x9a\x3a\xd7\x4f\xea\x75\x66\x75\x0c\xc6\x93\x47\x4d\xcc\xa3\
\x15\x82\xb6\x59\x59\xb6\xb7\xdf\xa5\x2c\xf5\x2a\xb3\xf4\x2f\x67\
\xb2\xd4\x3f\xae\xff\x00\x59\xfe\xb2\xe3\x7d\x51\xe8\x41\xf9\x0e\
\xae\xee\xaf\x8d\x91\x5f\x53\x6b\xea\xac\x3a\xc0\x45\x4c\xda\xe6\
\x3e\xaf\xd0\xfb\x2d\xb3\xf9\x9f\x49\x25\x35\xba\x27\x5b\xce\xe9\
\x5f\x5a\x3a\xd9\x34\xdb\xf5\xba\xcc\x9a\xea\x65\xb9\x58\x03\x73\
\x1c\xdd\xad\x3b\xdd\xf6\x66\xdc\xc6\xb7\x69\xf4\x7d\xbf\xe8\xd5\
\xce\xb5\x99\xf5\x87\x05\xdd\x37\xeb\x2d\x59\x16\x74\x5c\x2c\xfc\
\x96\x61\xfe\xc8\xb5\x82\xb7\x51\x5e\xef\xd6\x2c\xb9\xf7\x35\xad\
\xfd\x61\xf8\x7e\xbf\xad\x65\x7e\xaf\xa1\x65\x75\xfa\xbe\x82\xe6\
\xbf\xc5\xdb\x3a\xe3\xf2\xf2\xd9\xd1\x7a\xbe\x3f\x48\xb9\xcd\xad\
\xae\x39\x01\x8e\xf5\x4b\x9d\xb6\xba\xea\x6d\xcc\xb7\xdf\xbf\xf7\
\x17\xa2\xfd\x64\xfa\xab\xd7\x3a\xb7\xd5\x7c\x0c\x6e\xad\x93\x56\
\x6e\x67\x4f\xc8\x76\x5e\x73\xda\xd7\x34\x5d\x5b\x3d\x63\xe8\x50\
\xcc\x7a\xeb\xfd\x2b\xa8\x7d\x74\xfd\x0a\xd2\x53\x4b\xac\xf4\x3b\
\x5d\xd7\x32\x7e\xb8\x74\xbf\xac\xf8\x7d\x37\x1f\x3d\xac\xc6\x65\
\xe4\xd6\xe6\x3b\x63\x6b\x6b\xe8\x6e\x45\x96\x7a\x0e\x7b\xac\xc3\
\xdd\xec\xfd\xc5\xa3\xf5\x77\xfc\x64\xe3\xf5\x87\x9b\x32\xf0\x5d\
\xd2\xba\x76\xd7\x47\x52\xca\xb0\x37\x1c\xda\xd2\xd6\xfd\x95\x97\
\xd8\xca\xa9\x75\xce\xdc\xf7\xec\xf5\x37\xfe\x8f\xe8\x2e\x0f\xeb\
\x8e\x2e\x7b\x7e\xaa\xe2\xe5\xe1\xee\xc1\xfa\xb3\x66\x58\x6e\x17\
\x46\xb9\x87\xd7\xa6\xdd\xb9\x1e\xad\xb6\x5d\x63\x5d\x73\xd9\x6d\
\x8c\xc9\xb5\x9f\xac\xd9\xfd\x21\x51\xfa\xad\xd4\x2f\x76\x08\xe9\
\xdd\x6b\xa6\x65\xf5\x7f\xab\x8d\x2f\xb2\x8c\x6c\x6a\xdc\x36\xe5\
\x4b\x7f\x4d\xf6\x9a\x7d\x1b\x5d\xb6\xb7\xda\xc7\xd5\xf6\x8d\x9f\
\xa6\xfe\x6d\x25\x3b\xf8\xd9\x1d\x75\xb9\xad\xc4\xe9\x55\x5f\xf5\
\x1b\xa2\x1a\xcb\xed\x7e\x6d\x67\xd1\x39\x26\x7d\xce\xc9\xcc\x65\
\x7b\x5f\x7b\x3d\x1a\x98\xcf\x57\xfc\x12\xbb\xfe\x33\x73\xd9\x9f\
\xd2\x6d\xb7\x03\xeb\x1e\x25\xd8\x6c\xa6\x96\x5d\xd2\xea\xb2\xab\
\x1f\x75\x82\xe9\x75\xed\xf4\xde\xeb\x3d\xbb\xea\xb3\x63\x7f\xd0\
\x2a\x58\x9f\x5d\x2c\xea\x1d\x31\xdd\x0f\xeb\x9f\x4a\xce\xea\xf9\
\xb6\x5b\xf6\x86\xd5\x5d\x5e\x81\xf4\x9a\xd6\xfa\x51\x5e\x2f\xd9\
\x6d\xda\xc7\xb6\xe7\xef\xd8\xb3\x3a\xe6\x3f\xd5\xbb\xfa\x55\xf5\
\x74\x7f\xaa\x9d\x47\x0b\xa8\x3b\x67\xa3\x91\x60\xbd\xed\x60\x0e\
\x6b\xad\x96\x3e\xdb\x5b\xee\xa8\x3d\x9f\x41\x25\x3e\xcd\xd2\x7f\
\xe4\xac\x2f\xfc\x2f\x57\xfd\x43\x55\xb5\x57\xa5\x07\x37\xa5\xe1\
\xb5\xc0\xb5\xc2\x8a\x81\x04\x41\x07\x63\x74\x20\xab\x49\x29\xff\
\xd7\xf5\x55\xc0\x7d\x64\xea\x5f\x5d\x32\x7e\xba\xfe\xc0\xfa\xbd\
\xd4\x6a\xc2\x67\xd8\xdb\x93\xb6\xea\xd8\xe6\xc8\x71\x6b\xfd\xee\
\xc7\xc9\xb7\x73\xbd\xab\xbf\x5c\x37\xff\x00\x9d\xff\x00\xfd\xa5\
\xff\x00\xdf\x92\x53\x43\xd0\xff\x00\x1a\x31\x3f\xf3\xa7\xa5\xc0\
\xef\xfa\x2f\xfd\xe0\x4f\xd2\xba\xaf\xd7\xae\x9f\xf5\xeb\xa6\x74\
\x0e\xbd\xd4\xe9\xcd\xa7\x32\x9b\x2f\x73\x68\xae\xb0\xd2\xd1\x5e\
\x4f\xa7\xfa\x4f\xb3\x63\xdb\xbb\xd5\xc6\xdf\xec\x5e\x3c\x6b\x7e\
\xa7\x69\x81\x3d\xbc\x17\xb0\xe4\xe9\xfe\x35\x3e\xac\x0e\x3f\xc9\
\x7f\xfa\x2b\x3d\x25\x36\xcd\xb5\xf4\x2f\xaf\x38\x38\x1d\x1d\xed\
\xc7\xe9\x1d\x4b\xd7\xc9\xea\xda\x8b\x18\xec\x80\xdb\xfd\xd6\x64\
\xdf\xea\xbf\x1d\xfe\xa5\x75\xfe\x8a\xbb\x6a\x47\xca\xc6\x76\x0e\
\x56\x57\xd6\x3f\xac\xf6\x57\xd4\xc6\x15\xae\xbf\xea\xfd\x58\x8e\
\x8b\xab\xc7\x7b\xbe\x87\xa6\xc1\x87\x5e\x53\xbd\x37\xe3\xff\x00\
\x3b\xf6\xaf\xf8\xc5\x9d\xf5\x27\xa5\x60\x75\x8c\x0f\xac\xfd\x33\
\xa8\x34\xbb\x12\xfe\xa8\xf0\xf6\x07\x16\x1f\x6b\xdb\x6b\x21\xcd\
\x87\x7d\x3a\xda\xb6\x3a\x33\x3e\xab\xf5\xae\xa4\xca\xf1\xb1\xef\
\xae\xff\x00\xaa\x0f\xfb\x0e\x3b\xec\x76\xd6\xfb\x43\xa8\xfd\x1e\
\xcb\x6c\xf5\xd9\xb7\x1b\xfc\x2a\x4a\x73\x6c\xfa\xcd\xf5\x83\x0c\
\x11\x97\x96\x0b\xbe\xb4\x6b\xf5\x5f\xf4\x75\xb4\x62\x07\x7b\xda\
\x3a\xa6\xea\xd9\xf4\x19\x99\x88\xd7\x6d\xfd\xa3\xfc\xcd\xbf\xf5\
\xde\x03\xeb\x27\x56\xeb\x77\x75\xdc\x4c\x5f\xad\xf7\xfe\xd3\xc1\
\xe9\xd9\x30\xf7\x51\x5b\x6b\x6d\x95\x97\x54\x73\x1b\x8d\x6d\x55\
\xe1\xfa\x9e\xa5\x4d\x6b\x7e\x9a\xd3\xfa\xd3\xf5\x93\x13\xa9\x67\
\x75\xde\x9f\xf5\x8e\x9b\xb2\xee\xc0\xbb\x22\x8e\x80\xfa\x1a\xd6\
\x36\x93\xb9\xec\x77\xda\x76\xbe\x97\x5a\xd7\x7a\x38\x7f\x4d\x99\
\x1f\xe1\x16\xfb\x3e\xa8\xdd\xf5\x9b\xea\xdf\xd4\xf3\xea\x52\x30\
\xb0\x59\xbb\x3a\xbb\x5e\xf6\x3d\xf5\x3d\xd4\xef\x65\x1e\x93\x1f\
\xef\xf4\xe9\xb7\xf3\xea\x49\x4e\x37\xd5\x3e\x91\xf5\x7f\xaa\xf5\
\x9e\xad\x9b\xd3\xf1\x8e\x05\x15\x54\xcb\xba\x03\xf3\x1e\xf6\x8a\
\xb2\x1b\xa5\x77\x3f\xf4\xb7\x33\x21\xac\xca\x67\xa8\xea\xec\xfb\
\x53\x3f\x90\xbb\x4e\xa3\xff\x00\x3d\x2a\xfa\xa5\x88\xfa\x7a\xce\
\x1b\x7a\xbd\x4f\xb1\xf9\x79\x80\x31\xd5\x5c\xc6\xfa\xef\x65\x38\
\xcd\xfb\x29\x63\xad\xd9\xe8\xb7\xdb\x8f\x57\xf3\x6f\x58\x3f\x58\
\xbe\xaf\xe3\xfd\x61\xd9\xf5\x33\xea\xd8\x18\xcf\xfa\xb8\xe2\xfb\
\x9d\x98\xe7\x7a\x65\xb7\x8d\xed\x6d\x16\xd7\xf6\xab\xac\xf7\x3f\
\xfc\x2d\x75\x2a\xaf\xea\xbf\x56\xbe\xaf\xf4\xec\x3f\xaa\x1f\x59\
\xb1\x72\xb3\x33\xba\x15\xbf\x69\x36\xe0\xc1\xa7\x7d\x8e\x7e\x6d\
\x2e\x65\x96\x5d\x8b\x73\x9a\xda\x72\xd8\xdb\x3d\x4a\x59\xfa\x44\
\x94\x87\xea\xbf\x51\xea\x9f\x5b\xf3\x6e\xe9\xbf\x5d\x9c\xec\x9e\
\x9b\x4e\x3b\xf2\x68\x65\xac\x6e\x2b\x46\x43\x1d\x5d\x55\xbf\xd6\
\xc6\x6e\x23\xdc\xef\x42\xfc\x8f\xd1\xfa\x9e\x9f\xf2\x3d\x8a\xf7\
\xd4\xd7\x75\xa7\xff\x00\x8b\xea\x29\xe8\x3d\x4b\x1b\xa7\x67\x8c\
\xcb\x1c\xe7\xe4\x96\xed\x35\x7b\xb7\xd7\xb6\xca\xb2\x7d\xdb\xdd\
\x5b\xff\x00\x9a\x59\x7d\x57\xeb\xf7\x48\xfa\xc3\xd5\xae\xa7\xad\
\x51\x95\x7f\xd5\xa2\x1a\xec\x1c\x66\x31\x95\xdc\xcc\xa0\xd6\xd5\
\xea\xd9\x6d\x77\x33\x75\x7f\xa4\xcb\xff\x00\xb5\x16\x7f\x83\xfd\
\x12\xe8\xfa\x07\xf8\xa4\xe8\x98\xfd\x35\xac\xfa\xc5\x53\x32\x33\
\xc3\xdd\xba\xda\x2e\xb4\x30\xb4\xff\x00\x36\xdd\x7e\xcf\xf4\x7f\
\xe2\xd2\x53\x66\xcb\xaa\xbb\xfc\x6e\x62\x3a\xab\x1b\x63\x7f\x65\
\x11\x2c\x70\x70\xfa\x77\x18\xf6\xaa\x4f\xa3\xfc\x68\x6e\x71\x6f\
\xd6\x8e\x96\x1a\x09\x89\xf4\xb4\x1e\x7f\xa8\xa1\xf4\x3f\xab\xfd\
\x37\xfc\x5d\xf4\xb7\x7d\x60\xeb\xac\xfb\x56\x7d\x77\x3a\x96\x5b\
\x80\xf7\x58\x3d\x2b\x5a\xc6\xb5\x8e\xab\x23\xec\x95\xee\x6b\xdb\
\x6a\xc3\xff\x00\x18\x5f\xe2\xf3\x1f\xa5\x63\x9e\xb5\xd1\xfd\x3a\
\x3a\x65\x34\xd5\xeb\x51\x65\x8f\x75\xee\xb6\xcb\x1c\xcd\xec\x6b\
\xdb\x63\x36\x6c\xb2\x9f\xf0\xdf\xe0\xec\x49\x4f\xb1\x62\x8b\x86\
\x35\x22\xf7\x8b\x2e\x0c\x6f\xa9\x63\x7e\x8b\x9d\x03\x7b\xdb\xf4\
\x7d\xae\x72\x2a\xa9\xd2\x04\x74\xac\x20\x34\xfd\x5e\xad\x3f\xb0\
\xd5\x6d\x25\x3f\xff\xd0\xf5\x55\xc4\x75\xff\x00\xab\x9f\x5b\x9d\
\xf5\xb8\xfd\x60\xfa\xbf\x66\x1b\x3f\x55\x6e\x37\xeb\x45\xc4\xf2\
\x5c\xff\x00\x63\x2b\x77\xf2\x7f\x3d\x76\xe9\x24\xa7\x87\xf4\x3f\
\xc6\xf7\xfd\xc8\xe9\x5f\x73\xff\x00\xf4\x92\x0f\x4d\xfa\xaf\xf5\
\xd2\xff\x00\xae\x7d\x3b\xeb\x17\x5f\xb7\x09\xed\xc2\xaa\xca\x5d\
\xf6\x62\xf0\xe2\xd7\x33\x21\xac\xf6\x3a\xb6\xb5\xdf\xa5\xc9\xfd\
\xf5\xdf\x24\x92\x9e\x33\xeb\x6f\xd4\x67\xfd\x65\xfa\xcb\xd3\xb2\
\xf2\x76\x9e\x95\x45\x2f\xaf\x29\xa1\xe5\x97\x12\x7d\x47\xd7\xe9\
\xfb\x1c\xdf\xe7\x1d\x57\xe7\xa8\x7d\x65\xfa\xa3\xd7\x1f\x97\xd0\
\x6f\xfa\xb6\xec\x76\x0e\x83\x53\xaa\xab\xed\x6e\x71\xd0\x36\xba\
\xaa\x90\xca\xdf\xbf\xf4\x75\xae\xd9\x24\x94\xe1\x5d\x5f\xd6\xff\
\x00\xf2\x2f\xa3\x66\x2f\xb0\x37\xf6\xee\xe9\xf7\x69\x56\xff\x00\
\xb1\xfb\x3f\xf0\xcf\xfa\x3f\xf0\x6b\x81\xfa\xcd\xfe\x2a\xfe\xb2\
\xf5\x6f\xac\x19\xfd\x4b\x1a\xcc\x46\xd1\x95\x73\xac\xac\x3e\xc7\
\x87\x6d\x3f\xbc\x1b\x4b\x97\xad\xa4\x92\x9e\x37\xea\x8f\xd4\x8b\
\x7e\xad\x74\x6b\xed\xc6\x2c\x1d\x7f\x23\x19\xf5\xb9\xc5\xe5\xf8\
\xfe\xa8\x36\x3b\x15\xd1\xb1\x8e\xd9\xad\x5e\xaf\xb5\x56\xbb\xea\
\xa7\xd6\x96\xd0\xfe\xad\x8d\x66\x28\xfa\xcf\xd4\x98\xec\x7e\xab\
\x63\xdc\xef\xb3\x1a\x20\xd5\x57\xd9\xeb\x6d\x7e\xdb\xbd\x2a\x71\
\x3f\xf0\x45\xdd\xa4\x92\x9f\x27\xbb\xfc\x5f\x7f\x8c\x0b\xba\x06\
\x27\xd5\xf7\xdd\xd3\xfe\xc3\x83\x71\xc8\xa3\xdc\xfd\xfb\xc9\xb5\
\xde\xe7\xfa\x3e\xe6\xee\xc9\xb5\x74\x3f\xf3\x63\xeb\x4f\xd6\x17\
\x7d\x8b\xeb\xa3\xf1\x2d\xe9\x6c\xfd\x35\x4d\xc1\x73\x99\x60\xbd\
\xbe\xca\xe5\xcf\xaf\xf9\xaf\x4a\xdb\xd7\x6e\x92\x4a\x78\x5f\xab\
\x7f\xe2\xec\xd7\xf5\x4a\xef\xab\xdf\x58\x0b\x48\xb7\x2c\xe5\x03\
\x8a\xf3\xc0\x6d\x4c\x64\xbd\xf5\xb7\xdd\xfa\x37\x7e\x62\x97\xd6\
\x7f\xaa\xdf\x59\xef\xfa\xd5\x85\xd7\xfe\xaf\xbf\x15\x8e\xc2\xc3\
\xfb\x33\x3e\xd4\x5d\x3b\x89\xc8\x6b\xdd\xb1\xb5\xbf\xfc\x16\x4f\
\xef\x2e\xe1\x24\x94\x8f\x1f\xd7\x18\xf5\x0c\x92\xd3\x7e\xc6\xfa\
\xa5\x9f\x47\x7c\x7e\x93\x67\xf2\x77\x22\x24\x92\x4a\x7f\xff\xd9\
\xff\xed\x26\xea\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x33\x2e\
\x30\x00\x38\x42\x49\x4d\x04\x25\x00\x00\x00\x00\x00\x10\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x38\x42\
\x49\x4d\x04\x3a\x00\x00\x00\x00\x00\xd7\x00\x00\x00\x10\x00\x00\
\x00\x01\x00\x00\x00\x00\x00\x0b\x70\x72\x69\x6e\x74\x4f\x75\x74\
\x70\x75\x74\x00\x00\x00\x05\x00\x00\x00\x00\x50\x73\x74\x53\x62\
\x6f\x6f\x6c\x01\x00\x00\x00\x00\x49\x6e\x74\x65\x65\x6e\x75\x6d\
\x00\x00\x00\x00\x49\x6e\x74\x65\x00\x00\x00\x00\x49\x6d\x67\x20\
\x00\x00\x00\x0f\x70\x72\x69\x6e\x74\x53\x69\x78\x74\x65\x65\x6e\
\x42\x69\x74\x62\x6f\x6f\x6c\x00\x00\x00\x00\x0b\x70\x72\x69\x6e\
\x74\x65\x72\x4e\x61\x6d\x65\x54\x45\x58\x54\x00\x00\x00\x01\x00\
\x00\x00\x00\x00\x0f\x70\x72\x69\x6e\x74\x50\x72\x6f\x6f\x66\x53\
\x65\x74\x75\x70\x4f\x62\x6a\x63\x00\x00\x00\x05\x68\x21\x68\x37\
\x8b\xbe\x7f\x6e\x00\x00\x00\x00\x00\x0a\x70\x72\x6f\x6f\x66\x53\
\x65\x74\x75\x70\x00\x00\x00\x01\x00\x00\x00\x00\x42\x6c\x74\x6e\
\x65\x6e\x75\x6d\x00\x00\x00\x0c\x62\x75\x69\x6c\x74\x69\x6e\x50\
\x72\x6f\x6f\x66\x00\x00\x00\x09\x70\x72\x6f\x6f\x66\x43\x4d\x59\
\x4b\x00\x38\x42\x49\x4d\x04\x3b\x00\x00\x00\x00\x02\x2d\x00\x00\
\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\x00\x12\x70\x72\x69\x6e\
\x74\x4f\x75\x74\x70\x75\x74\x4f\x70\x74\x69\x6f\x6e\x73\x00\x00\
\x00\x17\x00\x00\x00\x00\x43\x70\x74\x6e\x62\x6f\x6f\x6c\x00\x00\
\x00\x00\x00\x43\x6c\x62\x72\x62\x6f\x6f\x6c\x00\x00\x00\x00\x00\
\x52\x67\x73\x4d\x62\x6f\x6f\x6c\x00\x00\x00\x00\x00\x43\x72\x6e\
\x43\x62\x6f\x6f\x6c\x00\x00\x00\x00\x00\x43\x6e\x74\x43\x62\x6f\
\x6f\x6c\x00\x00\x00\x00\x00\x4c\x62\x6c\x73\x62\x6f\x6f\x6c\x00\
\x00\x00\x00\x00\x4e\x67\x74\x76\x62\x6f\x6f\x6c\x00\x00\x00\x00\
\x00\x45\x6d\x6c\x44\x62\x6f\x6f\x6c\x00\x00\x00\x00\x00\x49\x6e\
\x74\x72\x62\x6f\x6f\x6c\x00\x00\x00\x00\x00\x42\x63\x6b\x67\x4f\
\x62\x6a\x63\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x52\x47\x42\
\x43\x00\x00\x00\x03\x00\x00\x00\x00\x52\x64\x20\x20\x64\x6f\x75\
\x62\x40\x6f\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x47\x72\x6e\
\x20\x64\x6f\x75\x62\x40\x6f\xe0\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x42\x6c\x20\x20\x64\x6f\x75\x62\x40\x6f\xe0\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x42\x72\x64\x54\x55\x6e\x74\x46\x23\x52\x6c\
\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x42\x6c\x64\
\x20\x55\x6e\x74\x46\x23\x52\x6c\x74\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x52\x73\x6c\x74\x55\x6e\x74\x46\x23\x50\x78\
\x6c\x40\x52\x00\x00\x00\x00\x00\x00\x00\x00\x00\x0a\x76\x65\x63\
\x74\x6f\x72\x44\x61\x74\x61\x62\x6f\x6f\x6c\x01\x00\x00\x00\x00\
\x50\x67\x50\x73\x65\x6e\x75\x6d\x00\x00\x00\x00\x50\x67\x50\x73\
\x00\x00\x00\x00\x50\x67\x50\x43\x00\x00\x00\x00\x4c\x65\x66\x74\
\x55\x6e\x74\x46\x23\x52\x6c\x74\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x54\x6f\x70\x20\x55\x6e\x74\x46\x23\x52\x6c\x74\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x53\x63\x6c\x20\
\x55\x6e\x74\x46\x23\x50\x72\x63\x40\x59\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x10\x63\x72\x6f\x70\x57\x68\x65\x6e\x50\x72\x69\x6e\
\x74\x69\x6e\x67\x62\x6f\x6f\x6c\x00\x00\x00\x00\x0e\x63\x72\x6f\
\x70\x52\x65\x63\x74\x42\x6f\x74\x74\x6f\x6d\x6c\x6f\x6e\x67\x00\
\x00\x00\x00\x00\x00\x00\x0c\x63\x72\x6f\x70\x52\x65\x63\x74\x4c\
\x65\x66\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x0d\x63\
\x72\x6f\x70\x52\x65\x63\x74\x52\x69\x67\x68\x74\x6c\x6f\x6e\x67\
\x00\x00\x00\x00\x00\x00\x00\x0b\x63\x72\x6f\x70\x52\x65\x63\x74\
\x54\x6f\x70\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x38\x42\x49\x4d\
\x03\xed\x00\x00\x00\x00\x00\x10\x00\x48\x00\x00\x00\x01\x00\x01\
\x00\x48\x00\x00\x00\x01\x00\x01\x38\x42\x49\x4d\x04\x26\x00\x00\
\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x3f\x80\
\x00\x00\x38\x42\x49\x4d\x04\x0d\x00\x00\x00\x00\x00\x04\x00\x00\
\x00\x1e\x38\x42\x49\x4d\x04\x19\x00\x00\x00\x00\x00\x04\x00\x00\
\x00\x1e\x38\x42\x49\x4d\x03\xf3\x00\x00\x00\x00\x00\x09\x00\x00\
\x00\x00\x00\x00\x00\x00\x01\x00\x38\x42\x49\x4d\x27\x10\x00\x00\
\x00\x00\x00\x0a\x00\x01\x00\x00\x00\x00\x00\x00\x00\x01\x38\x42\
\x49\x4d\x03\xf5\x00\x00\x00\x00\x00\x48\x00\x2f\x66\x66\x00\x01\
\x00\x6c\x66\x66\x00\x06\x00\x00\x00\x00\x00\x01\x00\x2f\x66\x66\
\x00\x01\x00\xa1\x99\x9a\x00\x06\x00\x00\x00\x00\x00\x01\x00\x32\
\x00\x00\x00\x01\x00\x5a\x00\x00\x00\x06\x00\x00\x00\x00\x00\x01\
\x00\x35\x00\x00\x00\x01\x00\x2d\x00\x00\x00\x06\x00\x00\x00\x00\
\x00\x01\x38\x42\x49\x4d\x03\xf8\x00\x00\x00\x00\x00\x70\x00\x00\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\
\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x38\x42\
\x49\x4d\x04\x00\x00\x00\x00\x00\x00\x02\x00\x00\x38\x42\x49\x4d\
\x04\x02\x00\x00\x00\x00\x00\x04\x00\x00\x00\x00\x38\x42\x49\x4d\
\x04\x30\x00\x00\x00\x00\x00\x02\x01\x01\x38\x42\x49\x4d\x04\x2d\
\x00\x00\x00\x00\x00\x06\x00\x01\x00\x00\x00\x03\x38\x42\x49\x4d\
\x04\x08\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x02\x40\
\x00\x00\x02\x40\x00\x00\x00\x00\x38\x42\x49\x4d\x04\x1e\x00\x00\
\x00\x00\x00\x04\x00\x00\x00\x00\x38\x42\x49\x4d\x04\x1a\x00\x00\
\x00\x00\x03\x3b\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x01\xfc\x00\x00\x01\x86\x00\x00\x00\x03\x65\x2f\x4e\xd8\
\x5b\x9d\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x01\x86\x00\x00\x01\xfc\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\
\x00\x00\x01\x00\x00\x00\x00\x00\x00\x6e\x75\x6c\x6c\x00\x00\x00\
\x02\x00\x00\x00\x06\x62\x6f\x75\x6e\x64\x73\x4f\x62\x6a\x63\x00\
\x00\x00\x01\x00\x00\x00\x00\x00\x00\x52\x63\x74\x31\x00\x00\x00\
\x04\x00\x00\x00\x00\x54\x6f\x70\x20\x6c\x6f\x6e\x67\x00\x00\x00\
\x00\x00\x00\x00\x00\x4c\x65\x66\x74\x6c\x6f\x6e\x67\x00\x00\x00\
\x00\x00\x00\x00\x00\x42\x74\x6f\x6d\x6c\x6f\x6e\x67\x00\x00\x01\
\xfc\x00\x00\x00\x00\x52\x67\x68\x74\x6c\x6f\x6e\x67\x00\x00\x01\
\x86\x00\x00\x00\x06\x73\x6c\x69\x63\x65\x73\x56\x6c\x4c\x73\x00\
\x00\x00\x01\x4f\x62\x6a\x63\x00\x00\x00\x01\x00\x00\x00\x00\x00\
\x05\x73\x6c\x69\x63\x65\x00\x00\x00\x12\x00\x00\x00\x07\x73\x6c\
\x69\x63\x65\x49\x44\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\
\x07\x67\x72\x6f\x75\x70\x49\x44\x6c\x6f\x6e\x67\x00\x00\x00\x00\
\x00\x00\x00\x06\x6f\x72\x69\x67\x69\x6e\x65\x6e\x75\x6d\x00\x00\
\x00\x0c\x45\x53\x6c\x69\x63\x65\x4f\x72\x69\x67\x69\x6e\x00\x00\
\x00\x0d\x61\x75\x74\x6f\x47\x65\x6e\x65\x72\x61\x74\x65\x64\x00\
\x00\x00\x00\x54\x79\x70\x65\x65\x6e\x75\x6d\x00\x00\x00\x0a\x45\
\x53\x6c\x69\x63\x65\x54\x79\x70\x65\x00\x00\x00\x00\x49\x6d\x67\
\x20\x00\x00\x00\x06\x62\x6f\x75\x6e\x64\x73\x4f\x62\x6a\x63\x00\
\x00\x00\x01\x00\x00\x00\x00\x00\x00\x52\x63\x74\x31\x00\x00\x00\
\x04\x00\x00\x00\x00\x54\x6f\x70\x20\x6c\x6f\x6e\x67\x00\x00\x00\
\x00\x00\x00\x00\x00\x4c\x65\x66\x74\x6c\x6f\x6e\x67\x00\x00\x00\
\x00\x00\x00\x00\x00\x42\x74\x6f\x6d\x6c\x6f\x6e\x67\x00\x00\x01\
\xfc\x00\x00\x00\x00\x52\x67\x68\x74\x6c\x6f\x6e\x67\x00\x00\x01\
\x86\x00\x00\x00\x03\x75\x72\x6c\x54\x45\x58\x54\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x6e\x75\x6c\x6c\x54\x45\x58\x54\x00\x00\
\x00\x01\x00\x00\x00\x00\x00\x00\x4d\x73\x67\x65\x54\x45\x58\x54\
\x00\x00\x00\x01\x00\x00\x00\x00\x00\x06\x61\x6c\x74\x54\x61\x67\
\x54\x45\x58\x54\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0e\x63\x65\
\x6c\x6c\x54\x65\x78\x74\x49\x73\x48\x54\x4d\x4c\x62\x6f\x6f\x6c\
\x01\x00\x00\x00\x08\x63\x65\x6c\x6c\x54\x65\x78\x74\x54\x45\x58\
\x54\x00\x00\x00\x01\x00\x00\x00\x00\x00\x09\x68\x6f\x72\x7a\x41\
\x6c\x69\x67\x6e\x65\x6e\x75\x6d\x00\x00\x00\x0f\x45\x53\x6c\x69\
\x63\x65\x48\x6f\x72\x7a\x41\x6c\x69\x67\x6e\x00\x00\x00\x07\x64\
\x65\x66\x61\x75\x6c\x74\x00\x00\x00\x09\x76\x65\x72\x74\x41\x6c\
\x69\x67\x6e\x65\x6e\x75\x6d\x00\x00\x00\x0f\x45\x53\x6c\x69\x63\
\x65\x56\x65\x72\x74\x41\x6c\x69\x67\x6e\x00\x00\x00\x07\x64\x65\
\x66\x61\x75\x6c\x74\x00\x00\x00\x0b\x62\x67\x43\x6f\x6c\x6f\x72\
\x54\x79\x70\x65\x65\x6e\x75\x6d\x00\x00\x00\x11\x45\x53\x6c\x69\
\x63\x65\x42\x47\x43\x6f\x6c\x6f\x72\x54\x79\x70\x65\x00\x00\x00\
\x00\x4e\x6f\x6e\x65\x00\x00\x00\x09\x74\x6f\x70\x4f\x75\x74\x73\
\x65\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x0a\x6c\x65\
\x66\x74\x4f\x75\x74\x73\x65\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\
\x00\x00\x00\x0c\x62\x6f\x74\x74\x6f\x6d\x4f\x75\x74\x73\x65\x74\
\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x0b\x72\x69\x67\x68\
\x74\x4f\x75\x74\x73\x65\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\
\x38\x42\x49\x4d\x04\x28\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x02\
\x3f\xf0\x00\x00\x00\x00\x00\x00\x38\x42\x49\x4d\x04\x14\x00\x00\
\x00\x00\x00\x04\x00\x00\x00\x08\x38\x42\x49\x4d\x04\x0c\x00\x00\
\x00\x00\x1d\xf3\x00\x00\x00\x01\x00\x00\x00\x7b\x00\x00\x00\xa0\
\x00\x00\x01\x74\x00\x00\xe8\x80\x00\x00\x1d\xd7\x00\x18\x00\x01\
\xff\xd8\xff\xed\x00\x0c\x41\x64\x6f\x62\x65\x5f\x43\x4d\x00\x01\
\xff\xee\x00\x0e\x41\x64\x6f\x62\x65\x00\x64\x80\x00\x00\x00\x01\
\xff\xdb\x00\x84\x00\x0c\x08\x08\x08\x09\x08\x0c\x09\x09\x0c\x11\
\x0b\x0a\x0b\x11\x15\x0f\x0c\x0c\x0f\x15\x18\x13\x13\x15\x13\x13\
\x18\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\x10\
\x14\x0e\x0e\x0e\x14\x14\x0e\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\x0c\
\x0c\x11\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x0c\xff\xc0\x00\x11\x08\x00\xa0\x00\x7b\x03\
\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x08\xff\
\xc4\x01\x3f\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\
\x00\x00\x00\x00\x03\x00\x01\x02\x04\x05\x06\x07\x08\x09\x0a\x0b\
\x01\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\
\x00\x01\x00\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x10\x00\x01\
\x04\x01\x03\x02\x04\x02\x05\x07\x06\x08\x05\x03\x0c\x33\x01\x00\
\x02\x11\x03\x04\x21\x12\x31\x05\x41\x51\x61\x13\x22\x71\x81\x32\
\x06\x14\x91\xa1\xb1\x42\x23\x24\x15\x52\xc1\x62\x33\x34\x72\x82\
\xd1\x43\x07\x25\x92\x53\xf0\xe1\xf1\x63\x73\x35\x16\xa2\xb2\x83\
\x26\x44\x93\x54\x64\x45\xc2\xa3\x74\x36\x17\xd2\x55\xe2\x65\xf2\
\xb3\x84\xc3\xd3\x75\xe3\xf3\x46\x27\x94\xa4\x85\xb4\x95\xc4\xd4\
\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5\x56\x66\x76\x86\x96\xa6\xb6\xc6\
\xd6\xe6\xf6\x37\x47\x57\x67\x77\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\
\x11\x00\x02\x02\x01\x02\x04\x04\x03\x04\x05\x06\x07\x07\x06\x05\
\x35\x01\x00\x02\x11\x03\x21\x31\x12\x04\x41\x51\x61\x71\x22\x13\
\x05\x32\x81\x91\x14\xa1\xb1\x42\x23\xc1\x52\xd1\xf0\x33\x24\x62\
\xe1\x72\x82\x92\x43\x53\x15\x63\x73\x34\xf1\x25\x06\x16\xa2\xb2\
\x83\x07\x26\x35\xc2\xd2\x44\x93\x54\xa3\x17\x64\x45\x55\x36\x74\
\x65\xe2\xf2\xb3\x84\xc3\xd3\x75\xe3\xf3\x46\x94\xa4\x85\xb4\x95\
\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5\x56\x66\x76\x86\x96\xa6\
\xb6\xc6\xd6\xe6\xf6\x27\x37\x47\x57\x67\x77\x87\x97\xa7\xb7\xc7\
\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xf5\x54\
\x92\x49\x25\x29\x24\x92\x49\x4a\x49\x24\x92\x52\x92\x42\xc8\xc9\
\xa3\x16\x97\x5f\x91\x63\x6a\xa6\xb1\x2f\xb1\xe6\x00\xed\xc9\x58\
\x56\xfd\x7a\xe8\xac\x7e\xd6\x36\xfb\x9b\xfb\xec\xae\x07\xfe\x0c\
\xea\x9f\xff\x00\x41\x36\x53\x8c\x7e\x62\x03\x1e\x4c\xd8\xf1\xfc\
\xf2\x11\xbe\xef\x44\x92\xcf\xe9\x9d\x77\xa5\xf5\x49\x6e\x25\xd3\
\x6b\x46\xe7\x52\xf0\x58\xf0\x3f\x7b\x63\xfe\x93\x7f\x96\xcf\x62\
\xd0\x44\x10\x45\x83\x63\xc1\x7c\x65\x19\x0b\x89\x12\x1d\xc2\x92\
\x49\x24\x52\xa4\x92\x49\x25\x29\x24\x92\x49\x4f\xff\xd0\xf5\x54\
\x92\x49\x25\x29\x24\x92\x49\x4a\x49\x24\x92\x53\xc0\xfd\x71\xcf\
\xb7\x2b\xac\x9c\x27\xd9\xe9\xe3\x62\x16\x34\x4c\xed\x0f\x7b\x5a\
\xfb\x32\x6c\x0d\x1b\xbf\x46\xcb\x76\xff\x00\x21\x9e\xa7\xa7\xfc\
\xe2\xaa\xcf\xaa\xfd\x71\xf9\x36\x50\xea\x05\x42\x93\xef\xc8\xb1\
\xc1\xb4\xc4\x6e\xde\xcb\x3e\x95\xad\xfe\xa5\x7e\xcf\xf0\xbe\x92\
\xd3\xfa\xeb\xd1\x6d\x66\x4b\xba\xb5\x43\x7d\x16\x86\xb7\x24\x7e\
\xeb\x84\x54\xcb\x3f\xe2\xec\x66\xca\xff\x00\xf3\xb5\x83\x95\xd5\
\xfa\x86\x6e\x2d\x58\x97\xde\x5f\x8d\x43\x43\x1b\x50\xd1\xae\xdb\
\xf4\x5d\x7c\x7f\x3c\xff\x00\x6f\xf8\x45\x43\x25\x09\xcf\x8c\x1b\
\xbb\x8d\x76\x71\x79\x81\x11\x9b\x27\xbc\x24\x4d\xf1\x42\x8f\xcd\
\x0f\xd1\x1f\xdd\x6d\x1b\x3a\x57\x4a\xb1\xaf\xc3\x79\xea\x5d\x42\
\xa3\x2c\xc9\x24\xd7\x8d\x5b\x81\xe6\xa6\x56\xef\x53\x29\xdf\xf5\
\xdf\xb3\xbf\xfe\x82\xf4\x0e\x9d\x97\xf6\xde\x9f\x8d\x96\x46\xd3\
\x7d\x4c\xb0\xb4\x70\x0b\x9a\x1c\xe6\xaf\x33\xe9\xbd\x37\x2f\xaa\
\x64\x0c\x6c\x36\x97\x19\x02\xcb\x62\x59\x58\x3f\x9f\x63\xbf\xea\
\x59\xf4\xec\x5e\xa1\x8b\x8f\x5e\x2e\x35\x58\xd5\x4f\xa7\x43\x1b\
\x5b\x27\x98\x68\xd8\xd9\xfb\x94\xbc\xb5\x9e\x23\x55\x1f\xda\xda\
\xf8\x79\x99\xe3\x3c\x22\x38\xff\x00\x44\x0d\xb8\xbc\xff\x00\x49\
\x2a\x49\x24\xad\x3a\x0a\x49\x24\x92\x52\x92\x49\x24\x94\xff\x00\
\xff\xd1\xf5\x54\x92\x49\x25\x29\x24\x92\x49\x4a\x49\x24\x92\x53\
\x5f\x3b\x07\x1b\x3f\x1c\xe3\x65\x34\xbe\x97\x16\xb9\xcc\x92\x03\
\xb6\x9d\xed\x0e\xdb\x1e\xdd\xcd\x41\x7f\x43\xe8\xcf\x20\xbf\x03\
\x18\x91\x00\x4d\x4c\xe0\x71\xf9\xaa\xf2\x64\x0c\x62\x77\x00\xad\
\x30\x89\x36\x62\x09\xf1\x0c\x69\xa2\x9a\x2b\x15\x51\x5b\x6a\xad\
\xbc\x31\x80\x35\xa3\xe0\xd6\xa9\xa4\x92\x2b\x80\xad\x94\x92\x49\
\x24\xa5\x24\x92\x49\x29\x49\x24\x92\x4a\x7f\xff\xd2\xf5\x55\xe6\
\x9f\x58\x3e\xaf\x74\xef\xac\x3f\xe3\x3c\xf4\xfe\xa2\x1f\xe8\x7e\
\xce\x6d\x9f\xa3\x76\xd7\x6e\x6b\x88\x6f\xba\x1d\xfb\xcb\xd2\xd7\
\x0f\x07\xff\x00\x1d\xef\x87\x4b\xd7\xfc\xf4\x94\xf0\xa4\xff\x00\
\x8a\x10\x0e\x9d\x54\x91\xdb\xd8\xb6\xfa\x7f\xd5\xfe\x95\xd0\x3f\
\xc6\x87\x41\xc7\xe9\x5e\xa7\xd9\xf2\x30\xec\xc9\x3e\xab\xb7\x3a\
\x5f\x56\x6b\x7c\x1b\xf9\x95\xb1\x73\xc7\xfc\x52\xfd\x75\xd4\xfd\
\x9a\xaf\x87\xac\xcf\xef\x5d\x9e\x75\x6f\xab\xfc\x6c\x7d\x5a\xad\
\xe2\x1e\xce\x9a\x5a\xe8\xd4\x48\xaf\xa8\x07\x24\xa6\x1f\x52\xfa\
\xc6\x17\x43\xe9\xdf\x5a\x7a\xae\x60\x71\xc6\xc7\xea\x8f\xdf\xe9\
\x80\xe7\x7b\xde\xda\x59\xb5\xb2\xdf\xcf\xb5\x4b\xab\x7d\x61\xe8\
\x5f\x58\x30\x2f\xfa\xd9\xd2\xbd\x61\x9f\xf5\x65\xa1\xd8\xe2\xf6\
\x86\xd4\x5d\x79\x03\xdf\x58\x2e\x75\x9f\x41\xdf\xe1\x2b\x4b\xaa\
\x75\x7c\x2c\xaf\xad\x78\xbf\x5b\x6a\x2e\xfd\x8f\xf5\x77\xd5\xc3\
\xea\x56\x16\x90\xf6\x5a\xff\x00\x57\x1a\xb0\xca\x3f\x9c\xb5\xbe\
\xae\x45\x5e\xf6\x2e\x5b\xea\xff\x00\xd7\x1e\xb5\x4f\xd6\x9e\xa7\
\x8f\xf5\x6a\xac\x6b\xff\x00\x6e\xe7\x59\x75\x27\x2d\xaf\x1a\x6f\
\xba\xda\xbe\x8d\xb4\xfa\x7f\xa3\xb3\xf3\xd2\x53\x91\xd2\x3a\x55\
\xff\x00\x59\x73\xba\x97\xd6\x0c\xf0\xcf\xb0\xe2\x5a\x33\x3a\xb3\
\x2b\x25\x8f\x2c\xb9\xd6\xdd\x6f\xd9\x1a\x43\xfd\xdf\xa2\xb7\xe9\
\xd8\xba\xe7\x8c\x5f\x4b\xa2\x9b\xc3\xbd\x2d\xe3\xfe\x64\xed\xe4\
\x5a\x5d\x5e\xdf\xdb\x7f\xc8\xfb\x4f\xd8\x7f\x99\xfc\xcf\x5d\x1e\
\x8f\xf1\xaf\xd4\x31\x19\xd6\xb1\x3a\xeb\x71\xe8\xea\xb8\x53\x56\
\x0d\x74\x57\x63\xab\x7d\xcc\x36\xd7\x73\x6e\x77\xaa\xff\x00\xd1\
\xfa\x8c\xab\xf3\xea\x5c\x6f\x59\xeb\x7d\x2d\xf9\xfd\x37\xeb\x2f\
\x4f\xb1\xd6\x75\xc7\x5f\xf6\xce\xa5\x8f\x63\x48\xc7\x65\xd5\xba\
\xab\x29\xae\x86\xfb\x6c\xf4\x5c\xe6\x3f\x77\xeb\x36\xbf\xfe\x11\
\x25\x3e\xb7\xd1\xfe\xb6\x96\xd3\x9f\x85\xd6\xff\x00\xe5\x5e\x87\
\x43\xb2\x3a\x9b\xa8\x67\xe8\x4b\x40\x75\xcd\xfb\x37\xbb\x73\xdd\
\xf6\x7d\x9f\x49\xac\xf7\xae\x1f\xa9\x7d\x55\xeb\x7f\x5c\x3a\xd1\
\xfa\xe3\xd0\x7d\x11\x83\x96\xfa\xec\xc6\x6e\x4b\xb6\xbe\x71\xda\
\xcc\x57\xfa\xb5\x35\xb6\x37\xf9\xfc\x57\xff\x00\x84\xfe\x6d\x6e\
\x7d\x44\xeb\xbd\x0f\x2e\xce\xab\xf5\x92\xeb\x6d\xfd\xae\xfc\x6f\
\xb4\x75\x7a\x58\xc2\x31\xeb\x65\x3b\x83\x3e\xca\xcd\xae\xb5\xce\
\xf4\x69\x67\xf8\x7b\x96\x2f\xd7\x7c\x7f\xab\xd9\x2d\xe9\xdf\x5f\
\x30\xad\xc8\x70\xea\x39\xd4\xb6\xd0\xf8\x0c\x15\xe3\x87\x51\x67\
\xa7\x46\xc6\xdb\xbf\xf5\x2f\xf4\xc9\x29\xe9\x1c\x71\x7e\xb5\x13\
\xf5\x47\xeb\x4e\xf3\xd6\x7a\x77\xf9\x43\x27\xec\x63\x6d\x30\x3d\
\xb4\x57\x55\x8f\xde\xfb\x3f\x57\xce\xab\x7f\xe8\xfe\x9f\xe7\xac\
\x8f\xf1\x8f\xf5\x83\x03\xeb\x17\xd4\x2c\x6e\xa5\x82\xdb\x1b\x41\
\xea\x0d\x60\x16\xb4\x35\xc1\xcd\xaf\x20\x3b\x46\xb9\xed\xef\xfb\
\xcb\x56\xff\x00\xa9\x5f\x54\xfe\xbc\xbd\xff\x00\x5a\x2b\xc8\xcc\
\x23\x37\x46\x86\x39\x95\xb4\xfa\x1f\xaa\x7b\x59\x75\x16\x58\xdd\
\xde\x82\xe5\xfe\xb2\x74\x3e\xa3\xd0\xbf\xc5\x7e\x2e\x07\x52\xac\
\x55\x90\x3a\x9e\xf2\xd6\xb8\x3f\xda\xe6\x5f\xb7\xdc\xc9\x6a\x4a\
\x4d\xf5\x8f\xea\xef\xf8\xb1\xfa\xb9\xd4\x07\x4f\xea\x23\xa8\xfa\
\xce\xad\xb7\x03\x53\x9a\xe6\xed\x71\x7b\x07\xb8\xed\xf7\x7e\x8d\
\x51\xea\x9f\x57\x7e\xa5\x64\x7d\x4b\xcf\xfa\xc3\xd0\x06\x5e\xfc\
\x4b\x99\x8e\xdf\xb4\xb8\x01\xb8\xba\x8f\x53\xf4\x6d\x07\x73\x7d\
\x2c\x9f\xde\x5b\xdf\xe3\x23\xea\x2f\xd6\x2f\xac\x3f\x58\x2b\xcd\
\xe9\x94\xd6\xfc\x76\x63\x32\xa2\xe7\xd8\xd6\x1d\xcd\x7d\xcf\x70\
\xda\xef\x77\xe7\xb5\x53\xc9\xfa\xb9\xd5\x7e\xaf\x7f\x8a\x9e\xaf\
\x85\xd4\xeb\x6d\x77\xbf\x32\xbb\x9a\x18\xe0\xf1\xb1\xce\xc2\xa9\
\xae\xdc\xcf\xe5\xd6\xe4\x94\xfa\x7f\x48\x00\x74\xac\x20\x38\xfb\
\x3d\x5f\xf5\x0d\x56\xd5\x4e\x93\xff\x00\x25\x61\x7f\xe1\x7a\xbf\
\xea\x1a\xad\xa4\xa7\xff\xd3\xf5\x55\xcb\x7d\x61\xff\x00\x17\x9d\
\x1f\xeb\x07\x53\xfd\xa9\x95\x93\x99\x46\x47\xa6\xda\xa3\x1e\xc6\
\x31\xbb\x5b\x3f\xbf\x4d\xaf\xfc\xef\xdf\x5d\x4a\xe7\x3a\xcb\x3a\
\x3f\x43\xea\xdf\xf3\xaf\xaa\x75\x0b\xf1\xea\xf4\xc6\x27\xa3\x0e\
\x7d\x32\xe9\x73\x5d\xe9\x53\x5d\x96\x6f\xf6\xa4\xa7\xce\xbe\xc9\
\xfe\x29\xff\x00\xf9\xe0\xea\xbf\x08\x77\xfe\xf0\x2e\x9f\xa3\x7d\
\x58\xfa\x99\xd0\xfe\xb7\x74\xd6\xd3\xd4\x73\xae\xeb\x16\xd2\xfb\
\xf0\xa8\xc8\x21\xec\x75\x4f\xaf\x21\x8e\x73\xde\xdc\x6a\xf6\x7e\
\x8d\xb9\x0f\xd9\xeb\x57\xef\x5c\x07\x5f\xea\x9d\x07\x03\xa6\xd9\
\xf5\x7b\xea\xeb\xd9\xd4\xba\x7e\x51\x6e\x4d\x99\xf7\xd4\xe6\x64\
\x57\x70\x76\xd7\xd1\x53\x9f\x5e\x3f\xe8\x7d\x3a\x29\xff\x00\x05\
\xfe\x1a\xdf\x7a\xee\xe8\xea\x1f\xe3\x3c\x8c\x7c\x86\x7d\x59\xc0\
\x7b\xea\xad\xac\xa6\xf7\x59\x51\xb0\x32\x3f\x36\xc3\x99\xbd\xbb\
\x9a\xe4\x94\xe3\xfd\x5a\xe9\x9d\x5f\xae\x65\x75\xbe\x88\x68\x6f\
\xfc\xdd\xcd\xea\x57\x7e\xd1\xcc\xad\xcd\x6e\x45\x6f\xad\xdf\x68\
\xa1\xb4\x7a\x8f\x73\x76\x3e\xda\xa8\x6b\xff\x00\x54\xbb\xf9\xcb\
\x3f\xeb\x75\xb0\x7a\xb5\xd7\xff\x00\x8c\x2e\x91\xd1\x1d\x5d\x4c\
\xc6\xfa\xbf\x93\x77\x4f\xc4\xb1\xa0\x8b\x5f\x55\x5b\xb1\xeb\x7e\
\x53\xf7\x6c\xb2\xed\xb8\xed\xfe\x6a\xba\x59\xbf\xd4\xfd\x1a\xbf\
\xd4\x8e\x2b\xef\x0f\xfa\xef\x93\x67\xd5\x5c\xe7\x7b\xa8\xc6\xe9\
\x72\x59\x75\x64\x92\xfc\x9b\xce\x23\x73\xdb\xeb\xfa\xdb\xd9\xef\
\x7b\x10\x3e\xa9\x7e\xd0\xfa\xbd\xf5\xa3\x1b\x15\xd8\xb5\x64\xf4\
\xef\xac\x19\x06\xfe\x9f\xd4\x72\x62\xcc\x87\xe3\xb5\xb6\x3a\x9c\
\x9a\xf6\x3f\xd4\xa2\xdb\xea\xbe\xab\x2c\xfb\x45\x35\xd9\xef\xfe\
\x6d\x25\x3b\xfd\x7f\xea\xd1\xe8\xb6\xe7\x64\xe1\xb0\xdb\xd2\x3a\
\xf3\xed\xb7\xeb\x2e\x55\xee\x61\x7e\x2d\x32\xeb\x3d\x5e\x9c\xc6\
\xfa\x76\x6f\xfd\x6b\x2b\xfc\x06\x7f\xf3\x54\x7f\xd7\x38\x3c\xaf\
\xac\xf8\x2e\xeb\xbd\x13\x0a\xa7\x30\xf4\x1e\x81\x99\x59\xc6\xcb\
\xf4\xde\x2d\x7d\x1e\xa5\x2f\xb6\xdc\xa6\xc7\xe9\x1f\xb6\x9f\xf0\
\x78\xb5\x7f\xc5\xae\xed\xbd\x6b\xea\xe7\x4d\xcf\xeb\xb8\x5d\x3b\
\xa8\xbf\xaa\x75\xce\xa7\x73\xeb\xaf\xa6\x66\x32\xc7\x50\x32\x5a\
\xeb\x9a\x30\xd8\xe7\x55\x55\x0d\xa1\xd6\xdd\xe9\x7b\xf2\x3d\x2f\
\x4d\x95\xfe\x95\x73\x1e\x87\xd6\x0e\x9b\xd7\x2c\xc4\xeb\x9d\x23\
\x17\x12\xaf\xae\x17\xb3\x10\xb9\xa6\xbb\x1d\x4b\x5c\x7e\xcf\x73\
\xf0\x7d\x1b\x6e\xf4\x6c\x63\x73\x3d\x4f\xd2\xff\x00\x85\xf4\xd2\
\x53\xaf\xf5\x8b\x3f\xa2\xf4\xe0\xdf\xac\x1d\x36\xe7\x3f\xa7\xfd\
\x6f\x71\xc3\xea\x36\xd8\xc2\x3d\x3c\x66\x8f\xb3\x5f\x76\x0d\x2d\
\xae\x9b\x6b\xbd\xac\xf5\x5d\xfa\x76\xe4\xef\x7f\xf8\x24\x2f\xab\
\x75\xf4\x7f\xac\x7d\x40\x7d\x52\xc3\xb9\xf7\x7d\x5e\xe8\x5b\x73\
\xfa\x76\x58\x1b\x72\x2c\xb7\x73\x5f\x6b\x32\xbd\x7a\xfd\x27\xd3\
\xeb\xe6\x64\xb3\x63\x70\xe8\x7e\xca\xea\xf7\xff\x00\xa4\xd4\xcf\
\xe9\x1f\x56\xd9\xd2\xc7\x48\xc6\xcb\xb7\x27\x2f\xea\x5b\x2c\xcf\
\xfb\x35\x8c\xf6\xbd\xc0\x1c\xca\xaa\xcb\x73\xa9\x6d\x56\xd2\xf7\
\x6d\x63\xbe\xce\xff\x00\xe6\x96\x07\xd5\x9f\xab\xfd\x6b\xeb\x3f\
\x52\xc9\xfa\xd5\x6e\x3b\xba\x7e\x36\x45\x3e\xa6\x10\xc1\xb1\x95\
\x55\x6d\xf8\xee\xae\x86\x63\x59\x51\x7b\xef\x6d\x36\xd9\x8c\xf7\
\x59\xbf\xd2\xfd\x27\xf8\x54\x94\xe8\xdf\xd7\xfa\x57\x41\xff\x00\
\x1a\x5d\x66\xee\xab\x90\x71\xb0\xec\xc2\x65\x2c\xda\xd7\xbc\x6f\
\x7b\x70\xec\x86\xb2\x96\xd9\xb7\xda\xcb\x5f\xbb\x6a\xad\x6e\x6f\
\xf8\xac\xb7\xea\xed\x7f\x57\x5f\xd6\x73\x4e\x1d\x59\x1f\x6a\x6d\
\x9e\x9b\xfd\x5d\xe4\x3d\x9b\x37\x9c\x2f\x4f\xd2\xfd\x27\xfa\x24\
\xcd\xe9\x7f\xe3\x18\x7d\x64\xc9\xfa\xc7\x91\xf5\x7f\x12\xeb\xb2\
\xa9\x6d\x36\xd3\x6d\x94\xbe\xa6\xb5\xa2\x91\xea\x31\x87\x29\xcf\
\xf5\x36\xe3\x7e\xf2\xa9\xf5\xa3\xa8\x7f\xcf\x3c\xd7\x74\x1f\xa9\
\xf8\x38\xb9\x58\xd5\x35\x99\x7e\xbd\x4c\x18\xd6\xfb\x37\x55\x73\
\x5c\xec\xb3\x8a\xdf\x4f\x76\x45\x7f\x98\x92\x9d\x9e\x89\xfe\x2f\
\xfe\xa6\x75\xfc\x47\x66\xf4\xbe\xad\xd5\x2f\xa1\x96\x1a\x9c\xf3\
\x63\x59\xef\x68\x6b\xdc\x36\xdd\x88\xc7\x7d\x1b\x18\xb0\x5f\x83\
\xfe\x29\x5c\xd2\xcb\x3a\xff\x00\x54\x73\x7b\xb4\x87\x11\xa7\xc7\
\x01\x6c\x7f\x8b\xac\x9e\xbd\x8d\xf5\x06\xfb\x3e\xaf\xe2\xd7\x9b\
\x9f\xfb\x41\xc0\x53\x6b\x83\x5b\xb0\xb2\x8f\x51\xdb\x9d\x6e\x3f\
\xbb\xfe\xb8\xac\xb8\xff\x00\x8c\x52\x08\xff\x00\x9a\x1d\x2a\x4c\
\xf3\xe8\x11\xaf\x8f\xeb\x89\x29\xf4\x0e\x9e\x28\x18\x18\xc3\x1d\
\xc5\xf4\x0a\x99\xe9\x3d\xdc\x96\x6d\x1e\x9b\x9d\xa3\x7d\xce\x6f\
\xf2\x55\x84\x2c\x5f\x57\xec\xd4\xfa\xcc\x15\x5b\xb1\xbe\xa5\x6d\
\xfa\x2d\x74\x0d\xec\x6c\x7e\x6b\x1c\x8a\x92\x9f\xff\xd4\xf5\x55\
\xe4\xff\x00\xe3\x04\xe0\x65\xfd\x73\x77\x4d\xeb\x7d\x56\xfe\x9d\
\xd2\x7e\xc6\xcb\xb6\xb3\x7d\x8c\x37\x02\xf6\xd7\xfa\xb3\x3d\x46\
\xef\xda\xe7\xfb\xfd\x35\xeb\x0b\xcf\xff\x00\xc7\x16\x06\x0f\xfc\
\xdb\xfb\x7f\xd9\xea\xfb\x67\xda\x2a\xaf\xed\x3b\x1b\xea\xec\x8b\
\x3f\x47\xeb\x47\xa9\xb3\xf9\x1b\x92\x53\x97\x5d\x3f\x56\x3e\xa3\
\xf5\xaa\x7e\xae\xf5\x7a\x31\xb3\x70\x32\xa9\x76\x6d\x9d\x47\x32\
\x81\x65\xac\x2f\xdf\x43\x31\x98\xc6\x57\x77\xe8\xb7\x62\x7f\xe0\
\xcf\x4d\xd3\x73\x70\xea\xea\x55\xdf\xf5\x73\xeb\x16\x5f\xd6\x0e\
\xa8\x0b\xbe\xc9\xd1\x6f\x75\xb5\x51\x60\x2d\x73\x6c\x63\x9f\x91\
\xe9\xe3\xb1\xb8\xb8\xc6\xcb\xeb\xdc\xef\xfb\x4e\xb8\x7f\xae\x2d\
\xa5\xbd\x4e\xa1\x4f\x5b\xb3\xeb\x03\x7d\x06\x93\x99\x69\x71\x73\
\x4e\xeb\x3f\x56\xfd\x2b\xed\x76\xd6\x7f\x3b\xf4\xbf\xc3\x2f\x41\
\xc1\xc1\xea\x9d\x57\xd0\xe9\xf4\xfd\x58\x67\xd5\x97\xdc\xc6\xc7\
\x5f\xc6\x0c\x17\x53\xb5\xbe\xab\x9d\x5b\xa8\xaf\x1a\xe6\xfd\xb3\
\x67\xd9\x5f\xfa\xc7\xd0\xc9\xf7\xfa\x89\x29\xbd\xd3\xc3\x7f\xc6\
\x2f\x48\xea\x78\xdd\x63\x0a\x9e\x9f\x9d\x89\x70\xc4\x6e\x45\x6d\
\x6d\xb6\xd7\xb1\xcc\xba\xd6\x32\xdb\x3e\x8e\xeb\x19\xe9\xbf\xd3\
\x7a\xc2\xa7\xeb\xae\x76\x3f\x5a\xc7\xfa\xb3\x83\xd1\x71\x7a\x96\
\x6f\x46\xb1\xdd\x3b\xa7\xe4\x5a\x40\xb8\x8c\x79\xc6\xf5\x1b\x6d\
\x9e\xdc\x77\x5b\x5d\x1b\xec\xdb\x62\xa3\xd1\xbe\xa6\xfd\x7b\x67\
\x5e\xb3\x01\xb9\x5d\x47\xa6\xf4\xfb\xef\xb8\xdb\xd4\x2b\x7b\x9a\
\x1e\x5a\x2c\x35\xe4\xdd\x55\x77\xb3\x7b\xf2\x1c\xc6\x7b\x9d\x67\
\xf8\x45\xd2\x62\x74\x26\xd3\xd5\x2a\xeb\x5d\x56\x96\xf4\x7a\x7e\
\xac\xbc\xb6\xde\xa0\xfa\xc1\x7f\x53\x99\xa5\xdd\x47\x22\xd6\xec\
\xb5\x96\x5a\xe6\x36\xff\x00\xd2\x7d\xad\xfb\xf2\xbf\x9c\x49\x4f\
\x23\x89\x9f\xf5\x58\x75\xc6\xfd\x67\xb8\xf5\x27\x64\x33\x28\x66\
\x64\xb6\x9a\x2a\x76\x38\xb6\xc7\xba\xf3\x4d\x77\xd9\x7b\x2c\xf4\
\x5d\x67\xa8\xda\x5f\x6b\x19\x65\x95\xb1\x6a\x64\xfd\x70\xfa\xbd\
\x91\xfb\x62\xf1\xfb\x43\x2f\x2f\x35\xaf\x77\x4c\xfb\x4d\x55\xb9\
\xb8\x37\x96\x58\xda\xee\xc2\xbb\xed\x17\x59\x89\xfa\x47\x54\xef\
\x57\x1f\xd3\x7f\xe8\x2a\xff\x00\x46\xb3\x3e\xa1\x9c\xa6\xe4\x64\
\xe3\xe3\x06\x16\x65\x52\x28\xb9\xd7\x02\x6b\x69\x07\xd6\x37\x39\
\x9f\x46\xcf\xb3\xe3\xb7\x22\xdf\x72\xd1\x37\x54\xd2\xef\xb2\x07\
\x57\x49\x71\x35\xb6\x21\xc5\xbf\xe9\x6c\xd9\xb5\xbe\xa5\x9f\xce\
\x59\xb5\x20\x09\xd7\x65\xd4\x07\x8b\x83\xd0\x3a\xee\x67\x4f\xb3\
\xa8\xfd\xbd\xff\x00\x6b\x1d\x6a\x9f\xb3\x65\xe4\x3a\xc2\xfc\x81\
\x5b\x81\x65\x96\xd3\xea\x7f\x3f\x7b\x6a\x77\xe8\xd9\x6b\xd7\x4d\
\x89\xd6\xfe\xa7\x59\xf5\x53\x07\xa2\xd3\xd7\xf3\xba\x31\xc2\xb6\
\xc7\xef\xf4\xde\xcb\xde\x1e\xeb\x6c\xda\xff\x00\xb1\xfa\xd5\x7a\
\x7b\xb2\x3d\xbf\xa5\xfc\xc5\x53\xa8\x66\xd3\x57\xd5\xdc\xba\xb1\
\xaa\x6d\x79\xd7\x3d\xa2\xcb\xda\xd1\x27\x1d\xc6\x2f\x6e\xef\xcd\
\xb3\x77\xb3\x73\x3f\xc1\x3d\x66\x7d\x43\xbb\xa1\xd1\xd5\xb2\x8f\
\x58\xa7\x1b\x24\x3b\x0c\x8c\x3c\x7c\xa6\x35\xed\x7d\xe6\xc6\x7a\
\x35\x57\xea\x32\xdd\xb6\x59\xf4\x37\x25\x44\x1a\x2a\x20\x55\x84\
\x9d\x7f\xa8\xe1\xe2\x62\x55\x67\x42\xfa\xdb\xd4\x3a\xa6\x53\xee\
\x6b\x1f\x8e\xf7\xdf\x58\xf4\xcb\x5f\xbd\xfb\x9f\xe9\xfe\x78\xae\
\xbf\xfa\xe2\xde\xfa\xe2\x33\xba\x6f\xd4\xfa\x7a\x93\x7a\x65\x3f\
\x56\xba\xb7\xdb\x85\x07\xec\x05\x95\xbf\xd0\x2c\xb8\xec\xfb\x4e\
\x1e\xd7\x3a\xbb\x36\x37\x7d\x7b\xf6\x7e\x8d\x51\xa3\xa6\x75\xca\
\xbe\xb1\x65\x75\x87\x7d\x4a\x63\xf1\xb2\x28\x14\xd5\xd3\x48\xab\
\xd2\xaa\xc0\x2a\xfd\x66\xbf\xd0\xec\xdf\xba\x97\xfd\x1a\x59\xfc\
\xf7\xf3\xaa\x8d\x59\x9f\x5b\xbe\xaf\x13\x9f\xf5\xbf\xa7\xe4\x75\
\x8e\x98\xe1\xe8\xb3\x1b\xa9\x5c\x6c\xa8\x5c\xef\x7d\x57\x31\x97\
\xfd\xad\x9e\xb3\x19\x5d\xac\xdd\xe9\x7d\x0b\x2c\x49\x6b\x5b\xeb\
\x97\x57\xfa\xcd\xd3\xfa\x9d\x78\xc7\x19\xdf\x56\x87\xa2\xd7\x8c\
\x0c\x0b\xb6\x54\xed\xce\xb2\x72\x9c\xdc\x37\x8a\x7d\x5b\x63\xd3\
\x7f\xe7\xfe\x85\x75\x9f\x5d\x72\xea\xea\xbf\x57\xee\xfa\xd5\xd0\
\x7a\xe6\x5b\x6b\xc0\x6d\x58\x6f\xa3\x1d\xd6\xd5\x53\xad\xf5\x19\
\xea\x3e\xcd\xfe\x8b\xdc\xff\x00\x4f\x31\x9e\xfd\x8b\x95\xc5\x67\
\xd6\x3f\xac\x9f\x56\x2c\xa5\xbd\x26\xce\xaf\x94\x72\x74\xeb\x76\
\xbc\x5b\x7b\x18\xc0\xc7\x7d\x89\xae\xb8\x3a\xff\x00\x4b\xdd\xbf\
\xfa\x47\xa7\xfa\x5f\xe6\xd6\x8f\x47\xe8\x1d\x57\xea\xc7\xd5\xcc\
\xae\xb9\xd6\xd9\x6b\xf1\x71\x6f\xda\xff\x00\xab\xb9\x1f\xd1\xb2\
\x3d\x41\x4d\x15\x65\xdc\xd2\xeb\x69\xfd\x15\x96\xef\x6f\xea\xd6\
\x7b\xf1\x2b\x49\x4f\xae\xf4\xa7\x39\xdd\x33\x0d\xce\x71\x73\x9d\
\x45\x65\xce\x71\x92\x49\x63\x7d\xce\x71\xfa\x4a\xd2\xaf\x81\x63\
\x6d\xc1\xc6\xb5\xac\x15\x36\xca\x98\xe1\x5b\x7e\x8b\x41\x68\x76\
\xc6\xe8\xdf\x6b\x15\x84\x94\xff\x00\xff\xd5\xf5\x55\xe5\x3f\xe3\
\x86\xa1\x26\xdf\xdb\x46\x7f\x42\xd3\xd0\xe4\xc7\xf8\x5f\xd7\x36\
\xfa\xbf\xfb\xaf\xff\x00\x5c\x5e\xac\xb8\x8e\xbb\x9b\xf5\x42\xcf\
\xae\x5f\xb2\xfa\xf7\x4f\xc4\x07\xec\x8d\xbb\xf6\x9e\x5d\xad\x60\
\xd0\x90\xcc\x7d\x96\xb5\xad\xfd\xef\xf0\xc9\x29\xcc\xe9\xdd\x07\
\xa3\x64\xe6\xb3\xeb\x57\x5d\xe9\x98\xdf\x56\xf0\x71\x01\xc3\x7f\
\x48\xc9\xa5\x86\xab\x49\x13\x5e\x73\xac\x7b\x31\xab\xdc\xe7\x64\
\x7a\x5f\xd1\x6c\xfe\x8d\xfc\xf7\xee\x07\x12\xdb\xba\x56\x73\x7a\
\x8f\x4d\xfa\xd3\x67\xd6\x7b\x6a\x73\xbd\x0f\xab\xd5\x3d\xc3\xd6\
\x0f\x0e\xaf\x63\x3f\x58\xcb\xf6\xe1\xd6\xff\x00\xb5\x7f\x45\x7f\
\xf4\x6f\xf0\x4b\x67\x33\xea\xcd\xd9\x9d\x06\xef\xaa\x7d\x53\xeb\
\x1b\x32\xfa\xa6\x65\xa3\x2a\x9b\x2e\x03\xd6\xf4\x5b\xb0\xec\xaf\
\x10\xdf\xea\xbe\xad\xd4\x5c\xef\x53\x72\xc1\xfa\xc8\x31\x70\x18\
\xda\x3e\xa5\x74\x5f\xb6\x66\x32\xa6\x47\x5e\xe9\x60\xd9\xe8\xdc\
\xd7\x6c\xc8\xc7\x3f\x66\xaf\x21\xbe\xb5\x98\xcd\xfd\x2b\x1f\x91\
\xbf\xd3\xcb\x49\x4d\x2f\xab\xbf\x5a\x7a\xef\x5a\xce\xce\xfa\xa9\
\x6d\xf9\x58\x39\x9d\x57\x2a\xc7\xd5\x9c\xeb\x9e\xfb\x30\x85\x5b\
\xb2\x5f\x89\x55\x27\xd2\x7f\xfd\xa7\x76\x37\xb3\x23\x1b\xf9\xcf\
\xe6\xd5\xff\x00\xad\x38\x7f\x59\x3e\xad\xfd\x5e\xcf\xe9\xf9\x37\
\xe5\xfd\x64\xa3\xa9\xd7\xba\xcc\xeb\x37\xb5\x98\x62\xa7\x37\xf3\
\x5e\xec\xcd\xde\xbf\xa9\xfe\x96\x8f\xe6\xd5\x4f\xf1\x7f\xf5\x5f\
\x37\x17\xa9\x3b\xeb\x77\xd6\x1b\xdf\xd2\xce\x15\xcf\xf5\x59\x9f\
\x51\xa7\xd4\xf5\xd8\xfa\xbd\x77\x64\xe4\xbe\x96\xb3\xf4\xd9\x1f\
\xe8\xff\x00\x9c\x42\x77\xd6\x07\xe4\xe7\x75\xfc\xee\xa1\xd6\x59\
\x99\xd3\x30\x32\xec\xfb\x3f\x43\xb2\xd6\x9a\xf3\x69\x75\x96\x7a\
\x55\xd0\xf2\xf3\xfa\x1a\x9b\xe9\x58\xcf\x4e\x8c\x94\x94\x87\xea\
\x61\xa9\xb8\x7d\x54\x69\xb8\xe1\xe4\x06\xc7\x30\x4d\x0d\xb5\xde\
\xdf\x77\xf3\x16\x3f\xfb\x0b\xab\xff\x00\x9a\x6e\x17\x58\xe2\xf2\
\xf2\xe2\x5a\xdb\x00\x6e\xd0\x1a\x36\x87\x6e\x86\x37\x75\xbf\x9b\
\xfa\x27\xfd\x9e\xaf\xf4\xfb\x3f\x49\x93\xf5\x17\xea\x76\x5d\x35\
\x1c\xfe\xb3\x5e\x46\x2b\x5e\xf7\x63\xd3\x8e\xf6\x9a\xcb\x83\xda\
\xea\x2e\xb7\x29\xa4\x7a\x8c\xaa\xf6\xdb\xf6\x6a\x1b\xec\xff\x00\
\x4d\xfe\x81\x74\x9d\x43\x2b\xa8\x74\x60\x1f\x68\x7e\x5d\x0f\x6b\
\x69\xc7\xcb\xb0\x35\xd6\xee\x3e\xd6\x53\x63\x1a\x69\xde\xfb\x9f\
\xb7\xf5\xad\x9f\xa6\x7f\xf3\xde\x82\x5c\x46\x87\x0f\x4d\xd7\xf0\
\x83\x2a\x3d\x76\x78\x9e\xbd\x86\x71\x2d\xcb\xc4\xde\xd7\xb9\x8c\
\x92\x40\x81\x2e\x63\x2d\x73\x75\x0c\xfa\x0e\xff\x00\x09\xb2\xb6\
\x7f\x51\x51\xfa\xa2\x31\x70\xe9\xbb\xac\x7e\xcf\x67\x5e\xcc\xad\
\xc6\x91\xd2\x4b\x46\xfa\xaa\x60\x66\x57\xed\x8f\x50\xb3\x27\x65\
\x6c\xb7\xf5\x4f\xe6\x3f\xeb\xff\x00\xe0\xd7\x53\xd5\x3a\x05\x63\
\x27\x17\x2b\x2f\x2a\xcb\xaf\xbd\xd6\xfd\xb7\x71\x00\x5b\x68\x6b\
\x6c\xad\xb5\x9a\x59\xfa\x36\x57\x53\x6d\x75\xcc\xa3\x7f\xe8\x31\
\xff\x00\x57\xd8\xa8\xe6\x74\xab\x3a\x5f\x48\x6e\x47\xd5\xac\x0c\
\x8b\xf2\x0e\x6b\x19\x96\x71\x5b\x6b\xdd\x6e\x2b\xab\x71\xbf\x0d\
\x9e\xa0\xb7\x2f\xec\x2e\xb6\x86\xef\x75\xd5\xff\x00\x3d\x62\x6c\
\xb2\xc3\xdc\x8e\x3b\xf5\x98\xdf\xd8\xc2\x73\x40\x64\x18\x7f\x4e\
\x43\x8e\x23\xfa\xbf\xca\x2c\x8f\x54\x6f\xd6\x43\xfb\x74\xfd\x70\
\x77\xd5\xdf\xb4\x73\xd1\x85\xa5\xc2\xaf\x47\xf4\x5f\x4c\x64\x62\
\x7f\x49\xf4\xfe\xd1\xfd\x17\xfc\x37\xf8\x45\x55\xb4\x75\xdf\xf1\
\x9d\xd4\xdd\x63\xce\x4f\x48\xe8\xa6\xad\xf5\x83\xbb\x27\x18\xdd\
\x49\x15\x7b\x75\xc3\xa9\xb6\xbd\xb7\xd9\xfe\x62\xd6\xfa\xaf\xf5\
\x53\xea\xf7\x55\xea\xf9\x1d\x4b\x2f\x1b\x1b\x0e\xdb\xf1\xdc\xc3\
\xf5\x62\xd6\x0f\x57\x17\x69\xa6\xa6\x66\x58\xc7\x3a\x9b\xbf\x4c\
\xd6\x7a\xdf\xd1\x29\xfe\x99\xfc\xe7\xe7\xbf\x9d\xea\x7d\x17\xeb\
\xff\x00\xd5\x6c\x8f\xd8\xfd\x0e\xfe\xa3\x99\x82\xc6\x8b\x1b\x6e\
\x25\x16\x36\xbd\xd6\x7b\xac\x68\xf4\xbd\x76\xfb\x7f\xe3\x13\x97\
\xbb\xcf\xe9\x79\xb9\xb8\x4f\xeb\x07\x36\xdf\xf1\x79\x84\x1f\xe8\
\x3b\xa7\x30\x39\x95\xbd\xe0\x4f\xdb\x7f\x47\x67\x4d\x6f\xa9\x7e\
\xff\x00\x47\xfa\x3f\xfd\xa6\xfe\x75\x74\x1f\x5b\x7e\xa4\x75\x0f\
\xac\xcf\xaf\xd3\xeb\x96\xe1\xe0\x9a\x2b\xaa\xdc\x46\xb1\xd6\x55\
\x6b\x98\xf7\x5c\x32\x5e\xcf\xb4\x53\x5e\xf7\x6e\xaf\xfc\x1f\xf8\
\x25\xc6\x5f\xf5\xc3\xac\x7d\x65\xea\x43\xa8\x0f\xab\xd9\x9d\x4b\
\xa1\x8a\xbd\x1b\x3a\x6b\x0d\x96\xd0\xeb\xda\x5c\xf1\x7f\xab\x56\
\x33\x98\xdb\x58\xdb\x19\xec\xd9\xbd\x03\xeb\x6f\xd6\xcf\xaf\x57\
\xda\xdc\xfc\x7c\x0e\xa5\xf5\x7f\xa7\xd1\x4b\x6a\xb1\x84\x5a\x2a\
\xdd\xbd\xd1\x6b\xae\x75\x38\xec\x66\xff\x00\x56\xaa\x52\x53\xec\
\x78\x94\x7d\x9b\x12\x9c\x6d\xdb\xfd\x1a\xdb\x5e\xe8\x89\xda\x03\
\x37\x6d\xd7\xc1\x19\x56\xe9\x8f\x7d\x9d\x37\x12\xcb\x1c\x5e\xf7\
\xd3\x5b\x9e\xe3\xc9\x25\xad\x2e\x71\x56\x52\x53\xff\xd6\xf5\x55\
\xe7\x1f\x5d\xb3\x3a\x07\xfc\xe7\x38\x59\x3f\x56\xad\xeb\x9d\x43\
\xec\xcc\xb3\xd4\xa1\xf6\x6e\xf4\xe5\xfa\x7a\x14\x87\x7b\x6b\xff\
\x00\x48\xbd\x1d\x71\x5f\x67\xc8\xff\x00\xc7\x63\xed\x1e\x93\xfd\
\x0f\xd9\x9b\x3d\x6d\xa7\x66\xed\xdf\x47\xd4\x8d\x89\x29\xe3\x7e\
\xb3\x74\xbf\xf1\x87\xd2\x7e\xb1\xe3\xe7\x63\xdf\x95\xd5\xf3\x59\
\x8a\x1a\xcc\xfc\x7c\x42\xe6\xb1\xae\x75\xcc\x76\x31\x6b\x2b\xb6\
\xad\xed\xf7\x59\xfb\xff\x00\xa5\x5b\xff\x00\x50\xf3\xf1\xb3\xba\
\x9d\x36\xf4\xbc\xba\xfa\x3e\x23\x6c\xb1\x99\x7d\x02\xc7\xb5\xf7\
\xe4\xe4\x0a\x8b\xad\xcf\x67\xa8\x7d\x66\xb7\xdd\x57\xb2\xb6\x6c\
\xfd\x49\x74\x35\x66\xfd\x60\xfa\xb5\xf5\x7e\xec\xbf\xac\x36\x3b\
\xae\x65\xb6\xf1\xb0\x61\xd6\x03\x85\x4f\xf4\xeb\x63\x7d\x36\x57\
\x4f\xd0\x7f\xa9\x67\xd1\xfc\xf5\xc7\xf4\xec\x2c\x4f\xa9\x7d\x49\
\xb9\x79\xbd\x1f\x2b\xab\x75\x6b\x8b\xf3\x31\x73\x30\xc5\xa5\x95\
\x55\x7b\x5d\x47\xd9\x2d\xad\xc5\x95\xfa\xec\xfd\x36\xfd\xd5\x3f\
\xf9\xf4\x94\xbf\xd7\x3c\x2f\xac\x16\x74\x0e\xb1\x98\x7e\xb2\xd5\
\xd4\x7a\x75\x36\x86\xdd\x83\x53\x2b\x76\xd2\x6f\xaf\xd2\xc7\xb2\
\xda\xcb\x9d\x55\x94\xb9\xcc\xff\x00\x31\x73\xb7\xdb\xd1\xdd\xd0\
\xf1\xba\x75\x7f\x55\x72\x6b\xea\xd9\xb8\xd5\xb7\x13\x37\xf4\x93\
\x75\x81\xb5\x9b\x32\xb1\xa9\xdb\xfa\x66\xd9\xfc\xe7\xe8\xbf\x7d\
\x7a\x06\x38\xfa\xa9\x95\x6b\x7a\x06\x3f\x4a\xb6\xec\x4f\xac\x3f\
\xad\xf5\x17\xb2\xc7\xba\xba\xaf\x00\xe5\x7a\x19\x96\x32\xd7\x3f\
\x1b\x21\xb6\x51\xfc\xcb\x1f\x52\x6b\x7e\xab\xe6\x55\x6b\xab\xbb\
\xa8\xe2\xd7\xd4\x71\x89\x67\xd5\x06\xb9\xdb\x4e\x35\x2d\xf6\xfa\
\x2e\xa8\xb5\xbf\x6d\x77\xd9\x85\x35\x3d\xd7\xd7\x9b\xf4\x12\x53\
\xc5\xbb\xea\x5d\x9d\x67\xa1\x1b\x71\x7a\x3e\x47\x45\xcd\xe8\xd8\
\xc0\xe4\x0b\xaa\xb5\xcf\xcf\xb5\xcd\xff\x00\xb4\xec\x7e\xdd\x8e\
\x6b\xf1\xec\xfe\x6d\x96\x7f\x4a\x62\xe9\xfa\x4f\xd5\x2e\xa5\x87\
\xf5\x6b\x03\x37\xa4\x66\x8f\xab\x59\x2e\xc7\x2f\xeb\x2f\xba\xb3\
\x2f\xd9\xee\xae\xcb\xdb\x94\x76\xe3\xfd\x9f\xf4\xee\xff\x00\x07\
\xfc\xea\xcf\xa7\xeb\x97\xd7\x7e\x9a\x3a\xd7\x4f\xea\x75\x66\x75\
\x0c\xc6\x93\x47\x4d\xcc\xa3\x15\x82\xb6\x59\x59\xb6\xb7\xdf\xa5\
\x2c\xf5\x2a\xb3\xf4\x2f\x67\xb2\xd4\x3f\xae\xff\x00\x59\xfe\xb2\
\xe3\x7d\x51\xe8\x41\xf9\x0e\xae\xee\xaf\x8d\x91\x5f\x53\x6b\xea\
\xac\x3a\xc0\x45\x4c\xda\xe6\x3e\xaf\xd0\xfb\x2d\xb3\xf9\x9f\x49\
\x25\x35\xba\x27\x5b\xce\xe9\x5f\x5a\x3a\xd9\x34\xdb\xf5\xba\xcc\
\x9a\xea\x65\xb9\x58\x03\x73\x1c\xdd\xad\x3b\xdd\xf6\x66\xdc\xc6\
\xb7\x69\xf4\x7d\xbf\xe8\xd5\xce\xb5\x99\xf5\x87\x05\xdd\x37\xeb\
\x2d\x59\x16\x74\x5c\x2c\xfc\x96\x61\xfe\xc8\xb5\x82\xb7\x51\x5e\
\xef\xd6\x2c\xb9\xf7\x35\xad\xfd\x61\xf8\x7e\xbf\xad\x65\x7e\xaf\
\xa1\x65\x75\xfa\xbe\x82\xe6\xbf\xc5\xdb\x3a\xe3\xf2\xf2\xd9\xd1\
\x7a\xbe\x3f\x48\xb9\xcd\xad\xae\x39\x01\x8e\xf5\x4b\x9d\xb6\xba\
\xea\x6d\xcc\xb7\xdf\xbf\xf7\x17\xa2\xfd\x64\xfa\xab\xd7\x3a\xb7\
\xd5\x7c\x0c\x6e\xad\x93\x56\x6e\x67\x4f\xc8\x76\x5e\x73\xda\xd7\
\x34\x5d\x5b\x3d\x63\xe8\x50\xcc\x7a\xeb\xfd\x2b\xa8\x7d\x74\xfd\
\x0a\xd2\x53\x4b\xac\xf4\x3b\x5d\xd7\x32\x7e\xb8\x74\xbf\xac\xf8\
\x7d\x37\x1f\x3d\xac\xc6\x65\xe4\xd6\xe6\x3b\x63\x6b\x6b\xe8\x6e\
\x45\x96\x7a\x0e\x7b\xac\xc3\xdd\xec\xfd\xc5\xa3\xf5\x77\xfc\x64\
\xe3\xf5\x87\x9b\x32\xf0\x5d\xd2\xba\x76\xd7\x47\x52\xca\xb0\x37\
\x1c\xda\xd2\xd6\xfd\x95\x97\xd8\xca\xa9\x75\xce\xdc\xf7\xec\xf5\
\x37\xfe\x8f\xe8\x2e\x0f\xeb\x8e\x2e\x7b\x7e\xaa\xe2\xe5\xe1\xee\
\xc1\xfa\xb3\x66\x58\x6e\x17\x46\xb9\x87\xd7\xa6\xdd\xb9\x1e\xad\
\xb6\x5d\x63\x5d\x73\xd9\x6d\x8c\xc9\xb5\x9f\xac\xd9\xfd\x21\x51\
\xfa\xad\xd4\x2f\x76\x08\xe9\xdd\x6b\xa6\x65\xf5\x7f\xab\x8d\x2f\
\xb2\x8c\x6c\x6a\xdc\x36\xe5\x4b\x7f\x4d\xf6\x9a\x7d\x1b\x5d\xb6\
\xb7\xda\xc7\xd5\xf6\x8d\x9f\xa6\xfe\x6d\x25\x3b\xf8\xd9\x1d\x75\
\xb9\xad\xc4\xe9\x55\x5f\xf5\x1b\xa2\x1a\xcb\xed\x7e\x6d\x67\xd1\
\x39\x26\x7d\xce\xc9\xcc\x65\x7b\x5f\x7b\x3d\x1a\x98\xcf\x57\xfc\
\x12\xbb\xfe\x33\x73\xd9\x9f\xd2\x6d\xb7\x03\xeb\x1e\x25\xd8\x6c\
\xa6\x96\x5d\xd2\xea\xb2\xab\x1f\x75\x82\xe9\x75\xed\xf4\xde\xeb\
\x3d\xbb\xea\xb3\x63\x7f\xd0\x2a\x58\x9f\x5d\x2c\xea\x1d\x31\xdd\
\x0f\xeb\x9f\x4a\xce\xea\xf9\xb6\x5b\xf6\x86\xd5\x5d\x5e\x81\xf4\
\x9a\xd6\xfa\x51\x5e\x2f\xd9\x6d\xda\xc7\xb6\xe7\xef\xd8\xb3\x3a\
\xe6\x3f\xd5\xbb\xfa\x55\xf5\x74\x7f\xaa\x9d\x47\x0b\xa8\x3b\x67\
\xa3\x91\x60\xbd\xed\x60\x0e\x6b\xad\x96\x3e\xdb\x5b\xee\xa8\x3d\
\x9f\x41\x25\x3e\xcd\xd2\x7f\xe4\xac\x2f\xfc\x2f\x57\xfd\x43\x55\
\xb5\x57\xa5\x07\x37\xa5\xe1\xb5\xc0\xb5\xc2\x8a\x81\x04\x41\x07\
\x63\x74\x20\xab\x49\x29\xff\xd7\xf5\x55\xc0\x7d\x64\xea\x5f\x5d\
\x32\x7e\xba\xfe\xc0\xfa\xbd\xd4\x6a\xc2\x67\xd8\xdb\x93\xb6\xea\
\xd8\xe6\xc8\x71\x6b\xfd\xee\xc7\xc9\xb7\x73\xbd\xab\xbf\x5c\x37\
\xff\x00\x9d\xff\x00\xfd\xa5\xff\x00\xdf\x92\x53\x43\xd0\xff\x00\
\x1a\x31\x3f\xf3\xa7\xa5\xc0\xef\xfa\x2f\xfd\xe0\x4f\xd2\xba\xaf\
\xd7\xae\x9f\xf5\xeb\xa6\x74\x0e\xbd\xd4\xe9\xcd\xa7\x32\x9b\x2f\
\x73\x68\xae\xb0\xd2\xd1\x5e\x4f\xa7\xfa\x4f\xb3\x63\xdb\xbb\xd5\
\xc6\xdf\xec\x5e\x3c\x6b\x7e\xa7\x69\x81\x3d\xbc\x17\xb0\xe4\xe9\
\xfe\x35\x3e\xac\x0e\x3f\xc9\x7f\xfa\x2b\x3d\x25\x36\xcd\xb5\xf4\
\x2f\xaf\x38\x38\x1d\x1d\xed\xc7\xe9\x1d\x4b\xd7\xc9\xea\xda\x8b\
\x18\xec\x80\xdb\xfd\xd6\x64\xdf\xea\xbf\x1d\xfe\xa5\x75\xfe\x8a\
\xbb\x6a\x47\xca\xc6\x76\x0e\x56\x57\xd6\x3f\xac\xf6\x57\xd4\xc6\
\x15\xae\xbf\xea\xfd\x58\x8e\x8b\xab\xc7\x7b\xbe\x87\xa6\xc1\x87\
\x5e\x53\xbd\x37\xe3\xff\x00\x3b\xf6\xaf\xf8\xc5\x9d\xf5\x27\xa5\
\x60\x75\x8c\x0f\xac\xfd\x33\xa8\x34\xbb\x12\xfe\xa8\xf0\xf6\x07\
\x16\x1f\x6b\xdb\x6b\x21\xcd\x87\x7d\x3a\xda\xb6\x3a\x33\x3e\xab\
\xf5\xae\xa4\xca\xf1\xb1\xef\xae\xff\x00\xaa\x0f\xfb\x0e\x3b\xec\
\x76\xd6\xfb\x43\xa8\xfd\x1e\xcb\x6c\xf5\xd9\xb7\x1b\xfc\x2a\x4a\
\x73\x6c\xfa\xcd\xf5\x83\x0c\x11\x97\x96\x0b\xbe\xb4\x6b\xf5\x5f\
\xf4\x75\xb4\x62\x07\x7b\xda\x3a\xa6\xea\xd9\xf4\x19\x99\x88\xd7\
\x6d\xfd\xa3\xfc\xcd\xbf\xf5\xde\x03\xeb\x27\x56\xeb\x77\x75\xdc\
\x4c\x5f\xad\xf7\xfe\xd3\xc1\xe9\xd9\x30\xf7\x51\x5b\x6b\x6d\x95\
\x97\x54\x73\x1b\x8d\x6d\x55\xe1\xfa\x9e\xa5\x4d\x6b\x7e\x9a\xd3\
\xfa\xd3\xf5\x93\x13\xa9\x67\x75\xde\x9f\xf5\x8e\x9b\xb2\xee\xc0\
\xbb\x22\x8e\x80\xfa\x1a\xd6\x36\x93\xb9\xec\x77\xda\x76\xbe\x97\
\x5a\xd7\x7a\x38\x7f\x4d\x99\x1f\xe1\x16\xfb\x3e\xa8\xdd\xf5\x9b\
\xea\xdf\xd4\xf3\xea\x52\x30\xb0\x59\xbb\x3a\xbb\x5e\xf6\x3d\xf5\
\x3d\xd4\xef\x65\x1e\x93\x1f\xef\xf4\xe9\xb7\xf3\xea\x49\x4e\x37\
\xd5\x3e\x91\xf5\x7f\xaa\xf5\x9e\xad\x9b\xd3\xf1\x8e\x05\x15\x54\
\xcb\xba\x03\xf3\x1e\xf6\x8a\xb2\x1b\xa5\x77\x3f\xf4\xb7\x33\x21\
\xac\xca\x67\xa8\xea\xec\xfb\x53\x3f\x90\xbb\x4e\xa3\xff\x00\x3d\
\x2a\xfa\xa5\x88\xfa\x7a\xce\x1b\x7a\xbd\x4f\xb1\xf9\x79\x80\x31\
\xd5\x5c\xc6\xfa\xef\x65\x38\xcd\xfb\x29\x63\xad\xd9\xe8\xb7\xdb\
\x8f\x57\xf3\x6f\x58\x3f\x58\xbe\xaf\xe3\xfd\x61\xd9\xf5\x33\xea\
\xd8\x18\xcf\xfa\xb8\xe2\xfb\x9d\x98\xe7\x7a\x65\xb7\x8d\xed\x6d\
\x16\xd7\xf6\xab\xac\xf7\x3f\xfc\x2d\x75\x2a\xaf\xea\xbf\x56\xbe\
\xaf\xf4\xec\x3f\xaa\x1f\x59\xb1\x72\xb3\x33\xba\x15\xbf\x69\x36\
\xe0\xc1\xa7\x7d\x8e\x7e\x6d\x2e\x65\x96\x5d\x8b\x73\x9a\xda\x72\
\xd8\xdb\x3d\x4a\x59\xfa\x44\x94\x87\xea\xbf\x51\xea\x9f\x5b\xf3\
\x6e\xe9\xbf\x5d\x9c\xec\x9e\x9b\x4e\x3b\xf2\x68\x65\xac\x6e\x2b\
\x46\x43\x1d\x5d\x55\xbf\xd6\xc6\x6e\x23\xdc\xef\x42\xfc\x8f\xd1\
\xfa\x9e\x9f\xf2\x3d\x8a\xf7\xd4\xd7\x75\xa7\xff\x00\x8b\xea\x29\
\xe8\x3d\x4b\x1b\xa7\x67\x8c\xcb\x1c\xe7\xe4\x96\xed\x35\x7b\xb7\
\xd7\xb6\xca\xb2\x7d\xdb\xdd\x5b\xff\x00\x9a\x59\x7d\x57\xeb\xf7\
\x48\xfa\xc3\xd5\xae\xa7\xad\x51\x95\x7f\xd5\xa2\x1a\xec\x1c\x66\
\x31\x95\xdc\xcc\xa0\xd6\xd5\xea\xd9\x6d\x77\x33\x75\x7f\xa4\xcb\
\xff\x00\xb5\x16\x7f\x83\xfd\x12\xe8\xfa\x07\xf8\xa4\xe8\x98\xfd\
\x35\xac\xfa\xc5\x53\x32\x33\xc3\xdd\xba\xda\x2e\xb4\x30\xb4\xff\
\x00\x36\xdd\x7e\xcf\xf4\x7f\xe2\xd2\x53\x66\xcb\xaa\xbb\xfc\x6e\
\x62\x3a\xab\x1b\x63\x7f\x65\x11\x2c\x70\x70\xfa\x77\x18\xf6\xaa\
\x4f\xa3\xfc\x68\x6e\x71\x6f\xd6\x8e\x96\x1a\x09\x89\xf4\xb4\x1e\
\x7f\xa8\xa1\xf4\x3f\xab\xfd\x37\xfc\x5d\xf4\xb7\x7d\x60\xeb\xac\
\xfb\x56\x7d\x77\x3a\x96\x5b\x80\xf7\x58\x3d\x2b\x5a\xc6\xb5\x8e\
\xab\x23\xec\x95\xee\x6b\xdb\x6a\xc3\xff\x00\x18\x5f\xe2\xf3\x1f\
\xa5\x63\x9e\xb5\xd1\xfd\x3a\x3a\x65\x34\xd5\xeb\x51\x65\x8f\x75\
\xee\xb6\xcb\x1c\xcd\xec\x6b\xdb\x63\x36\x6c\xb2\x9f\xf0\xdf\xe0\
\xec\x49\x4f\xb1\x62\x8b\x86\x35\x22\xf7\x8b\x2e\x0c\x6f\xa9\x63\
\x7e\x8b\x9d\x03\x7b\xdb\xf4\x7d\xae\x72\x2a\xa9\xd2\x04\x74\xac\
\x20\x34\xfd\x5e\xad\x3f\xb0\xd5\x6d\x25\x3f\xff\xd0\xf5\x55\xc4\
\x75\xff\x00\xab\x9f\x5b\x9d\xf5\xb8\xfd\x60\xfa\xbf\x66\x1b\x3f\
\x55\x6e\x37\xeb\x45\xc4\xf2\x5c\xff\x00\x63\x2b\x77\xf2\x7f\x3d\
\x76\xe9\x24\xa7\x87\xf4\x3f\xc6\xf7\xfd\xc8\xe9\x5f\x73\xff\x00\
\xf4\x92\x0f\x4d\xfa\xaf\xf5\xd2\xff\x00\xae\x7d\x3b\xeb\x17\x5f\
\xb7\x09\xed\xc2\xaa\xca\x5d\xf6\x62\xf0\xe2\xd7\x33\x21\xac\xf6\
\x3a\xb6\xb5\xdf\xa5\xc9\xfd\xf5\xdf\x24\x92\x9e\x33\xeb\x6f\xd4\
\x67\xfd\x65\xfa\xcb\xd3\xb2\xf2\x76\x9e\x95\x45\x2f\xaf\x29\xa1\
\xe5\x97\x12\x7d\x47\xd7\xe9\xfb\x1c\xdf\xe7\x1d\x57\xe7\xa8\x7d\
\x65\xfa\xa3\xd7\x1f\x97\xd0\x6f\xfa\xb6\xec\x76\x0e\x83\x53\xaa\
\xab\xed\x6e\x71\xd0\x36\xba\xaa\x90\xca\xdf\xbf\xf4\x75\xae\xd9\
\x24\x94\xe1\x5d\x5f\xd6\xff\x00\xf2\x2f\xa3\x66\x2f\xb0\x37\xf6\
\xee\xe9\xf7\x69\x56\xff\x00\xb1\xfb\x3f\xf0\xcf\xfa\x3f\xf0\x6b\
\x81\xfa\xcd\xfe\x2a\xfe\xb2\xf5\x6f\xac\x19\xfd\x4b\x1a\xcc\x46\
\xd1\x95\x73\xac\xac\x3e\xc7\x87\x6d\x3f\xbc\x1b\x4b\x97\xad\xa4\
\x92\x9e\x37\xea\x8f\xd4\x8b\x7e\xad\x74\x6b\xed\xc6\x2c\x1d\x7f\
\x23\x19\xf5\xb9\xc5\xe5\xf8\xfe\xa8\x36\x3b\x15\xd1\xb1\x8e\xd9\
\xad\x5e\xaf\xb5\x56\xbb\xea\xa7\xd6\x96\xd0\xfe\xad\x8d\x66\x28\
\xfa\xcf\xd4\x98\xec\x7e\xab\x63\xdc\xef\xb3\x1a\x20\xd5\x57\xd9\
\xeb\x6d\x7e\xdb\xbd\x2a\x71\x3f\xf0\x45\xdd\xa4\x92\x9f\x27\xbb\
\xfc\x5f\x7f\x8c\x0b\xba\x06\x27\xd5\xf7\xdd\xd3\xfe\xc3\x83\x71\
\xc8\xa3\xdc\xfd\xfb\xc9\xb5\xde\xe7\xfa\x3e\xe6\xee\xc9\xb5\x74\
\x3f\xf3\x63\xeb\x4f\xd6\x17\x7d\x8b\xeb\xa3\xf1\x2d\xe9\x6c\xfd\
\x35\x4d\xc1\x73\x99\x60\xbd\xbe\xca\xe5\xcf\xaf\xf9\xaf\x4a\xdb\
\xd7\x6e\x92\x4a\x78\x5f\xab\x7f\xe2\xec\xd7\xf5\x4a\xef\xab\xdf\
\x58\x0b\x48\xb7\x2c\xe5\x03\x8a\xf3\xc0\x6d\x4c\x64\xbd\xf5\xb7\
\xdd\xfa\x37\x7e\x62\x97\xd6\x7f\xaa\xdf\x59\xef\xfa\xd5\x85\xd7\
\xfe\xaf\xbf\x15\x8e\xc2\xc3\xfb\x33\x3e\xd4\x5d\x3b\x89\xc8\x6b\
\xdd\xb1\xb5\xbf\xfc\x16\x4f\xef\x2e\xe1\x24\x94\x8f\x1f\xd7\x18\
\xf5\x0c\x92\xd3\x7e\xc6\xfa\xa5\x9f\x47\x7c\x7e\x93\x67\xf2\x77\
\x22\x24\x92\x4a\x7f\xff\xd9\x00\x38\x42\x49\x4d\x04\x21\x00\x00\
\x00\x00\x00\x53\x00\x00\x00\x01\x01\x00\x00\x00\x0f\x00\x41\x00\
\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x50\x00\x68\x00\x6f\x00\
\x74\x00\x6f\x00\x73\x00\x68\x00\x6f\x00\x70\x00\x00\x00\x12\x00\
\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\x50\x00\x68\x00\
\x6f\x00\x74\x00\x6f\x00\x73\x00\x68\x00\x6f\x00\x70\x00\x20\x00\
\x43\x00\x43\x00\x00\x00\x01\x00\x38\x42\x49\x4d\x04\x06\x00\x00\
\x00\x00\x00\x07\x00\x08\x00\x00\x00\x01\x01\x00\xff\xe1\x0e\x48\
\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\
\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x00\x3c\x3f\x78\
\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\x69\x6e\x3d\x22\xef\xbb\
\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\x30\x4d\x70\x43\x65\x68\
\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\x7a\x6b\x63\x39\x64\x22\
\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\x65\x74\x61\x20\x78\x6d\
\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\x62\x65\x3a\x6e\x73\x3a\
\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\x6d\x70\x74\x6b\x3d\x22\
\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\x43\x6f\x72\x65\x20\x35\
\x2e\x36\x2d\x63\x31\x34\x32\x20\x37\x39\x2e\x31\x36\x30\x39\x32\
\x34\x2c\x20\x32\x30\x31\x37\x2f\x30\x37\x2f\x31\x33\x2d\x30\x31\
\x3a\x30\x36\x3a\x33\x39\x20\x20\x20\x20\x20\x20\x20\x20\x22\x3e\
\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\x78\x6d\x6c\x6e\x73\x3a\
\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\
\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\x39\x2f\x30\x32\x2f\x32\
\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\x61\x78\x2d\x6e\x73\x23\
\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\
\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\x6f\x75\x74\x3d\x22\x22\
\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\
\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\
\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x70\x75\x72\x6c\x2e\
\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\x6d\x65\x6e\x74\x73\x2f\
\x31\x2e\x31\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x70\x68\x6f\x74\
\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\
\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x70\x68\x6f\x74\x6f\
\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\x22\x20\x78\x6d\x6c\x6e\x73\
\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\
\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\
\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x73\
\x74\x45\x76\x74\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\
\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\
\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\x73\x6f\x75\x72\x63\x65\
\x45\x76\x65\x6e\x74\x23\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\
\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\
\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x43\x20\x28\x57\x69\x6e\
\x64\x6f\x77\x73\x29\x22\x20\x78\x6d\x70\x3a\x43\x72\x65\x61\x74\
\x65\x44\x61\x74\x65\x3d\x22\x32\x30\x32\x30\x2d\x30\x37\x2d\x30\
\x35\x54\x31\x35\x3a\x35\x35\x3a\x34\x33\x2b\x30\x38\x3a\x30\x30\
\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\x66\x79\x44\x61\x74\x65\
\x3d\x22\x32\x30\x32\x30\x2d\x30\x37\x2d\x30\x35\x54\x31\x36\x3a\
\x33\x35\x3a\x33\x31\x2b\x30\x38\x3a\x30\x30\x22\x20\x78\x6d\x70\
\x3a\x4d\x65\x74\x61\x64\x61\x74\x61\x44\x61\x74\x65\x3d\x22\x32\
\x30\x32\x30\x2d\x30\x37\x2d\x30\x35\x54\x31\x36\x3a\x33\x35\x3a\
\x33\x31\x2b\x30\x38\x3a\x30\x30\x22\x20\x64\x63\x3a\x66\x6f\x72\
\x6d\x61\x74\x3d\x22\x69\x6d\x61\x67\x65\x2f\x6a\x70\x65\x67\x22\
\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x43\x6f\x6c\x6f\x72\
\x4d\x6f\x64\x65\x3d\x22\x33\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\
\x6f\x70\x3a\x49\x43\x43\x50\x72\x6f\x66\x69\x6c\x65\x3d\x22\x73\
\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\
\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x49\x6e\x73\x74\x61\x6e\x63\x65\
\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x37\x36\x31\x39\
\x34\x61\x39\x38\x2d\x32\x65\x65\x30\x2d\x33\x62\x34\x36\x2d\x62\
\x30\x33\x39\x2d\x30\x66\x34\x65\x66\x63\x63\x62\x62\x39\x36\x35\
\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\x63\x75\x6d\x65\x6e\x74\
\x49\x44\x3d\x22\x61\x64\x6f\x62\x65\x3a\x64\x6f\x63\x69\x64\x3a\
\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x32\x62\x33\x62\x64\x31\
\x62\x65\x2d\x34\x62\x31\x30\x2d\x30\x63\x34\x61\x2d\x62\x63\x63\
\x61\x2d\x63\x63\x66\x38\x62\x32\x38\x62\x34\x65\x65\x64\x22\x20\
\x78\x6d\x70\x4d\x4d\x3a\x4f\x72\x69\x67\x69\x6e\x61\x6c\x44\x6f\
\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x78\x6d\x70\x2e\x64\x69\
\x64\x3a\x37\x39\x63\x62\x32\x62\x35\x39\x2d\x38\x62\x38\x38\x2d\
\x61\x33\x34\x37\x2d\x62\x65\x31\x66\x2d\x61\x33\x66\x61\x65\x31\
\x35\x33\x36\x64\x62\x66\x22\x3e\x20\x3c\x78\x6d\x70\x4d\x4d\x3a\
\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x72\x64\x66\x3a\x53\x65\
\x71\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\
\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x63\x72\x65\x61\x74\x65\x64\
\x22\x20\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\
\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x37\x39\x63\x62\
\x32\x62\x35\x39\x2d\x38\x62\x38\x38\x2d\x61\x33\x34\x37\x2d\x62\
\x65\x31\x66\x2d\x61\x33\x66\x61\x65\x31\x35\x33\x36\x64\x62\x66\
\x22\x20\x73\x74\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\
\x32\x30\x2d\x30\x37\x2d\x30\x35\x54\x31\x35\x3a\x35\x35\x3a\x34\
\x33\x2b\x30\x38\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\
\x6f\x66\x74\x77\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\
\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x43\
\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x2f\x3e\x20\x3c\x72\
\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\x3a\x61\x63\x74\x69\
\x6f\x6e\x3d\x22\x63\x6f\x6e\x76\x65\x72\x74\x65\x64\x22\x20\x73\
\x74\x45\x76\x74\x3a\x70\x61\x72\x61\x6d\x65\x74\x65\x72\x73\x3d\
\x22\x66\x72\x6f\x6d\x20\x69\x6d\x61\x67\x65\x2f\x70\x6e\x67\x20\
\x74\x6f\x20\x69\x6d\x61\x67\x65\x2f\x6a\x70\x65\x67\x22\x2f\x3e\
\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\x74\x3a\x61\
\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\x65\x64\x22\x20\x73\x74\
\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x69\x69\x64\x3a\x37\x36\x31\x39\x34\x61\x39\x38\
\x2d\x32\x65\x65\x30\x2d\x33\x62\x34\x36\x2d\x62\x30\x33\x39\x2d\
\x30\x66\x34\x65\x66\x63\x63\x62\x62\x39\x36\x35\x22\x20\x73\x74\
\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\x32\x30\x32\x30\x2d\x30\
\x37\x2d\x30\x35\x54\x31\x36\x3a\x33\x35\x3a\x33\x31\x2b\x30\x38\
\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\
\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\
\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x43\x20\x28\x57\x69\
\x6e\x64\x6f\x77\x73\x29\x22\x20\x73\x74\x45\x76\x74\x3a\x63\x68\
\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\x3e\x20\x3c\x2f\x72\x64\
\x66\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\x6d\x70\x4d\x4d\x3a\x48\
\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\x20\x3c\x2f\x72\x64\x66\
\x3a\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\x78\x6d\x70\x6d\x65\x74\
\x61\x3e\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x65\x6e\x64\
\x3d\x22\x77\x22\x3f\x3e\xff\xe2\x0c\x58\x49\x43\x43\x5f\x50\x52\
\x4f\x46\x49\x4c\x45\x00\x01\x01\x00\x00\x0c\x48\x4c\x69\x6e\x6f\
\x02\x10\x00\x00\x6d\x6e\x74\x72\x52\x47\x42\x20\x58\x59\x5a\x20\
\x07\xce\x00\x02\x00\x09\x00\x06\x00\x31\x00\x00\x61\x63\x73\x70\
\x4d\x53\x46\x54\x00\x00\x00\x00\x49\x45\x43\x20\x73\x52\x47\x42\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\xf6\xd6\
\x00\x01\x00\x00\x00\x00\xd3\x2d\x48\x50\x20\x20\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x11\x63\x70\x72\x74\
\x00\x00\x01\x50\x00\x00\x00\x33\x64\x65\x73\x63\x00\x00\x01\x84\
\x00\x00\x00\x6c\x77\x74\x70\x74\x00\x00\x01\xf0\x00\x00\x00\x14\
\x62\x6b\x70\x74\x00\x00\x02\x04\x00\x00\x00\x14\x72\x58\x59\x5a\
\x00\x00\x02\x18\x00\x00\x00\x14\x67\x58\x59\x5a\x00\x00\x02\x2c\
\x00\x00\x00\x14\x62\x58\x59\x5a\x00\x00\x02\x40\x00\x00\x00\x14\
\x64\x6d\x6e\x64\x00\x00\x02\x54\x00\x00\x00\x70\x64\x6d\x64\x64\
\x00\x00\x02\xc4\x00\x00\x00\x88\x76\x75\x65\x64\x00\x00\x03\x4c\
\x00\x00\x00\x86\x76\x69\x65\x77\x00\x00\x03\xd4\x00\x00\x00\x24\
\x6c\x75\x6d\x69\x00\x00\x03\xf8\x00\x00\x00\x14\x6d\x65\x61\x73\
\x00\x00\x04\x0c\x00\x00\x00\x24\x74\x65\x63\x68\x00\x00\x04\x30\
\x00\x00\x00\x0c\x72\x54\x52\x43\x00\x00\x04\x3c\x00\x00\x08\x0c\
\x67\x54\x52\x43\x00\x00\x04\x3c\x00\x00\x08\x0c\x62\x54\x52\x43\
\x00\x00\x04\x3c\x00\x00\x08\x0c\x74\x65\x78\x74\x00\x00\x00\x00\
\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\x28\x63\x29\x20\x31\x39\
\x39\x38\x20\x48\x65\x77\x6c\x65\x74\x74\x2d\x50\x61\x63\x6b\x61\
\x72\x64\x20\x43\x6f\x6d\x70\x61\x6e\x79\x00\x00\x64\x65\x73\x63\
\x00\x00\x00\x00\x00\x00\x00\x12\x73\x52\x47\x42\x20\x49\x45\x43\
\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x12\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\
\x36\x36\x2d\x32\x2e\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x58\x59\x5a\x20\x00\x00\x00\x00\
\x00\x00\xf3\x51\x00\x01\x00\x00\x00\x01\x16\xcc\x58\x59\x5a\x20\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\x6f\xa2\x00\x00\x38\xf5\
\x00\x00\x03\x90\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\x62\x99\
\x00\x00\xb7\x85\x00\x00\x18\xda\x58\x59\x5a\x20\x00\x00\x00\x00\
\x00\x00\x24\xa0\x00\x00\x0f\x84\x00\x00\xb6\xcf\x64\x65\x73\x63\
\x00\x00\x00\x00\x00\x00\x00\x16\x49\x45\x43\x20\x68\x74\x74\x70\
\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x65\x63\x2e\x63\x68\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x16\x49\x45\x43\x20\x68\x74\x74\
\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x65\x63\x2e\x63\x68\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x65\x73\x63\
\x00\x00\x00\x00\x00\x00\x00\x2e\x49\x45\x43\x20\x36\x31\x39\x36\
\x36\x2d\x32\x2e\x31\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x52\x47\
\x42\x20\x63\x6f\x6c\x6f\x75\x72\x20\x73\x70\x61\x63\x65\x20\x2d\
\x20\x73\x52\x47\x42\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x2e\x49\x45\x43\x20\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x20\x44\
\x65\x66\x61\x75\x6c\x74\x20\x52\x47\x42\x20\x63\x6f\x6c\x6f\x75\
\x72\x20\x73\x70\x61\x63\x65\x20\x2d\x20\x73\x52\x47\x42\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\x2c\
\x52\x65\x66\x65\x72\x65\x6e\x63\x65\x20\x56\x69\x65\x77\x69\x6e\
\x67\x20\x43\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x20\x69\x6e\x20\x49\
\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x2c\x52\x65\x66\x65\x72\x65\x6e\x63\x65\
\x20\x56\x69\x65\x77\x69\x6e\x67\x20\x43\x6f\x6e\x64\x69\x74\x69\
\x6f\x6e\x20\x69\x6e\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\
\x2e\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x76\x69\x65\x77\
\x00\x00\x00\x00\x00\x13\xa4\xfe\x00\x14\x5f\x2e\x00\x10\xcf\x14\
\x00\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\x5c\x9e\x00\x00\x00\x01\
\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x4c\x09\x56\x00\x50\x00\x00\
\x00\x57\x1f\xe7\x6d\x65\x61\x73\x00\x00\x00\x00\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x02\x8f\x00\x00\x00\x02\x73\x69\x67\x20\x00\x00\x00\x00\
\x43\x52\x54\x20\x63\x75\x72\x76\x00\x00\x00\x00\x00\x00\x04\x00\
\x00\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\x00\x19\x00\x1e\x00\x23\
\x00\x28\x00\x2d\x00\x32\x00\x37\x00\x3b\x00\x40\x00\x45\x00\x4a\
\x00\x4f\x00\x54\x00\x59\x00\x5e\x00\x63\x00\x68\x00\x6d\x00\x72\
\x00\x77\x00\x7c\x00\x81\x00\x86\x00\x8b\x00\x90\x00\x95\x00\x9a\
\x00\x9f\x00\xa4\x00\xa9\x00\xae\x00\xb2\x00\xb7\x00\xbc\x00\xc1\
\x00\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb\x00\xe0\x00\xe5\x00\xeb\
\x00\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\x01\x0d\x01\x13\x01\x19\
\x01\x1f\x01\x25\x01\x2b\x01\x32\x01\x38\x01\x3e\x01\x45\x01\x4c\
\x01\x52\x01\x59\x01\x60\x01\x67\x01\x6e\x01\x75\x01\x7c\x01\x83\
\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\x01\xb1\x01\xb9\x01\xc1\
\x01\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\x01\xf2\x01\xfa\x02\x03\
\x02\x0c\x02\x14\x02\x1d\x02\x26\x02\x2f\x02\x38\x02\x41\x02\x4b\
\x02\x54\x02\x5d\x02\x67\x02\x71\x02\x7a\x02\x84\x02\x8e\x02\x98\
\x02\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\x02\xd5\x02\xe0\x02\xeb\
\x02\xf5\x03\x00\x03\x0b\x03\x16\x03\x21\x03\x2d\x03\x38\x03\x43\
\x03\x4f\x03\x5a\x03\x66\x03\x72\x03\x7e\x03\x8a\x03\x96\x03\xa2\
\x03\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\x03\xec\x03\xf9\x04\x06\
\x04\x13\x04\x20\x04\x2d\x04\x3b\x04\x48\x04\x55\x04\x63\x04\x71\
\x04\x7e\x04\x8c\x04\x9a\x04\xa8\x04\xb6\x04\xc4\x04\xd3\x04\xe1\
\x04\xf0\x04\xfe\x05\x0d\x05\x1c\x05\x2b\x05\x3a\x05\x49\x05\x58\
\x05\x67\x05\x77\x05\x86\x05\x96\x05\xa6\x05\xb5\x05\xc5\x05\xd5\
\x05\xe5\x05\xf6\x06\x06\x06\x16\x06\x27\x06\x37\x06\x48\x06\x59\
\x06\x6a\x06\x7b\x06\x8c\x06\x9d\x06\xaf\x06\xc0\x06\xd1\x06\xe3\
\x06\xf5\x07\x07\x07\x19\x07\x2b\x07\x3d\x07\x4f\x07\x61\x07\x74\
\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\x07\xe5\x07\xf8\x08\x0b\
\x08\x1f\x08\x32\x08\x46\x08\x5a\x08\x6e\x08\x82\x08\x96\x08\xaa\
\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\x09\x25\x09\x3a\x09\x4f\
\x09\x64\x09\x79\x09\x8f\x09\xa4\x09\xba\x09\xcf\x09\xe5\x09\xfb\
\x0a\x11\x0a\x27\x0a\x3d\x0a\x54\x0a\x6a\x0a\x81\x0a\x98\x0a\xae\
\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\x0b\x39\x0b\x51\x0b\x69\
\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\x0b\xf9\x0c\x12\x0c\x2a\
\x0c\x43\x0c\x5c\x0c\x75\x0c\x8e\x0c\xa7\x0c\xc0\x0c\xd9\x0c\xf3\
\x0d\x0d\x0d\x26\x0d\x40\x0d\x5a\x0d\x74\x0d\x8e\x0d\xa9\x0d\xc3\
\x0d\xde\x0d\xf8\x0e\x13\x0e\x2e\x0e\x49\x0e\x64\x0e\x7f\x0e\x9b\
\x0e\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f\x25\x0f\x41\x0f\x5e\x0f\x7a\
\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\x10\x26\x10\x43\x10\x61\
\x10\x7e\x10\x9b\x10\xb9\x10\xd7\x10\xf5\x11\x13\x11\x31\x11\x4f\
\x11\x6d\x11\x8c\x11\xaa\x11\xc9\x11\xe8\x12\x07\x12\x26\x12\x45\
\x12\x64\x12\x84\x12\xa3\x12\xc3\x12\xe3\x13\x03\x13\x23\x13\x43\
\x13\x63\x13\x83\x13\xa4\x13\xc5\x13\xe5\x14\x06\x14\x27\x14\x49\
\x14\x6a\x14\x8b\x14\xad\x14\xce\x14\xf0\x15\x12\x15\x34\x15\x56\
\x15\x78\x15\x9b\x15\xbd\x15\xe0\x16\x03\x16\x26\x16\x49\x16\x6c\
\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\x17\x41\x17\x65\x17\x89\
\x17\xae\x17\xd2\x17\xf7\x18\x1b\x18\x40\x18\x65\x18\x8a\x18\xaf\
\x18\xd5\x18\xfa\x19\x20\x19\x45\x19\x6b\x19\x91\x19\xb7\x19\xdd\
\x1a\x04\x1a\x2a\x1a\x51\x1a\x77\x1a\x9e\x1a\xc5\x1a\xec\x1b\x14\
\x1b\x3b\x1b\x63\x1b\x8a\x1b\xb2\x1b\xda\x1c\x02\x1c\x2a\x1c\x52\
\x1c\x7b\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\x1d\x47\x1d\x70\x1d\x99\
\x1d\xc3\x1d\xec\x1e\x16\x1e\x40\x1e\x6a\x1e\x94\x1e\xbe\x1e\xe9\
\x1f\x13\x1f\x3e\x1f\x69\x1f\x94\x1f\xbf\x1f\xea\x20\x15\x20\x41\
\x20\x6c\x20\x98\x20\xc4\x20\xf0\x21\x1c\x21\x48\x21\x75\x21\xa1\
\x21\xce\x21\xfb\x22\x27\x22\x55\x22\x82\x22\xaf\x22\xdd\x23\x0a\
\x23\x38\x23\x66\x23\x94\x23\xc2\x23\xf0\x24\x1f\x24\x4d\x24\x7c\
\x24\xab\x24\xda\x25\x09\x25\x38\x25\x68\x25\x97\x25\xc7\x25\xf7\
\x26\x27\x26\x57\x26\x87\x26\xb7\x26\xe8\x27\x18\x27\x49\x27\x7a\
\x27\xab\x27\xdc\x28\x0d\x28\x3f\x28\x71\x28\xa2\x28\xd4\x29\x06\
\x29\x38\x29\x6b\x29\x9d\x29\xd0\x2a\x02\x2a\x35\x2a\x68\x2a\x9b\
\x2a\xcf\x2b\x02\x2b\x36\x2b\x69\x2b\x9d\x2b\xd1\x2c\x05\x2c\x39\
\x2c\x6e\x2c\xa2\x2c\xd7\x2d\x0c\x2d\x41\x2d\x76\x2d\xab\x2d\xe1\
\x2e\x16\x2e\x4c\x2e\x82\x2e\xb7\x2e\xee\x2f\x24\x2f\x5a\x2f\x91\
\x2f\xc7\x2f\xfe\x30\x35\x30\x6c\x30\xa4\x30\xdb\x31\x12\x31\x4a\
\x31\x82\x31\xba\x31\xf2\x32\x2a\x32\x63\x32\x9b\x32\xd4\x33\x0d\
\x33\x46\x33\x7f\x33\xb8\x33\xf1\x34\x2b\x34\x65\x34\x9e\x34\xd8\
\x35\x13\x35\x4d\x35\x87\x35\xc2\x35\xfd\x36\x37\x36\x72\x36\xae\
\x36\xe9\x37\x24\x37\x60\x37\x9c\x37\xd7\x38\x14\x38\x50\x38\x8c\
\x38\xc8\x39\x05\x39\x42\x39\x7f\x39\xbc\x39\xf9\x3a\x36\x3a\x74\
\x3a\xb2\x3a\xef\x3b\x2d\x3b\x6b\x3b\xaa\x3b\xe8\x3c\x27\x3c\x65\
\x3c\xa4\x3c\xe3\x3d\x22\x3d\x61\x3d\xa1\x3d\xe0\x3e\x20\x3e\x60\
\x3e\xa0\x3e\xe0\x3f\x21\x3f\x61\x3f\xa2\x3f\xe2\x40\x23\x40\x64\
\x40\xa6\x40\xe7\x41\x29\x41\x6a\x41\xac\x41\xee\x42\x30\x42\x72\
\x42\xb5\x42\xf7\x43\x3a\x43\x7d\x43\xc0\x44\x03\x44\x47\x44\x8a\
\x44\xce\x45\x12\x45\x55\x45\x9a\x45\xde\x46\x22\x46\x67\x46\xab\
\x46\xf0\x47\x35\x47\x7b\x47\xc0\x48\x05\x48\x4b\x48\x91\x48\xd7\
\x49\x1d\x49\x63\x49\xa9\x49\xf0\x4a\x37\x4a\x7d\x4a\xc4\x4b\x0c\
\x4b\x53\x4b\x9a\x4b\xe2\x4c\x2a\x4c\x72\x4c\xba\x4d\x02\x4d\x4a\
\x4d\x93\x4d\xdc\x4e\x25\x4e\x6e\x4e\xb7\x4f\x00\x4f\x49\x4f\x93\
\x4f\xdd\x50\x27\x50\x71\x50\xbb\x51\x06\x51\x50\x51\x9b\x51\xe6\
\x52\x31\x52\x7c\x52\xc7\x53\x13\x53\x5f\x53\xaa\x53\xf6\x54\x42\
\x54\x8f\x54\xdb\x55\x28\x55\x75\x55\xc2\x56\x0f\x56\x5c\x56\xa9\
\x56\xf7\x57\x44\x57\x92\x57\xe0\x58\x2f\x58\x7d\x58\xcb\x59\x1a\
\x59\x69\x59\xb8\x5a\x07\x5a\x56\x5a\xa6\x5a\xf5\x5b\x45\x5b\x95\
\x5b\xe5\x5c\x35\x5c\x86\x5c\xd6\x5d\x27\x5d\x78\x5d\xc9\x5e\x1a\
\x5e\x6c\x5e\xbd\x5f\x0f\x5f\x61\x5f\xb3\x60\x05\x60\x57\x60\xaa\
\x60\xfc\x61\x4f\x61\xa2\x61\xf5\x62\x49\x62\x9c\x62\xf0\x63\x43\
\x63\x97\x63\xeb\x64\x40\x64\x94\x64\xe9\x65\x3d\x65\x92\x65\xe7\
\x66\x3d\x66\x92\x66\xe8\x67\x3d\x67\x93\x67\xe9\x68\x3f\x68\x96\
\x68\xec\x69\x43\x69\x9a\x69\xf1\x6a\x48\x6a\x9f\x6a\xf7\x6b\x4f\
\x6b\xa7\x6b\xff\x6c\x57\x6c\xaf\x6d\x08\x6d\x60\x6d\xb9\x6e\x12\
\x6e\x6b\x6e\xc4\x6f\x1e\x6f\x78\x6f\xd1\x70\x2b\x70\x86\x70\xe0\
\x71\x3a\x71\x95\x71\xf0\x72\x4b\x72\xa6\x73\x01\x73\x5d\x73\xb8\
\x74\x14\x74\x70\x74\xcc\x75\x28\x75\x85\x75\xe1\x76\x3e\x76\x9b\
\x76\xf8\x77\x56\x77\xb3\x78\x11\x78\x6e\x78\xcc\x79\x2a\x79\x89\
\x79\xe7\x7a\x46\x7a\xa5\x7b\x04\x7b\x63\x7b\xc2\x7c\x21\x7c\x81\
\x7c\xe1\x7d\x41\x7d\xa1\x7e\x01\x7e\x62\x7e\xc2\x7f\x23\x7f\x84\
\x7f\xe5\x80\x47\x80\xa8\x81\x0a\x81\x6b\x81\xcd\x82\x30\x82\x92\
\x82\xf4\x83\x57\x83\xba\x84\x1d\x84\x80\x84\xe3\x85\x47\x85\xab\
\x86\x0e\x86\x72\x86\xd7\x87\x3b\x87\x9f\x88\x04\x88\x69\x88\xce\
\x89\x33\x89\x99\x89\xfe\x8a\x64\x8a\xca\x8b\x30\x8b\x96\x8b\xfc\
\x8c\x63\x8c\xca\x8d\x31\x8d\x98\x8d\xff\x8e\x66\x8e\xce\x8f\x36\
\x8f\x9e\x90\x06\x90\x6e\x90\xd6\x91\x3f\x91\xa8\x92\x11\x92\x7a\
\x92\xe3\x93\x4d\x93\xb6\x94\x20\x94\x8a\x94\xf4\x95\x5f\x95\xc9\
\x96\x34\x96\x9f\x97\x0a\x97\x75\x97\xe0\x98\x4c\x98\xb8\x99\x24\
\x99\x90\x99\xfc\x9a\x68\x9a\xd5\x9b\x42\x9b\xaf\x9c\x1c\x9c\x89\
\x9c\xf7\x9d\x64\x9d\xd2\x9e\x40\x9e\xae\x9f\x1d\x9f\x8b\x9f\xfa\
\xa0\x69\xa0\xd8\xa1\x47\xa1\xb6\xa2\x26\xa2\x96\xa3\x06\xa3\x76\
\xa3\xe6\xa4\x56\xa4\xc7\xa5\x38\xa5\xa9\xa6\x1a\xa6\x8b\xa6\xfd\
\xa7\x6e\xa7\xe0\xa8\x52\xa8\xc4\xa9\x37\xa9\xa9\xaa\x1c\xaa\x8f\
\xab\x02\xab\x75\xab\xe9\xac\x5c\xac\xd0\xad\x44\xad\xb8\xae\x2d\
\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0\x75\xb0\xea\xb1\x60\xb1\xd6\
\xb2\x4b\xb2\xc2\xb3\x38\xb3\xae\xb4\x25\xb4\x9c\xb5\x13\xb5\x8a\
\xb6\x01\xb6\x79\xb6\xf0\xb7\x68\xb7\xe0\xb8\x59\xb8\xd1\xb9\x4a\
\xb9\xc2\xba\x3b\xba\xb5\xbb\x2e\xbb\xa7\xbc\x21\xbc\x9b\xbd\x15\
\xbd\x8f\xbe\x0a\xbe\x84\xbe\xff\xbf\x7a\xbf\xf5\xc0\x70\xc0\xec\
\xc1\x67\xc1\xe3\xc2\x5f\xc2\xdb\xc3\x58\xc3\xd4\xc4\x51\xc4\xce\
\xc5\x4b\xc5\xc8\xc6\x46\xc6\xc3\xc7\x41\xc7\xbf\xc8\x3d\xc8\xbc\
\xc9\x3a\xc9\xb9\xca\x38\xca\xb7\xcb\x36\xcb\xb6\xcc\x35\xcc\xb5\
\xcd\x35\xcd\xb5\xce\x36\xce\xb6\xcf\x37\xcf\xb8\xd0\x39\xd0\xba\
\xd1\x3c\xd1\xbe\xd2\x3f\xd2\xc1\xd3\x44\xd3\xc6\xd4\x49\xd4\xcb\
\xd5\x4e\xd5\xd1\xd6\x55\xd6\xd8\xd7\x5c\xd7\xe0\xd8\x64\xd8\xe8\
\xd9\x6c\xd9\xf1\xda\x76\xda\xfb\xdb\x80\xdc\x05\xdc\x8a\xdd\x10\
\xdd\x96\xde\x1c\xde\xa2\xdf\x29\xdf\xaf\xe0\x36\xe0\xbd\xe1\x44\
\xe1\xcc\xe2\x53\xe2\xdb\xe3\x63\xe3\xeb\xe4\x73\xe4\xfc\xe5\x84\
\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe8\x32\xe8\xbc\xe9\x46\xe9\xd0\
\xea\x5b\xea\xe5\xeb\x70\xeb\xfb\xec\x86\xed\x11\xed\x9c\xee\x28\
\xee\xb4\xef\x40\xef\xcc\xf0\x58\xf0\xe5\xf1\x72\xf1\xff\xf2\x8c\
\xf3\x19\xf3\xa7\xf4\x34\xf4\xc2\xf5\x50\xf5\xde\xf6\x6d\xf6\xfb\
\xf7\x8a\xf8\x19\xf8\xa8\xf9\x38\xf9\xc7\xfa\x57\xfa\xe7\xfb\x77\
\xfc\x07\xfc\x98\xfd\x29\xfd\xba\xfe\x4b\xfe\xdc\xff\x6d\xff\xff\
\xff\xee\x00\x0e\x41\x64\x6f\x62\x65\x00\x64\x40\x00\x00\x00\x01\
\xff\xdb\x00\x84\x00\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\
\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\
\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\
\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\x03\x03\x03\x03\x03\
\x03\x03\x03\x03\x03\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\
\x02\x02\x01\x02\x02\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\
\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\
\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\
\x03\x03\x03\x03\x03\x03\xff\xc0\x00\x11\x08\x01\xfc\x01\x86\x03\
\x01\x11\x00\x02\x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x31\xff\
\xc4\x01\xa2\x00\x00\x00\x06\x02\x03\x01\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x07\x08\x06\x05\x04\x09\x03\x0a\x02\x01\x00\x0b\
\x01\x00\x00\x06\x03\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x06\x05\x04\x03\x07\x02\x08\x01\x09\x00\x0a\x0b\x10\x00\x02\
\x01\x03\x04\x01\x03\x03\x02\x03\x03\x03\x02\x06\x09\x75\x01\x02\
\x03\x04\x11\x05\x12\x06\x21\x07\x13\x22\x00\x08\x31\x14\x41\x32\
\x23\x15\x09\x51\x42\x16\x61\x24\x33\x17\x52\x71\x81\x18\x62\x91\
\x25\x43\xa1\xb1\xf0\x26\x34\x72\x0a\x19\xc1\xd1\x35\x27\xe1\x53\
\x36\x82\xf1\x92\xa2\x44\x54\x73\x45\x46\x37\x47\x63\x28\x55\x56\
\x57\x1a\xb2\xc2\xd2\xe2\xf2\x64\x83\x74\x93\x84\x65\xa3\xb3\xc3\
\xd3\xe3\x29\x38\x66\xf3\x75\x2a\x39\x3a\x48\x49\x4a\x58\x59\x5a\
\x67\x68\x69\x6a\x76\x77\x78\x79\x7a\x85\x86\x87\x88\x89\x8a\x94\
\x95\x96\x97\x98\x99\x9a\xa4\xa5\xa6\xa7\xa8\xa9\xaa\xb4\xb5\xb6\
\xb7\xb8\xb9\xba\xc4\xc5\xc6\xc7\xc8\xc9\xca\xd4\xd5\xd6\xd7\xd8\
\xd9\xda\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf4\xf5\xf6\xf7\xf8\xf9\xfa\
\x11\x00\x02\x01\x03\x02\x04\x04\x03\x05\x04\x04\x04\x06\x06\x05\
\x6d\x01\x02\x03\x11\x04\x21\x12\x05\x31\x06\x00\x22\x13\x41\x51\
\x07\x32\x61\x14\x71\x08\x42\x81\x23\x91\x15\x52\xa1\x62\x16\x33\
\x09\xb1\x24\xc1\xd1\x43\x72\xf0\x17\xe1\x82\x34\x25\x92\x53\x18\
\x63\x44\xf1\xa2\xb2\x26\x35\x19\x54\x36\x45\x64\x27\x0a\x73\x83\
\x93\x46\x74\xc2\xd2\xe2\xf2\x55\x65\x75\x56\x37\x84\x85\xa3\xb3\
\xc3\xd3\xe3\xf3\x29\x1a\x94\xa4\xb4\xc4\xd4\xe4\xf4\x95\xa5\xb5\
\xc5\xd5\xe5\xf5\x28\x47\x57\x66\x38\x76\x86\x96\xa6\xb6\xc6\xd6\
\xe6\xf6\x67\x77\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\x48\x58\x68\x78\
\x88\x98\xa8\xb8\xc8\xd8\xe8\xf8\x39\x49\x59\x69\x79\x89\x99\xa9\
\xb9\xc9\xd9\xe9\xf9\x2a\x3a\x4a\x5a\x6a\x7a\x8a\x9a\xaa\xba\xca\
\xda\xea\xfa\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00\x3f\
\x00\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5f\xff\xd0\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd1\xdf\xe3\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd2\xdf\xe3\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\
\xd3\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5f\xff\xd4\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x48\
\x0e\xcb\xed\x4e\xb9\xe9\xbd\xa7\x90\xdf\x5d\xa5\xbd\x36\xf6\xc4\
\xda\x58\xb4\x2d\x57\x9b\xdc\x79\x18\x31\xf4\xba\xf4\x96\x4a\x6a\
\x55\x91\xbc\xf5\xf5\xd3\x69\x22\x3a\x78\x12\x49\xe5\x3c\x22\x31\
\xe3\xda\x0d\xcb\x74\xdb\xb6\x7b\x59\x2f\xb7\x4b\xc8\xe0\xb4\x5e\
\x2c\xe4\x01\xf6\x0f\x32\x4f\x90\x15\x27\xc8\x74\x49\xcc\x3c\xc9\
\xb0\x72\xa6\xd9\x3e\xf3\xcc\x9b\xbc\x16\x5b\x64\x63\xba\x49\x58\
\x28\xfb\x05\x72\xcc\x7c\x95\x41\x63\xe4\x0f\x54\x57\xdf\x7f\xcf\
\x6b\x6e\xe3\x6b\x2b\xf0\x9f\x1a\xba\xa2\xa7\x78\x24\x2f\x24\x14\
\xfb\xff\x00\xb3\x27\xab\xdb\x58\x1a\xa6\x03\x48\xac\xc5\xed\x1a\
\x15\x3b\x92\xae\x93\x57\xaa\x36\xab\x92\x81\xdd\x6c\x4c\x60\x1f\
\x70\x8e\xfb\xef\x85\xbc\x6f\x24\x3c\xb9\xb5\x19\x80\xc0\x96\x62\
\x51\x4f\xcd\x63\x1d\xe4\x7a\x6a\x2b\xf6\x75\x86\x7c\xed\xf7\xce\
\xb0\xb7\x96\x7b\x3f\x6f\xb9\x65\xae\xd4\x12\x05\xcd\xd9\x68\xa3\
\x6f\xe9\x24\x0b\xfa\xac\xbe\x85\xcc\x64\xff\x00\x08\xea\xb4\xb7\
\x9f\xf3\x69\xf9\xe5\xbc\xa6\xa8\x68\xbb\x6f\x0f\xb1\xa8\xe7\x62\
\x63\xc6\xec\x3d\x89\xb6\xa8\x16\x99\x4d\xed\x1c\x79\x3c\xed\x2e\
\xe0\xcb\x38\x00\xfe\xa3\x28\x6e\x3d\xc7\x17\x9e\xea\xf3\xcd\xe3\
\x35\x37\x64\x81\x0f\x94\x51\x20\xa7\xe6\xc1\x9b\xf9\xf5\x8f\x9b\
\xb7\xde\x77\xde\x9d\xd9\xe4\x2b\xcd\x11\x59\xc2\x78\x25\xb5\xb4\
\x4b\x4f\x90\x79\x04\xaf\xff\x00\x1a\xe8\x29\x83\xf9\x86\xfc\xe5\
\xa6\xa8\x15\x29\xf2\x8b\xb3\xde\x40\xc5\xbc\x75\x12\xed\xca\x9a\
\x6b\x93\xa8\x83\x4b\x36\xdf\x78\x0a\xdf\xe8\x08\xb0\x1c\x7b\x2b\
\x5e\x7f\xe7\x65\x6d\x43\x99\xae\x6b\xf3\xd0\x47\xec\xd3\xd0\x69\
\x3d\xf5\xf7\x8d\x1c\x48\xbe\xe3\x6e\x25\xbe\x66\x22\x3f\x61\x8a\
\x9d\x18\x1d\x81\xfc\xe3\xbe\x71\xec\xba\x98\x1b\x3d\xba\xf6\x2f\
\x69\x63\x63\x64\xf2\xe3\xf7\xa6\xc8\xc7\xe3\x2a\xa5\x8d\x7f\x52\
\xae\x67\x66\xb6\x0a\x74\x91\xc7\xf6\x9a\x19\x2c\x7f\x07\xd9\xf5\
\x87\xbb\xdc\xeb\x66\xcb\xe3\xdd\x41\x75\x18\xf2\x92\x30\x0f\xfb\
\xd4\x7a\x4f\xf2\x3d\x0d\xf6\x3f\xbd\x6f\xbc\x7b\x44\x88\x6f\x77\
\x3b\x2d\xca\xdc\x71\x59\xed\xd5\x18\x8f\xf9\xa9\x07\x86\x6b\xf3\
\x2a\x7a\xb6\x1f\x8e\x5f\xce\xdf\xa2\xfb\x1a\xb3\x1f\xb6\x7b\xe3\
\x6c\xe4\xba\x23\x70\x56\x3c\x34\xd1\x6e\x77\xab\x3b\x9f\xac\xaa\
\x2a\xa5\x66\x50\x2a\xf3\xb4\xd4\xd4\xf9\x6d\xb0\x8e\xda\x40\x7a\
\xea\x5f\xb5\x5b\xdd\xea\x16\xde\xe5\x3e\x5e\xf7\x9f\x64\xdc\x1e\
\x3b\x6d\xf2\xd9\xac\x6e\x09\xa6\xba\xeb\x84\x9f\x9b\x00\x19\x3e\
\xd6\x5d\x3e\xac\x3a\xc9\xae\x42\xfb\xdf\xf2\x6e\xfd\x2c\x1b\x7f\
\x3a\x6d\xd2\x6c\xb7\xce\x40\x13\x6a\xf1\xad\x09\x3f\xc5\x20\x01\
\xe1\xf2\xcc\x89\xa0\x79\xc8\x3a\xba\x2c\x3e\x63\x11\xb8\x71\x74\
\x19\xcc\x0e\x53\x1f\x9a\xc2\xe5\x69\x62\xad\xc6\x65\xb1\x35\x94\
\xf9\x0c\x6e\x42\x8e\x75\x0f\x05\x55\x15\x75\x24\x92\xd3\x55\x53\
\xca\x86\xea\xe8\xcc\xa4\x7d\x0f\xb9\x8e\x19\xa2\xb8\x8a\x39\xe0\
\x95\x5e\x17\x15\x56\x52\x08\x20\xf0\x20\x8c\x11\xd6\x5b\x5a\xdd\
\xda\xdf\x5b\x41\x79\x65\x73\x1c\xd6\x92\xa8\x64\x74\x60\xc8\xca\
\x78\x32\xb2\x92\x08\x3e\x44\x1a\x74\xe5\xed\xce\x94\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xff\xd5\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x15\x5f\x98\x1f\x2d\
\xba\xeb\xe1\xd7\x53\xd6\x76\x3e\xf8\x67\xca\x65\xeb\xe6\x93\x0f\
\xb0\x76\x3d\x04\xf1\x45\x9c\xdf\x3b\xa5\xa0\x69\xa0\xc5\xd0\x6b\
\x0f\xf6\xb8\xfa\x44\x1e\x6a\xfa\xd7\x53\x0d\x15\x30\x2c\xd7\x66\
\x8d\x1c\x2f\xcd\xbc\xd7\xb7\xf2\x8e\xd4\xfb\x8d\xe9\xd5\x2b\x1d\
\x31\x46\x0f\x74\x8f\x4a\x85\x1e\x80\x71\x66\xe0\xa3\x3c\x68\x0c\
\x6b\xee\xa7\xba\x1b\x0f\xb5\x3c\xb1\x2e\xff\x00\xbc\x9f\x12\xe9\
\xc9\x8e\xda\xdd\x48\x12\x5c\x4d\x4a\x84\x5a\xfc\x2a\x3e\x29\x24\
\x23\x4c\x6b\x93\x52\x54\x1d\x31\xfe\x48\x7c\x9a\xee\x0f\x95\xdb\
\xfe\x6e\xc1\xee\x2d\xc4\xd9\x29\xe1\x92\x61\xb6\x36\x8e\x39\xa7\
\xa7\xd9\x7b\x0f\x1d\x23\x1f\x1e\x2f\x6b\xe1\xe4\x91\x91\x24\x58\
\xec\x27\xaf\x98\x3d\x75\x63\x82\xd2\x49\x6b\x22\xe1\xef\x31\x73\
\x26\xef\xcd\x37\xe6\xff\x00\x77\xb8\xd4\xc3\xe0\x8c\x54\x47\x10\
\xf4\x45\xff\x00\x0b\x1e\xe6\xe2\x4f\x97\x5c\x99\xe7\xff\x00\x70\
\xf9\xab\xdc\xcd\xed\xf7\xce\x6a\xbe\x32\x38\x27\xc1\x81\x49\x16\
\xf6\xca\x78\x24\x29\x5e\x34\xf8\xa4\x6a\xc8\xe7\x2c\xdc\x00\x00\
\xfd\x91\x74\x09\xeb\xde\xfd\xd6\xba\xf7\xbf\x75\xee\xbd\xef\xdd\
\x7b\xaf\x7d\x6e\x0f\x20\x82\x08\x3f\x42\x08\xb1\x04\x7e\x41\x1e\
\xfd\xd7\xba\x3e\x1f\x09\x3f\x98\x2f\x68\xfc\x2b\xdc\x54\x74\x10\
\xd4\xd7\x6f\x3e\x8c\xca\x64\xe3\x3b\xaf\xaa\x6b\x2b\x1a\x45\xa3\
\xfb\x99\x15\x2a\x73\x9d\x6c\xd5\x2e\xc9\x83\xdc\xe8\xa7\x59\xa3\
\x8f\x4d\x1e\x4b\x48\x49\x11\x24\xd1\x32\x8e\x79\x33\x9f\xb7\x3e\
\x4d\xb8\x48\xc3\x34\xdb\x23\x37\x7c\x04\xf0\xaf\x16\x86\xbf\x0b\
\xff\x00\x44\x76\xbf\x02\x01\xa1\x13\x57\xb4\x1e\xf9\x73\x1f\xb4\
\x77\xf0\xc0\xb2\x3d\xdf\x26\xc9\x20\xf1\xac\xd9\xbe\x1a\x9c\xc9\
\x6b\x53\x48\xe5\x1c\x74\x0a\x47\x2d\x28\xc0\x35\x18\x6e\x83\xb0\
\xf7\xae\x0b\xb1\xf6\x5e\xd7\xdf\xbb\x65\xab\xdb\x6f\xee\xfc\x1e\
\x3b\x70\x61\xce\x57\x17\x5f\x84\xc9\x8a\x0c\x9d\x34\x75\x54\xe9\
\x90\xc4\x65\x20\xa5\xc8\x63\xab\x11\x24\xd3\x24\x33\x46\xae\x8e\
\x08\x23\xde\x62\x58\xde\x41\xb8\xd9\xda\xdf\xdb\x6a\xfa\x79\x90\
\x3a\xea\x52\xad\x46\x15\x15\x56\x00\x83\xea\x08\xa8\xeb\xad\x5b\
\x36\xed\x67\xbf\x6d\x3b\x76\xf5\xb7\x97\x36\x37\x50\xac\xa9\xad\
\x1a\x37\xd2\xe2\xa3\x52\x38\x0c\xad\x9c\xab\x00\x41\xe9\x5b\xed\
\x57\x46\x7d\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xff\xd6\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\x8e\x69\xa2\xa7\x8a\x5a\x89\xe5\
\x8e\x08\x20\x8d\xe6\x9a\x69\x9d\x63\x8a\x18\xa2\x52\xf2\x4b\x2c\
\x8e\x55\x23\x8e\x34\x52\x59\x89\x00\x01\x73\xef\x44\x85\x05\x98\
\xd1\x47\x55\x77\x58\xd5\x9d\xd8\x04\x51\x52\x4e\x00\x03\x89\x27\
\xc8\x0e\xb4\x73\xf9\xed\xf2\x9b\x2d\xf2\xd3\xe4\x66\xec\xdf\x0b\
\x5b\x33\x75\xe6\xd5\xaa\xaf\xd9\x3d\x47\x89\xd6\xff\x00\x6b\x47\
\xb3\xf1\x75\xad\x0c\xfb\x80\x40\x49\x54\xc9\xef\x6c\x85\x39\xae\
\x9d\xff\x00\x57\x80\xc1\x15\xf4\xc4\x07\xbc\x29\xe7\xae\x67\x9b\
\x9a\xb9\x86\xee\xf7\x59\xfd\xdf\x11\x31\xc0\xbe\x42\x35\x3f\x1d\
\x3f\x8a\x42\x35\x1f\x96\x91\xe5\xd7\x1d\x3d\xeb\xf7\x26\xe7\xdc\
\xfe\x7d\xdc\xf7\x91\x31\xfd\xc3\x6c\xcd\x6f\x64\x95\x3a\x56\x04\
\x6a\x19\x69\xfc\x77\x0c\x3c\x46\x3c\x74\xe8\x5e\x0a\x3a\x26\x3e\
\xc1\xfd\x44\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xb5\xd7\xbd\xfb\xaf\
\x75\x96\x9a\x0a\x9a\xea\xea\x3c\x56\x3e\x92\xb3\x25\x95\xc9\x4c\
\x94\xd8\xec\x4e\x32\x92\xa7\x23\x95\xc8\xd4\xc8\x74\xc7\x4f\x41\
\x8d\xa2\x8a\x7a\xda\xc9\xa4\x3c\x05\x8d\x18\x9f\x7b\x55\x67\x74\
\x8a\x35\x2d\x2b\x1a\x05\x00\x96\x27\xd0\x01\x52\x7f\x21\xd5\xe3\
\x49\x26\x9a\x2b\x68\x22\x79\x2e\x64\x34\x44\x45\x2e\xec\x4f\x00\
\xa8\xa0\xb3\x13\xe8\x01\xea\xd6\xbe\x37\x7f\x27\xaf\x94\x1d\xd8\
\xd8\xdc\xef\x63\xc5\x4d\xf1\xf3\x61\x55\x18\x67\x96\xa3\x77\x51\
\xff\x00\x13\xec\x6a\xfa\x27\x20\xb7\xf0\xbd\x8d\x4f\x51\x0a\xe2\
\x66\x78\xcd\xd5\xb2\xd5\x14\xcc\xb7\x07\xc2\xdf\x4f\x72\x97\x2e\
\xfb\x49\xcc\xdb\xc9\x8e\x7d\xc4\x0b\x0b\x13\xe7\x20\xac\xa4\x7f\
\x46\x20\x7b\x7f\xdb\x91\xf6\x75\x92\xdc\x81\xf7\x56\xf7\x1b\x9b\
\xcc\x17\xbb\xfa\xae\xc7\xb2\xb5\x09\x33\xae\xbb\xa6\x5f\xe8\x5b\
\x82\x34\x1a\x79\xcc\xc8\x47\xf0\x1e\xae\x02\x8b\xe3\xff\x00\xf2\
\xe1\xfe\x58\x1b\x62\x87\xb0\xfb\x0f\xf8\x5e\x57\x7f\xc7\x03\x3e\
\x1b\x73\x6f\xef\x06\xfa\xed\x5d\xc7\x5f\x1c\x7a\x64\x8b\x60\x6d\
\x08\xa1\x14\xf8\xc2\xf3\x29\x01\xe8\x28\xe9\xa2\x83\x55\xa6\xa8\
\x0b\xea\xf7\x2d\x26\xc3\xed\xe7\xb6\x96\xc9\x7f\xb8\x69\x7b\xfa\
\x76\xbc\xb4\x96\x77\x3f\xf0\xa8\xe9\x45\xcf\x9a\xa8\x03\xf1\x37\
\x59\x4f\x0f\x23\xfb\x07\xf7\x75\xdb\xa1\xdf\x77\xdf\x0e\x5d\xec\
\x2f\xe9\xcb\x73\x4b\x8b\xc9\x58\x0c\x8b\x68\x00\xa2\x54\xf9\xc7\
\x1a\x85\xaf\x7c\x94\xcf\x41\xb7\xc5\x5f\xe6\xf9\x27\xc8\xcf\x97\
\x54\x3d\x43\x97\xd8\x38\xee\xbd\xea\xad\xf9\x8a\xc9\x62\x3a\xbe\
\xab\x23\x5c\xd5\x9b\xd2\xa3\x7b\x62\xe3\x97\x2d\x4e\xbb\xae\xa6\
\x19\xbf\x82\x52\xa6\xe6\xc3\xd3\x54\x47\x4b\x45\x4c\xb2\x34\x35\
\x31\x22\x99\xe5\x32\x58\x17\x72\xbf\xbb\x27\x98\x79\xb1\x36\x99\
\xac\x16\xdf\x6b\x9d\x0a\xc2\x49\xac\x86\x45\xee\x1a\xcf\xc2\x35\
\xa8\x21\x55\x6b\x42\x00\xd4\x6b\xd1\x07\xb6\xbf\x7a\x53\xcf\xbe\
\xe8\x43\xca\xd7\x5b\x24\x76\x3c\xb7\x7b\x13\xa5\x99\x76\xd5\x39\
\xb8\x41\xac\x78\xc4\x1f\x0d\x7c\x54\x0e\x12\x34\x07\x4b\x05\x1a\
\xd8\xb6\x2f\x23\xdc\xd7\xd6\x63\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\xd7\xdf\xe3\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x74\x4d\x7f\
\x98\x4f\x62\xd6\x75\x67\xc2\xef\x91\x3b\xbf\x1b\x54\xd4\x79\x58\
\xfa\xeb\x29\x81\xc5\x54\xc6\x74\xc9\x0e\x47\x76\xc9\x4f\xb5\x69\
\xa5\x89\xbe\xa2\x48\x9b\x31\xac\x11\xc8\x2b\xc7\x3e\xc2\x1c\xfd\
\xb8\x3e\xd9\xc9\xdc\xc1\x77\x1b\x52\x5f\xa7\x65\x53\xe8\x64\xa2\
\x0f\xf8\xf7\x51\x3f\xbe\x7b\xf4\xbc\xb7\xed\x27\x3e\x6e\x96\xf2\
\x68\xb9\x16\x0f\x1a\x1f\x30\xd3\xd2\x10\x47\xcc\x78\x95\x1f\x67\
\x5a\x33\xc3\x12\xc1\x0c\x50\xa7\x09\x0c\x51\xc4\xa3\xfa\x2c\x6a\
\x11\x7f\xde\x07\xbc\x26\x03\x48\x03\xd0\x75\xc6\xe4\x50\x88\xa8\
\x38\x00\x07\xec\xe9\x61\xb0\x72\x3b\x2f\x0f\xbf\x36\x46\x57\xb2\
\x70\xf5\x1b\x87\xae\x71\xdb\xbb\x6f\x55\xef\xfc\x1d\x25\x5c\xf4\
\x35\x59\x5d\x9b\x16\x52\x98\xee\x3a\x48\x2b\x29\x48\xa9\xa7\x76\
\xc5\x99\x1a\xf1\x90\xe4\x29\x50\x41\x37\x0a\xec\x64\xb3\x86\xfa\
\xca\x5d\xc6\x13\x26\xde\xb2\xa1\x95\x41\x20\xb4\x7a\x86\xb0\x08\
\xc8\xed\xaf\x0e\x8d\xb6\x4b\x8d\xa2\xd7\x7a\xd9\xee\x79\x82\xd1\
\xa7\xd8\x63\xba\x89\xae\x63\x56\x2a\x5e\x00\xe3\xc5\x50\xc3\x23\
\xb2\xa7\x19\xc5\x05\x2b\xd5\xc8\xfc\xd6\xfe\x52\x79\x9d\xa1\x8d\
\x9b\xbc\xbe\x1d\xad\x67\x63\x75\x16\x5b\x19\x06\xe7\xa8\xeb\x1a\
\x79\xe6\xcb\xee\xfd\xb7\x88\xae\xa4\x8f\x21\x16\x4f\x60\xd6\x3b\
\x49\x51\xbd\x76\xc3\xd2\xca\x25\x4a\x27\x2d\x93\x82\x26\x02\x36\
\xa9\x51\x65\x97\xf9\xcf\xda\xa9\xad\x23\x6d\xef\x94\x41\xb8\xda\
\x5d\x75\x98\x41\xd5\x22\x29\x15\xd5\x11\xe3\x22\x53\x21\x7e\x30\
\x38\x6a\xeb\x2b\xbd\xdd\xfb\xb0\xdd\xed\x76\xed\xce\x3e\xd4\x87\
\xbf\xe5\x69\x63\x12\x9b\x40\x4b\xcf\x12\x32\x86\x0f\x6c\xdc\x6e\
\x21\xd2\x6a\x23\x35\x99\x47\xc2\x64\x1c\x29\x77\x69\x6d\x9d\xcf\
\xbf\xf7\x1d\x1e\xce\xd8\x7b\x63\x71\xef\x4d\xdd\x90\xa8\x34\xb4\
\x9b\x5b\x6b\xe1\x32\x39\x9d\xc1\x2d\x42\xc9\xe2\x92\x29\x31\x54\
\x74\xf2\x55\x52\x18\x24\xf4\xca\xd3\xac\x49\x09\x07\xc8\x56\xc7\
\xdc\x39\x69\x6d\x73\x7f\x70\x96\x76\x36\xd2\x4d\x76\xc6\x81\x11\
\x4b\x3d\x7f\xd2\x81\x51\xf3\xad\x29\xe7\x4e\xb1\x27\x6b\xdb\xb7\
\x1d\xf2\xfe\x2d\xab\x65\xdb\xa7\xbb\xdd\x1d\xb4\xac\x30\xc6\xd2\
\x4a\x4d\x68\x46\x85\x04\xad\x0e\x0e\xaa\x05\xf3\x23\xab\x9d\xf8\
\xdb\xfc\x92\x3b\xaf\x7f\x4b\x8f\xdc\x3f\x22\xb7\x3d\x1f\x4c\xed\
\x57\xf1\x54\x49\xb3\xf6\xec\x94\x3b\x9f\xb2\x6b\xe1\x25\x5b\xed\
\xeb\x2b\x95\xa7\xda\xdb\x5c\xcb\x1f\x04\x83\x90\x9a\x32\x6c\x50\
\x11\xc4\xc5\xcb\xbe\xcc\x6f\x37\xe6\x3b\x8e\x60\xba\x5b\x3b\x5e\
\x3e\x1a\x51\xe6\x3f\x22\x72\x89\xff\x00\x1b\x23\xd3\xac\xb4\xe4\
\x0f\xba\x07\x37\xef\x6d\x05\xf7\x3e\x6e\x29\xb4\xed\x86\x87\xc0\
\x88\xac\xd7\x6c\x3d\x19\xb3\x0c\x35\x1c\x7f\xb5\x61\xfc\x20\xf5\
\x7b\xbd\x41\xf1\x53\xe2\x2f\xc2\x6d\xab\x90\xdd\x1b\x53\x6a\x6c\
\xfd\x89\x06\x1b\x1e\xd3\xee\x5e\xd8\xdf\x59\x1a\x5a\xbd\xca\xd4\
\xb1\xad\xa6\xaa\xcc\xef\x8d\xc5\x2f\x9a\x8e\x19\x2f\x63\x14\x0f\
\x4f\x4e\x49\x01\x63\x17\x03\xdc\xe1\xb4\xf2\xb7\x29\xf2\x65\xac\
\x97\x36\xb6\xb0\xc0\x11\x7b\xe7\x94\x82\xf4\xf5\x69\x1f\x80\xf9\
\x0a\x0f\x41\xd6\x68\x72\xb7\xb6\xbe\xd7\x7b\x43\xb6\xcf\xb8\xed\
\x9b\x65\xa5\x92\x44\x95\x96\xf6\xe1\x83\x4b\x41\xc4\xc9\x71\x29\
\xaa\x83\xe8\xa5\x57\xc8\x2f\x97\x55\x4f\xf2\xf7\xf9\xda\xd0\x52\
\x1c\x96\xc5\xf8\x7b\x8c\x83\x35\x54\x0c\xd4\x95\x9d\xd9\xbb\x71\
\xb3\x2e\x02\x98\xa9\x68\xda\x4d\x89\xb4\xab\x63\xa7\xaa\xcf\xcc\
\x6d\x78\xeb\x72\x02\x0a\x30\x39\x58\x27\x04\x1f\x71\x77\x36\xfb\
\xce\x89\xe2\x58\xf2\x94\x41\xdb\x20\xdc\x48\x0e\x91\xff\x00\x34\
\x90\xd0\xb1\xf4\x67\xa2\xff\x00\x45\xba\xc6\x9f\x74\xfe\xf7\xd0\
\xc5\xf5\x1b\x37\xb5\x76\xe2\x69\x72\xad\xb8\x4e\x87\xc3\x1e\x55\
\xb6\x81\x80\x32\x9f\x49\x25\xd2\x9e\x88\xe3\xad\x7a\x77\xb6\xf7\
\xde\x7d\x97\xba\xb2\x9b\xeb\xb1\x77\x5e\x7b\x7c\x6f\x3c\xd3\x97\
\xc9\xee\x5d\xcd\x91\x9b\x27\x94\xa8\x5b\x96\x4a\x68\xa4\x94\xf8\
\xa8\x71\xf0\x5e\xd1\x53\x53\xa4\x54\xf1\x0e\x15\x07\xb8\x06\xf2\
\xf6\xf3\x71\xba\x96\xfb\x70\xba\x92\x7b\xc7\xf8\x9d\xc9\x2c\x7e\
\x5f\x21\xe8\xa2\x80\x79\x0e\xb0\x5f\x77\xde\x37\x6e\x61\xdc\xee\
\x77\x9d\xfb\x73\x9e\xf3\x76\x98\xf7\xcb\x2b\x17\x73\xf2\x04\xe1\
\x54\x79\x22\x85\x51\xe4\x07\x58\xf6\x6e\xed\xc9\x75\xfe\xf4\xd9\
\x9b\xf7\x0f\x53\x2d\x1e\x57\x63\xef\x0d\xb1\xbb\xb1\xd5\x50\x33\
\x24\xd0\xd5\xed\xdc\xdd\x0e\x56\x36\x8d\x96\xcc\x0b\x8a\x62\x86\
\xdf\x55\x62\x3f\x3e\xf5\x67\x77\x25\x85\xe5\x9d\xf4\x2c\x44\xb0\
\x4c\x92\x03\xf3\x46\x0d\xfe\x4e\xab\xb4\xee\x97\x1b\x1e\xed\xb4\
\xef\x56\xb2\x15\xb9\xb3\xba\x86\x74\x23\x04\x34\x52\x2b\x8a\x7e\
\xca\x7d\x87\xaf\xa1\x4e\x17\x27\x0e\x6f\x0f\x89\xcc\xd3\x02\x29\
\xf2\xf8\xda\x1c\x9d\x38\x24\x12\x21\xaf\xa5\x8a\xaa\x20\x48\xe0\
\x90\x92\x8f\x79\xf7\x0c\xab\x34\x31\x4c\xbf\x0b\xa8\x61\xf6\x11\
\x5e\xbb\x9f\x69\x70\x97\x96\xb6\xd7\x71\xff\x00\x67\x2c\x6a\xe3\
\xec\x60\x18\x7f\x87\xa7\x2f\x6e\x74\xa3\xaf\x7b\xf7\x5e\xeb\xde\
\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\
\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\
\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\
\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xeb\xde\xfd\xd7\xba\xff\xd0\xdf\xe3\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\x5e\x7f\xcd\x5b\x6f\
\xd6\x6e\x2f\x80\xff\x00\x21\x20\xa2\x05\xa5\xc5\xed\xec\x2e\xe2\
\x95\x55\x75\x33\x51\xed\xed\xd7\x82\xcb\x57\x10\x3f\x1e\x3a\x3a\
\x57\x72\x7f\x01\x4f\xb0\x07\xba\x30\x3d\xc7\x22\x73\x02\xa0\xca\
\xc6\xaf\xf9\x23\xab\x1f\xe4\x0f\x50\x5f\xde\x56\xca\x5b\xef\x64\
\xf9\xe9\x21\x15\x68\xe0\x8e\x53\xfe\x96\x29\xa3\x76\xfd\x8a\x09\
\xfc\xba\xd2\xb6\xe0\xf2\x3e\x87\x91\xfe\xb1\xf7\x86\xfd\x72\x37\
\x8e\x7a\xe8\x80\x41\x04\x02\x08\x20\x82\x2e\x08\x22\xc4\x11\xf9\
\x04\x1f\x7e\xeb\x5c\x70\x78\x75\xb7\x0f\xf2\x66\xf9\x1e\x3b\x7b\
\xe3\x29\xea\x8c\xed\x79\xa8\xde\xdf\x1f\x2b\xe0\xda\x0e\xb3\xca\
\x64\xab\xae\xeb\xfc\x92\x4f\x5d\xb0\x72\x44\xc8\xec\xf2\xa5\x1d\
\x1c\x73\xe2\xc9\x02\xcb\xfc\x3d\x6f\xcb\x7b\xca\xef\x67\xf9\x84\
\x6e\xdc\xb7\xfb\xae\x69\x2b\x7b\x60\xc2\x3c\x9c\x98\x8d\x4c\x4d\
\xf9\x0a\xa7\xfb\x4e\xba\x83\xf7\x4d\xe7\xef\xeb\x4f\xb7\x9f\xd5\
\x9b\xd9\xb5\x6e\xfb\x1b\x88\x32\x7b\x9a\xd9\xea\xd6\xcf\x9e\x21\
\x54\x34\x3f\x2f\x08\x7a\xf5\x6b\x78\xad\x9d\xb4\x70\x39\x3c\xa6\
\x6b\x07\xb5\xb6\xe6\x1b\x33\x9b\x73\x26\x6b\x2d\x8a\xc1\xe3\x31\
\xd9\x3c\xbc\x8c\xfe\x52\xf9\x4a\xfa\x3a\x58\x6a\xab\xdc\xc9\xea\
\x26\x57\x73\xab\x9f\xaf\xb9\x46\x2b\x4b\x48\x24\x96\x68\x2d\x63\
\x49\x9f\xe2\x65\x50\x0b\x7f\xa6\x20\x54\xfe\x7d\x64\xbd\xb6\xd5\
\xb5\xd9\x5c\x5c\xde\x59\xed\xb6\xf1\x5d\xcc\x6b\x23\xa4\x68\xae\
\xe7\x8f\x7b\x28\x05\xb3\x9e\xe2\x7a\xad\x9f\x98\x7f\xcd\x6b\xa1\
\x3e\x32\x49\x97\xd9\x5b\x4a\x58\xbb\xa3\xb9\x68\x84\x94\xcf\xb3\
\x76\xb6\x46\x11\xb7\xb6\xcd\x7e\x82\x15\x77\xd6\xf0\x89\x2a\xa8\
\x31\x12\x53\xb9\x06\x4a\x1a\x75\xa9\xc8\x70\x55\xa2\x8e\xfa\x84\
\x75\xcd\xde\xe8\xec\x5c\xb6\x65\xb3\xb4\x22\xf3\x78\x5c\x78\x68\
\x46\x84\x3f\xf0\xd9\x32\x16\x9e\x6a\x2a\xff\x00\x21\xd6\x3f\xfb\
\xab\xf7\x96\xe4\x9f\x6f\x1a\xeb\x68\xda\xd8\x6e\xfc\xd8\x98\xf0\
\x21\x71\xe1\x44\xdf\xf2\xf1\x38\xd4\xa9\x43\xc6\x35\xd7\x2f\x91\
\x55\xe3\xd6\xb0\x5f\x25\x7e\x5f\x77\xef\xcb\x3c\xf2\xe5\x7b\x8f\
\x79\xcb\x59\x83\xa3\xab\x7a\xbc\x0f\x5d\xed\xf1\x3e\x1f\xae\xf6\
\xe3\x93\xfb\x4f\x45\x80\x15\x13\x1c\xa5\x7c\x28\x02\xfd\xee\x42\
\x4a\x9a\xa3\x6b\x86\x4f\xa0\xc6\x9e\x63\xe6\xdd\xf7\x9a\xa7\xf1\
\x77\x7b\xc2\xd0\x03\x55\x89\x6a\xb1\x27\xd8\xb5\xee\x3f\xd2\x62\
\x4f\xd9\xd7\x3a\xbd\xc1\xf7\x4f\x9d\xbd\xce\xbd\x17\x3c\xd7\xbb\
\x17\xb3\x46\x2d\x1d\xac\x75\x4b\x58\xbd\x34\xc7\x53\xad\x87\xfb\
\xf2\x52\xef\x8a\x82\x38\x74\x59\xfd\x86\xfa\x8f\x7a\xf7\xbf\x75\
\xae\xb8\x3d\x2c\xd5\xda\x28\x69\x90\xc9\x53\x5f\x34\x14\x34\xd1\
\xa8\xbb\x49\x51\x5b\x3c\x74\xb0\x46\xa3\xf2\xcf\x2c\xa0\x0f\xf1\
\x3e\xf4\x54\xbd\x11\x45\x59\x88\x03\xed\x26\x83\xad\x34\x6d\x30\
\x10\xa0\xab\xb9\x0a\x07\xa9\x62\x00\x1f\xb4\xf5\xf4\x38\xd8\xf8\
\xc9\xf0\xbb\x2b\x67\xe1\xaa\x94\xad\x56\x27\x6b\x6d\xfc\x65\x4a\
\xb0\xb3\x2c\xf4\x18\x9a\x4a\x59\x94\x8f\xc1\x12\x44\x7d\xe7\xfd\
\x94\x6d\x0d\x9d\xa4\x2f\xf1\x24\x4a\x0f\xda\x14\x0e\xbb\xaf\xb3\
\xdb\xbd\xa6\xd1\xb5\x5a\xc8\x29\x24\x56\xd1\x21\xfb\x55\x14\x1f\
\xe6\x3a\x54\xfb\x53\xd1\x8f\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xff\xd1\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x74\x8e\xec\x4d\x91\x86\xec\xbd\x85\
\xbc\xfa\xf3\x71\x44\x26\xc1\x6f\x8d\xaf\x9d\xda\x99\x64\x31\xac\
\xa7\xec\x33\xd8\xda\x9c\x6d\x44\x88\x8f\xe9\x69\x62\x8e\xa4\xba\
\x5f\xe8\xca\x0f\xb4\x7b\x85\x94\x3b\x95\x8d\xe6\xdf\x70\x2b\x04\
\xf1\x32\x37\xd8\xc0\x83\xfe\x1e\x8a\x77\xdd\x9e\xd3\x98\x76\x4d\
\xdb\x62\xbf\x5a\xd9\x5e\x5b\x49\x0b\xf9\xf6\xc8\x85\x09\xfb\x40\
\x35\x1f\x3e\xb4\x08\xec\xae\xb7\xdc\xbd\x37\xd8\x9b\xdf\xa9\x77\
\x95\x34\x94\xbb\xa7\xae\x77\x26\x47\x6a\x65\xd2\x45\x64\x15\x27\
\x1d\x2d\xa8\x32\xd4\xfa\x80\xf2\xd0\x67\x71\x6f\x0d\x65\x3c\x83\
\xd3\x24\x33\xa9\x07\xde\x08\xee\x5b\x75\xce\xcf\xb8\x5e\xed\x57\
\x8b\x4b\x9b\x79\x0a\x37\xce\x9c\x18\x7c\x99\x68\xc0\xfa\x1e\xb8\
\x8d\xcc\x1c\xbf\xb8\x72\xa6\xfd\xbc\x72\xc6\xed\x19\x5d\xca\xc2\
\xe1\xa1\x71\xeb\xa4\xf6\xb8\xf5\x59\x13\x4c\x8a\x78\x15\x61\xd2\
\x27\xda\x2e\x89\xfa\x37\xdf\x08\x3e\x59\xe5\xfe\x1b\x77\x95\x27\
\x69\x53\xe1\xeb\x37\x46\xd7\xca\xe0\x6b\xf6\x8e\xfd\xda\x54\x35\
\xd0\xd0\x55\x67\x30\x15\x93\x41\x5d\x47\x55\x41\x3d\x50\x6a\x31\
\x96\xc0\x65\x69\x52\xa2\x9c\x4b\xa5\x64\x46\x96\x22\xe8\x24\xd4\
\x05\xbc\x97\xcd\x53\x72\x86\xf6\x9b\x9a\xc2\x65\xb5\x74\x31\xcb\
\x18\x20\x16\x52\x41\x04\x13\x8d\x4a\xc2\xa2\xbc\x72\x2a\x2b\xd4\
\xa7\xec\xf7\xb9\xd7\x5e\xd3\xf3\x94\x5c\xc9\x1d\xab\xdc\xed\xd2\
\xc2\xd0\x5c\xc0\xac\x14\xc9\x13\x10\xca\xca\x4f\x6e\xb8\xdd\x43\
\x2d\x68\x08\x2c\xb5\x1a\xab\xd1\x90\xf9\x7f\xfc\xd8\x3b\xf3\xe4\
\x91\xc9\x6d\x0e\xbe\x9a\xbb\xa2\xba\x86\xa9\x5e\x9a\x4c\x2e\xdc\
\xc9\xb1\xec\x0d\xd1\x48\xca\xc9\x21\xdd\x3b\xca\x8b\xc1\x26\x36\
\x92\xa5\x18\x83\x41\x8b\xf1\x26\x93\x69\x67\x9b\xf0\x22\xe6\xdf\
\x74\xf7\xde\x62\xf1\x6d\x2c\x19\xac\x76\x93\x8d\x28\xdf\xaa\xe3\
\xfa\x72\x0a\x69\x07\xf8\x52\x9f\x36\x3d\x0f\xfd\xd3\xfb\xcd\x73\
\xb7\x3f\xfd\x46\xd7\xb1\xb3\xec\xdc\xae\xd8\x31\xc4\xff\x00\xe3\
\x33\x2f\x9f\x8d\x3a\xd0\xa2\x9f\xf7\xdc\x34\x14\xc3\x3b\xf5\x55\
\xe8\x89\x1a\x84\x8d\x42\x28\x2c\x6c\x3f\xab\x31\x67\x62\x7e\xac\
\xee\xc4\x96\x63\x72\xc4\x92\x49\x27\xdc\x5e\x00\x02\x80\x63\xac\
\x6d\x00\x01\x40\x31\xd7\x2f\x7b\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd1\xe3\xfe\x5c\xbf\x1f\x6b\x3e\x46\x7c\xb7\xeb\x1d\xb9\
\x2d\x03\xd5\x6c\xed\x85\x94\xa4\xed\x5e\xc3\xa8\x31\xbb\x52\xc1\
\x80\xd9\xf5\xb0\x56\xe2\x31\x95\x2e\xb6\x08\xdb\x93\x74\xa5\x25\
\x22\x8b\x82\xd1\x79\x88\xfd\x26\xc3\x5f\x6f\x76\x07\xe6\x1e\x6b\
\xdb\x2d\xca\x56\xce\x06\x13\xca\x7c\xb4\x46\x41\x55\x3f\xe9\xdf\
\x4a\xfd\x95\xea\x64\xf6\x13\x91\xa5\xe7\xdf\x73\xf9\x76\xc1\xe0\
\x2d\xb5\x59\x48\xb7\x97\x46\x9d\xa2\x28\x18\x32\x21\x3f\xf0\xd9\
\xb4\x20\xfe\x8e\xa3\xe5\xd6\xef\x7e\xf3\x4b\xae\xc1\xf5\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\
\xd2\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x52\x3f\xf3\x68\xfe\x5f\x59\x5e\xf6\
\xc5\x47\xf2\x2f\xa5\x30\x9f\xc4\x7b\x83\x67\x61\x96\x83\x7a\xed\
\x1a\x08\x97\xef\xbb\x37\x65\x63\x56\x49\xa9\x5f\x16\x8b\xa7\xee\
\x77\xbe\xd5\x46\x93\xed\x23\x6b\xb5\x7d\x23\x1a\x60\x75\xa5\x38\
\xf7\x0b\xfb\xab\xc8\x52\xef\x91\x0e\x61\xd9\xa1\xd5\xbb\x42\x94\
\x92\x31\xc6\x68\xc7\x0d\x3e\xb2\x26\x74\x8f\xc4\xbd\xbc\x42\xf5\
\x88\x1f\x79\xdf\x63\xae\x79\xce\xd9\x79\xf3\x94\x6c\xfc\x4e\x69\
\xb4\x8b\x4d\xc4\x0a\x3b\xae\xed\xd2\xa5\x74\x7a\xdc\x43\x9d\x03\
\x8c\x88\x4c\x63\xb8\x20\xeb\x55\x9f\xcb\xa9\x57\x49\x22\x92\x48\
\x66\x8a\x58\xe4\x86\x78\x27\x85\xda\x29\xe9\xea\x20\x95\x52\x6a\
\x7a\x98\x25\x52\x92\x46\xea\xae\x8e\x0a\xb0\x04\x11\xef\x18\x3d\
\x45\x08\x20\xd3\x38\x20\x8e\x20\x8f\x22\x3c\xc7\x97\x5c\xd7\xf3\
\x20\x82\x18\x12\x08\x22\x84\x11\x82\x08\x39\x04\x1c\x10\x72\x0e\
\x0e\x7a\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\
\xfd\xd7\xba\xf7\xbf\x75\xee\x94\x5b\x43\x68\x6e\xbe\xc1\xdd\x58\
\x0d\x8b\xb0\xf6\xee\x4f\x76\xef\x4d\xd5\x90\x8b\x15\xb7\x36\xd6\
\x1a\x06\xa8\xc8\xe5\x6b\xe6\x3c\x22\x28\xb4\x74\xf4\x94\xe9\x79\
\x2a\x2a\x65\x29\x05\x34\x0a\xd2\x4a\xca\x8a\x4f\xb5\x16\x96\x97\
\x57\xf7\x50\x58\xd8\xdb\xb4\xb7\x92\xb6\x94\x45\xc9\x62\x7f\xc0\
\x07\x12\xc7\x0a\x2a\x49\xa7\x4b\xf6\xad\xab\x73\xdf\x37\x2b\x2d\
\x9b\x65\xb0\x92\xeb\x77\xb9\x70\x91\x45\x18\xab\x3b\x1f\xf0\x28\
\xe2\xce\x68\xa8\xa0\xb3\x10\x07\x5b\x9f\xff\x00\x2f\x3f\x84\xf8\
\x8f\x86\x7d\x3d\xfc\x2b\x28\xf4\x19\x8e\xe0\xdf\x8d\x45\x9d\xed\
\x5d\xcf\x46\x1a\x4a\x66\xc8\xc1\x4e\x53\x1b\xb4\xb0\x53\x48\x04\
\x83\x6c\xed\x48\x66\x78\xa1\x36\x53\x53\x51\x24\xd5\x0c\x01\x94\
\x2a\xe6\x1f\x20\x72\x64\x3c\x9f\xb4\x78\x52\x95\x7d\xde\x7a\x34\
\xee\x38\x54\x0c\x22\xff\x00\x41\x38\x0f\x52\x4b\x1e\x38\xeb\x57\
\xb1\x5e\xd0\xda\xfb\x4d\xca\xbf\x4d\x72\x52\x5e\x6a\xbd\xd3\x25\
\xe4\xcb\x91\xa8\x0e\xc8\x63\x27\x3e\x14\x20\x90\xbf\xc6\xc5\xe4\
\x3f\x15\x01\xfd\xf6\x3c\xea\x6e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\
\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\
\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\
\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\
\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\
\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\xff\xd3\xdf\xe3\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5a\xa1\x7f\x3b\xdd\x8b\xd4\xbb\x33\xe4\
\x47\x5d\x57\xec\x4d\xb9\x41\xb7\xb7\xee\xfa\xd9\x19\x9d\xd7\xda\
\x8f\x89\x8a\x2a\x4a\x0c\xeb\x0c\xd4\x38\xad\xaf\x9c\xae\xa1\x80\
\x2c\x2b\xb8\xaa\x9a\x8a\xbd\x2a\x2a\x42\xab\xd5\x45\x1c\x66\x4d\
\x4c\xba\xbd\xe2\xd7\xbd\x16\x5b\x55\x9f\x30\x6d\xef\x63\x6e\xb1\
\xdf\xcf\x03\x3c\xfa\x70\x1b\xbb\x4a\x31\x1f\xc6\x68\xd5\x3f\x88\
\x01\x5a\x9e\xb9\x9d\xf7\xc1\xd9\xb9\x63\x69\xe7\xcd\x8a\x6d\x96\
\xc1\x20\xde\xef\x6c\xe4\x9a\xf3\x40\x0a\xb2\x7e\xa0\x48\x64\x65\
\x18\xf1\x4e\x99\x03\x3e\x0b\x80\x35\x54\x8a\xf5\x4c\xf4\x74\x39\
\x0c\x93\xd4\xc7\x8c\xc6\xe5\x32\xb2\x51\x41\xf7\x55\xd1\xe2\x71\
\x79\x0c\xab\xd0\xd2\xf3\xfe\x55\x5c\x98\xea\x6a\xa6\xa3\xa6\xe3\
\xfc\xe4\xa1\x13\xfc\x78\xf7\x0f\xa2\x49\x21\x61\x14\x6c\xc5\x45\
\x4e\x90\x5a\x83\xd4\xd0\x1a\x0f\x99\xeb\x13\xa2\x86\x7b\x83\x22\
\xdb\xdb\xc9\x2b\x22\xea\x60\x88\xce\x55\x7d\x5b\x48\x3a\x47\xcc\
\xd0\x74\xde\x95\x54\xd2\x96\x58\xea\x21\x76\x43\xa5\xd1\x65\x42\
\xe8\xc3\xea\xb2\x26\xad\x68\xe3\xfa\x10\x08\xf6\xde\xa5\x35\x01\
\x85\x7a\x61\x64\x8d\xaa\x15\xc1\x23\xe7\xd6\x6d\x4b\xf5\xd4\x3f\
\xdb\x8f\x76\xea\xdd\x71\x8a\x44\xa8\xa9\x8e\x8e\x98\x9a\xba\xd9\
\x99\x52\x1a\x1a\x34\x7a\xca\xe9\xdd\x8d\x95\x21\xa2\xa5\x59\xaa\
\xa6\x66\x3c\x00\xa8\x49\x3e\xf4\x08\x66\x08\xb9\x73\xc0\x0c\x93\
\xf6\x01\x9e\xb4\x8c\x24\x91\x61\x8f\xba\x63\xc1\x57\xb9\x8f\xd8\
\xa2\xa4\xfe\x43\xab\x04\xf8\xe7\xfc\xb2\x7e\x5b\x7c\x8a\xad\xa0\
\xaa\x83\x61\x55\x75\x3e\xc3\xa9\x68\xa5\xa9\xdf\xdd\xad\x49\x59\
\xb7\xe2\x34\x4f\xea\x69\xb0\x5b\x45\xd1\x37\x46\x7a\x77\x8c\x5e\
\x2b\xc3\x4b\x4c\xc4\x8d\x53\xa8\xe7\xd8\xf7\x97\xbd\xb6\xe6\xae\
\x61\x78\xd9\x6c\x0d\xad\x89\xe3\x2c\xe0\xa0\xa7\xf4\x53\xe3\x63\
\xe9\x85\x1f\xd2\x1d\x4e\x3c\x85\xf7\x79\xf7\x3f\x9f\x25\x82\x54\
\xd9\x1b\x6c\xd9\x9a\x84\xdc\xde\xab\x44\x34\xfa\xc7\x05\x3c\x69\
\x0d\x38\x76\xa2\x1c\x55\xc0\xeb\x67\x8f\x87\x1f\x00\x3a\x43\xe1\
\xae\x1e\x69\xf6\x8d\x24\xfb\xbb\xb3\x72\xf4\xa2\x9b\x74\x76\xbe\
\xe7\x82\x9d\xf7\x26\x4a\x13\xa5\x9f\x17\x85\xa6\x8b\x5d\x1e\xd5\
\xdb\x8b\x22\xea\x5a\x2a\x4e\x5c\xd8\xcf\x24\xcc\x03\x0c\x95\xe5\
\x0e\x43\xd9\x79\x3e\x12\xd6\x88\x65\xdc\x9c\x51\xe7\x70\x35\xb7\
\xf4\x54\x70\x44\xfe\x8a\xf1\xfc\x44\x9e\xba\x27\xed\x47\xb2\x1c\
\x9f\xed\x3d\xa3\xbe\xd7\x13\x5d\x73\x0c\xab\x49\xaf\x66\x03\xc5\
\x71\xfc\x11\x81\xdb\x0c\x55\xc8\x8d\x38\xf1\x76\x73\x9e\x8f\x2f\
\xb1\xb7\x53\x27\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd4\xdf\xe3\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x54\x85\xf2\x43\xf9\x5a\x76\x1f\xcb\x8f\
\x99\xdb\xc7\xb7\x3b\x53\xb2\xf1\x1b\x57\xa2\xdb\x07\xb2\xf0\xdb\
\x67\x1b\xb3\x8d\x5d\x6f\x62\x64\x71\x98\x3c\x52\xa5\x7e\x0d\x86\
\x52\x85\x30\x9b\x55\x24\xcc\x4f\x57\x34\x95\xaa\xf5\xcf\x20\x9d\
\x7c\x70\xa1\xbb\x2c\x2b\xcc\x5e\xd8\x6e\x1c\xd7\xce\x37\x9b\xb6\
\xe9\xb9\x24\x5b\x1e\x88\xd5\x04\x75\x33\x10\xab\xdc\xbd\xc3\x4a\
\x77\x16\x3a\xaa\xe4\xd7\x0a\x3a\xc3\xee\x7f\xfb\xb7\x6f\x9e\xe8\
\x7b\xb3\xba\xf3\x47\x32\x73\x14\x56\xdc\x9c\x61\x82\x38\x92\x0d\
\x4d\x74\xc9\x1a\x0d\x51\xf7\xaf\x87\x0d\x64\x32\x31\x90\x78\x84\
\x86\x1a\x54\x1a\x91\x6a\x1d\x19\xf1\xcf\xa6\x3e\x37\x6c\xc8\x36\
\x27\x4e\x6c\x3c\x36\xd0\xc2\x05\x8c\xe4\x66\x82\x23\x57\x9b\xdc\
\x35\x6b\x1e\x89\x32\x7b\x9b\x3d\x5a\x67\xca\xe7\x72\x33\x92\x4b\
\x49\x51\x2b\x85\xd4\x55\x02\x25\x94\x4a\x1b\x27\x2f\x6c\xfc\xbb\
\x66\xb6\x3b\x45\x8a\x45\x0f\x99\x19\x67\x3e\xae\xc6\xac\xc4\xfa\
\x93\xf6\x50\x75\x92\x3c\x9b\xc8\x5c\xa5\xc8\x1b\x42\x6c\xbc\xa9\
\xb2\xc5\x6b\x67\x41\xac\x81\xaa\x49\x5a\x94\x2f\x34\x8d\x57\x91\
\x8f\xab\x13\x4e\x00\x01\x8e\x9b\x77\xd7\xc5\x3f\x8d\x1d\x9a\xd2\
\x4b\xbf\x7a\x17\xa9\xb7\x3d\x4c\xac\xed\x2d\x76\x47\x62\xed\xe3\
\x91\x91\xa4\xfd\x6d\x26\x4a\x1a\x08\x6b\xdc\xb1\xfa\xde\x43\xcf\
\xb6\xef\xb9\x5f\x96\xf7\x22\x4d\xf6\xc7\x6b\x2b\x1f\x33\x12\x57\
\xf6\xd2\xbf\xcf\xa6\x37\x9f\x6d\x3d\xbd\xe6\x12\xcd\xbd\x72\x56\
\xd9\x73\x21\xe2\xcf\x6f\x16\xa3\xf6\xb8\x50\xdf\xcf\xa0\x82\x1f\
\xe5\xb3\xf0\x46\x09\x84\xf1\xfc\x5d\xea\xaf\x22\xb6\xb5\x12\x61\
\x66\x9a\x20\xc0\xdc\x5a\x9e\x6a\xc7\x82\xc0\x8e\x06\x9b\x0f\x65\
\x23\xdb\xae\x47\x56\xd4\x39\x66\xd6\xbf\xe9\x49\x1f\xb2\xb4\xe8\
\x2c\xbe\xc0\x7b\x30\x8f\xad\x7d\xb9\xdb\x35\x7c\xe3\x24\x7e\xc2\
\xc4\x7f\x2e\x8c\x2e\xc4\xe8\x6e\x91\xea\xf1\x17\xfa\x3a\xea\x3e\
\xb7\xd9\x32\x40\xba\x63\xa9\xdb\x3b\x33\x6f\x61\xeb\x40\xff\x00\
\x6a\xaf\xa2\xc7\xc5\x5b\x21\xff\x00\x16\x90\x9f\x67\xf6\x3b\x1e\
\xcb\xb6\x53\xf7\x7e\xd3\x6f\x09\x1e\x69\x1a\x29\xfd\xa0\x57\xf9\
\xf4\x3a\xd9\x79\x2b\x94\x39\x70\x2f\xee\x1e\x57\xdb\xec\xd8\x79\
\xc5\x04\x48\xdf\xef\x4a\xa1\x8f\xe6\x7a\x16\x7d\x9a\xf4\x26\xeb\
\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\
\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\
\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\
\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\
\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbf\xff\xd5\
\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5f\xff\xd6\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5f\xff\xd7\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd0\xdf\xe3\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd1\
\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x41\x93\x27\x8d\x86\x47\x86\x6c\x85\x0c\x52\xc6\x40\x78\
\xa4\xab\xa7\x49\x10\x91\x70\x1d\x1a\x40\xca\x48\x3f\x91\xef\xdd\
\x7b\xae\x1f\xc6\x31\x3f\xf3\xb4\xc7\x7f\xe7\x6d\x37\xfd\x7d\xf7\
\xee\xbd\xd7\xbf\x8c\x62\x7f\xe7\x69\x8e\xff\x00\xce\xda\x6f\xfa\
\xfb\xef\xdd\x7b\xaf\x7f\x18\xc4\xff\x00\xce\xd3\x1d\xff\x00\x9d\
\xb4\xdf\xf5\xf7\xdf\xba\xf7\x5e\xfe\x31\x89\xff\x00\x9d\xa6\x3b\
\xff\x00\x3b\x69\xbf\xeb\xef\xbf\x75\xee\xbd\xfc\x63\x13\xff\x00\
\x3b\x4c\x77\xfe\x76\xd3\x7f\xd7\xdf\x7e\xeb\xdd\x7b\xf8\xc6\x27\
\xfe\x76\x98\xef\xfc\xed\xa6\xff\x00\xaf\xbe\xfd\xd7\xba\xe4\x99\
\x5c\x5c\x8e\x91\x47\x92\xa0\x79\x25\x60\x91\xc6\x95\x94\xec\xf2\
\x39\xfa\x22\x22\xc8\x59\xd8\xdb\xe8\x39\xf7\xee\xbd\xd4\xe6\x60\
\xa0\xb3\x10\xaa\xa0\xb3\x33\x10\x02\x80\x2e\x49\x27\x80\x00\xf7\
\xee\xbd\xd3\x77\xf1\xac\x39\x5d\x7f\xc5\xb1\xba\x48\xd4\x1b\xef\
\xe9\x74\x95\x22\xe0\xdf\xcb\x6b\x11\xef\xdd\x7b\xa7\x10\x41\x00\
\x82\x08\x22\xe0\x8e\x41\x07\xe8\x41\xfc\x83\xef\xdd\x7b\xae\xfd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x43\x9b\x23\x8f\xa7\x90\xc3\x51\x5f\
\x47\x04\xa1\x55\x8c\x53\x55\x41\x14\x81\x5a\xfa\x58\xa3\xba\xb0\
\x56\xb1\xb1\xb7\x36\xf7\xee\xbd\xd6\x58\x2a\xa9\xaa\x95\x9e\x96\
\xa2\x0a\x94\x56\xd0\xcd\x04\xd1\xcc\xaa\xd6\x07\x4b\x34\x6c\xc0\
\x35\x88\x36\xfa\xfb\xf7\x5e\xeb\x8d\x45\x6d\x1d\x21\x41\x55\x57\
\x4d\x4c\x64\xbf\x8c\x54\x4f\x14\x25\xf4\xdb\x56\x8f\x23\xae\xad\
\x37\xe6\xdf\x4f\x7e\xeb\xdd\x47\xfe\x31\x89\xff\x00\x9d\xa6\x3b\
\xff\x00\x3b\x69\xbf\xeb\xef\xbf\x75\xee\xbd\xfc\x63\x13\xff\x00\
\x3b\x4c\x77\xfe\x76\xd3\x7f\xd7\xdf\x7e\xeb\xdd\x73\x8b\x27\x8d\
\x9e\x45\x86\x1c\x85\x0c\xd2\xbd\xf4\x45\x15\x5c\x12\x48\xf6\x17\
\x3a\x51\x24\x2c\xd6\x1f\xd0\x7b\xf7\x5e\xea\x63\xba\x46\x8d\x24\
\x8e\xb1\xc6\x8a\x5d\xdd\xd8\x22\x22\xa8\xbb\x33\x33\x10\xaa\xaa\
\x07\x24\xf0\x3d\xfb\xaf\x75\x00\x66\x31\x27\x48\x19\x4c\x71\x2c\
\x55\x56\xd5\xb4\xc7\x53\x39\x0a\x8a\xbf\xbb\xc9\x66\x20\x01\xf9\
\x27\xdf\xba\xf7\x4e\x3e\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\
\x7b\xaf\x7b\xf7\x5e\xea\x1c\xd9\x1c\x7d\x34\x86\x1a\x8a\xfa\x38\
\x26\x0a\xae\x62\x9a\xaa\x08\xa4\x0a\xd7\xd2\xc5\x1d\xd5\x82\xb5\
\x8d\x8d\xac\x6d\xef\xdd\x7b\xac\x5f\xc6\x31\x3f\xf3\xb4\xc7\x7f\
\xe7\x6d\x37\xfd\x7d\xf7\xee\xbd\xd4\x8a\x7a\xca\x4a\xbd\x7f\x6b\
\x55\x4d\x53\xe3\x20\x49\xf6\xf3\xc5\x36\x82\xc0\x95\x0f\xe3\x66\
\xd2\x58\x0e\x2f\xf5\xf7\xee\xbd\xd4\x9f\x7e\xeb\xdd\x61\x9e\xa2\
\x9e\x96\x3f\x2d\x4c\xf0\xd3\xc5\xa9\x53\xc9\x3c\xa9\x0c\x7a\x98\
\xd9\x57\x5c\x8c\xab\xa9\x8f\xd0\x7d\x4f\xbf\x75\xee\xa3\xc5\x93\
\xc6\xcf\x22\xc3\x0e\x42\x86\x69\x5e\xfa\x22\x8a\xae\x09\x24\x7b\
\x0b\x9d\x28\x92\x16\x6b\x0f\xe8\x3d\xfb\xaf\x75\x3b\xdf\xba\xf7\
\x5d\x12\x14\x16\x62\x00\x00\x92\x49\xb0\x00\x72\x49\x27\x80\x00\
\xf7\xee\xbd\xd3\x70\xcc\xe2\x08\x04\x65\x71\xa4\x10\x08\x22\xba\
\x94\x82\x0f\x20\x82\x25\xb1\x04\x7b\xf7\x5e\xeb\xbf\xe3\x18\x9f\
\xf9\xda\x63\xbf\xf3\xb6\x9b\xfe\xbe\xfb\xf7\x5e\xeb\xdf\xc6\x31\
\x3f\xf3\xb4\xc7\x7f\xe7\x6d\x37\xfd\x7d\xf7\xee\xbd\xd7\xbf\x8c\
\x62\x7f\xe7\x69\x8e\xff\x00\xce\xda\x6f\xfa\xfb\xef\xdd\x7b\xaf\
\x7f\x18\xc4\xff\x00\xce\xd3\x1d\xff\x00\x9d\xb4\xdf\xf5\xf7\xdf\
\xba\xf7\x5e\xfe\x31\x89\xff\x00\x9d\xa6\x3b\xff\x00\x3b\x69\xbf\
\xeb\xef\xbf\x75\xee\xbd\xfc\x63\x13\xff\x00\x3b\x4c\x77\xfe\x76\
\xd3\x7f\xd7\xdf\x7e\xeb\xdd\x66\x82\xbe\x86\xa9\xda\x3a\x5a\xca\
\x4a\x99\x11\x43\xba\x41\x51\x0c\xce\xa8\x4e\x90\xcc\xb1\xbb\x32\
\xa9\x6e\x2e\x78\xbf\xbf\x75\xee\xa5\xfb\xf7\x5e\xeb\xde\xfd\xd7\
\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\xff\xd2\xdf\xe3\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\x71\
\x7f\xe1\x44\x79\xbc\xd5\x27\xf3\xa4\xf9\xf5\x05\x2e\x63\x2b\x4f\
\x04\x7d\xa9\xb6\xc4\x70\xc1\x91\xac\x8a\x24\x07\xaa\xf6\x03\x10\
\x91\xa4\xc1\x55\x6e\x4f\x00\x58\x7b\xf7\x5e\xea\x96\xff\x00\xbc\
\x9b\x8b\xfe\x77\xf9\xaf\xfc\xfa\x57\x7f\xd7\xff\x00\x7e\xeb\xdd\
\x7b\xfb\xc9\xb8\xbf\xe7\x7f\x9a\xff\x00\xcf\xa5\x77\xfd\x7f\xf7\
\xee\xbd\xd7\xbf\xbc\x9b\x8b\xfe\x77\xf9\xaf\xfc\xfa\x57\x7f\xd7\
\xff\x00\x7e\xeb\xdd\x7b\xfb\xc9\xb8\xbf\xe7\x7f\x9a\xff\x00\xcf\
\xa5\x77\xfd\x7f\xf7\xee\xbd\xd7\xbf\xbc\x9b\x8b\xfe\x77\xf9\xaf\
\xfc\xfa\x57\x7f\xd7\xff\x00\x7e\xeb\xdd\x7b\xfb\xc9\xb8\xbf\xe7\
\x7f\x9a\xff\x00\xcf\xa5\x77\xfd\x7f\xf7\xee\xbd\xd5\x95\x7f\x26\
\xbc\xe6\x6e\xab\xf9\xb1\xff\x00\x2e\x38\x2a\x73\x59\x79\xa1\x7f\
\x99\xdf\x1e\x83\xc5\x26\x4e\xb9\x91\xd7\xfd\x25\x6d\xfb\xa3\xa9\
\x9e\xcf\x1b\x8e\x19\x4d\xd5\x94\x90\x41\x04\x8f\x7e\xeb\xdd\x7d\
\x8e\x3e\x56\x96\x1f\x17\x7e\x49\x15\x67\x46\x1d\x07\xdc\x45\x5e\
\x37\x68\xdd\x18\x75\xe6\xe2\x21\x91\xd0\xab\xa3\xa9\xe4\x10\x41\
\x07\xe9\xef\xdd\x7b\xaf\x84\xdf\xf7\x8b\x70\x05\xd1\xfc\x77\x33\
\xa4\x0d\x21\x7f\x89\xd6\xe9\x0a\x05\x80\xb7\x9e\xd6\x03\xdf\xba\
\xf7\x5f\x79\x9e\x9d\xb9\xea\x3e\xac\x24\xb3\x13\xd7\x1b\x1e\xec\
\xcc\x59\x89\xfe\xec\xe2\xee\x59\x98\x96\x66\x3f\x92\x79\x3e\xfd\
\xd7\xba\x11\xfd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\xa4\xff\x00\xe1\
\x5c\xb9\x9c\xa5\x17\xf3\x8f\xdf\x30\x50\x65\xf2\x34\xb1\xaf\x42\
\x74\x4f\x92\x0a\x5c\x85\x54\x51\xc7\x23\x6d\xfc\x83\xd8\xc5\x14\
\xca\x91\xb3\x23\x06\xb5\x85\xf5\x5f\xf3\x73\xee\xbd\xd6\xc8\x1f\
\xf0\x8a\x4a\xbc\x85\x77\xc0\x0f\x94\xf5\x35\xf5\x55\xb5\x87\xfd\
\x9c\x3a\xf8\x63\x9e\xb2\x79\xea\x2c\x23\xe9\x5e\xa6\x91\xe2\x8e\
\x49\x9d\xc0\xd0\x66\x04\x80\x78\xd4\x09\xfa\x8f\x7e\xeb\xdd\x11\
\xdf\xf8\x5c\x2d\x66\x57\x1d\xba\x3f\x97\x04\xf4\x35\x99\x1a\x18\
\xa7\xc0\x7c\xa4\x88\xc9\x49\x55\x55\x4b\x0c\xf2\x41\x90\xe8\x56\
\x64\x26\x19\x12\x29\x65\x85\x27\x53\xcd\xd9\x03\x8f\xa0\x6e\x7d\
\xd7\xba\xd0\xbf\xfb\xc9\xb8\xbf\xe7\x7f\x9a\xff\x00\xcf\xa5\x77\
\xfd\x7f\xf7\xee\xbd\xd7\xbf\xbc\x9b\x8b\xfe\x77\xf9\xaf\xfc\xfa\
\x57\x7f\xd7\xff\x00\x7e\xeb\xdd\x5e\x1f\xfc\x26\xdf\x31\x9c\xaf\
\xfe\x76\x9f\x03\xe9\xa7\xca\xe5\xaa\xe1\x7d\xe9\xd9\xcd\x25\x3c\
\xb5\xf5\xb3\xc6\xe9\x0f\x42\xf6\xb4\xec\x64\x89\xa5\x65\x64\x8c\
\x45\xac\xdc\x58\x05\xb9\xfa\x7b\xf7\x5e\xeb\xe9\xf9\xfc\xe1\x8d\
\x42\x7f\x2a\x4f\xe6\x39\x25\x2b\x4e\x93\xc3\xf0\xa7\xe4\x95\x42\
\x49\x4e\xd2\x24\xd0\xfd\xbf\x53\xee\x89\xda\x64\x78\x88\x92\x3f\
\x0a\x46\x5c\xb0\x23\x48\x04\xfd\x07\xbf\x75\xee\xbe\x34\xdf\x1c\
\x77\x06\x7a\x4f\x90\xdd\x0d\x1c\xb9\xdc\xc3\x44\xdd\xcf\xd5\xaa\
\xe1\xb2\xb5\xc1\x74\xff\x00\x7e\x70\x57\xb9\xfb\x81\xa6\xc3\xf3\
\xc5\xbd\xfb\xaf\x75\xf7\x78\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\x29\xdf\xf8\x57\x76\x5b\x2d\x41\
\xfc\xe2\xb7\x54\x54\x59\x4c\x95\x24\x47\xe3\xcf\x46\x39\x8a\x9a\
\xbe\xae\x08\x83\x1c\x6e\x74\x12\x23\x8e\x55\x45\xbd\xae\x6c\x05\
\xcf\x3f\x52\x7d\xfb\xaf\x75\xac\x1f\xf7\x93\x71\x7f\xce\xff\x00\
\x35\xff\x00\x9f\x4a\xef\xfa\xff\x00\xef\xdd\x7b\xaf\xa0\x1f\xfc\
\x21\xea\xb3\x25\x90\xc2\x7f\x31\xfa\x8a\xea\xdc\x8d\x72\xc7\x95\
\xf8\xb9\x12\xbd\x65\x5d\x55\x54\x51\x33\x51\xf7\xcb\x69\x8c\x4f\
\x24\x91\x45\x24\xa1\x79\x2a\x03\x38\x51\x7b\x85\x16\xf7\x5e\xeb\
\x7d\xbf\x7e\xeb\xdd\x6a\xf1\xff\x00\x0a\xf7\xac\x9e\x87\xf9\x3d\
\xe7\x26\xa6\xac\x9e\x8a\xa0\xfc\x90\xe8\xe4\x8a\x4a\x7a\x99\x69\
\x65\x76\xf3\x6e\x87\x68\xd5\xa2\x92\x36\x93\xd0\x85\xb4\xf3\xfa\
\x75\x5b\x8b\x8f\x75\xee\xb4\x61\xff\x00\x84\xe1\xe7\x73\x35\x5f\
\xce\xbf\xe0\x5c\x15\x79\x9c\xa4\xf4\xf2\x6f\xfe\xc1\x59\x21\xa8\
\xc8\xd5\xc9\x0c\x9f\xf1\x84\x3b\x3c\xa2\xbc\x72\x4c\x51\xef\x20\
\x16\x04\x1b\x9b\x7b\xf7\x5e\xeb\xec\x4b\xef\xdd\x7b\xa0\x67\xe4\
\x69\x23\xe3\xd7\x7b\x95\x66\x56\x1d\x33\xda\x04\x32\x33\x23\xa9\
\x1b\x23\x39\x66\x57\x42\x19\x18\x1f\xa1\x04\x10\x7d\xfb\xaf\x75\
\xf0\x86\x1b\x8f\x70\x80\x00\xcf\x66\x40\x00\x00\x06\x52\xb8\x00\
\x07\x00\x00\x27\xb0\x00\x7b\xf7\x5e\xeb\xbf\xef\x26\xe2\xff\x00\
\x9d\xfe\x6b\xff\x00\x3e\x95\xdf\xf5\xff\x00\xdf\xba\xf7\x5e\xfe\
\xf2\x6e\x2f\xf9\xdf\xe6\xbf\xf3\xe9\x5d\xff\x00\x5f\xfd\xfb\xaf\
\x75\xef\xef\x26\xe2\xff\x00\x9d\xfe\x6b\xff\x00\x3e\x95\xdf\xf5\
\xff\x00\xdf\xba\xf7\x5e\xfe\xf2\x6e\x2f\xf9\xdf\xe6\xbf\xf3\xe9\
\x5d\xff\x00\x5f\xfd\xfb\xaf\x75\xef\xef\x26\xe2\xff\x00\x9d\xfe\
\x6b\xff\x00\x3e\x95\xdf\xf5\xff\x00\xdf\xba\xf7\x5e\xfe\xf2\x6e\
\x2f\xf9\xdf\xe6\xbf\xf3\xe9\x5d\xff\x00\x5f\xfd\xfb\xaf\x75\xb9\
\xd7\xfc\x22\x83\x27\x92\xc8\x7c\xec\xf9\x66\x2b\xf2\x59\x0a\xd5\
\x8f\xe2\x52\x14\x4a\xba\xea\xaa\x88\xd4\x9e\xe2\xeb\xcf\x50\x8a\
\x59\x5e\x3d\x60\x5c\x06\xb5\xd4\x12\x01\x00\x9b\xfb\xaf\x75\xf4\
\xa4\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5f\xff\xd3\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\
\xbf\xf8\x95\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\xbd\xd6\xed\x9f\xf0\
\x95\xef\x8b\x1f\x18\x7b\x6b\xf9\x42\x75\x9e\xef\xed\x4f\x8d\xfd\
\x09\xd9\x5b\xb6\x6e\xe2\xef\x3a\x29\xf7\x4e\xff\x00\xe9\xee\xbc\
\xde\x3b\x8e\xa6\x92\x8b\x79\xc9\x15\x1d\x35\x46\x73\x71\x6d\xdc\
\x8e\x4e\x78\x29\x21\xb4\x71\x2b\x4a\x56\x38\xd4\x2a\x80\x00\x1e\
\xfd\xd7\xba\xd8\xcb\xfd\x90\xbf\x83\x3f\xf7\x86\x1f\x13\xff\x00\
\xf4\x9d\x7a\x83\xff\x00\xb0\xef\x7e\xeb\xdd\x7b\xfd\x90\xbf\x83\
\x3f\xf7\x86\x1f\x13\xff\x00\xf4\x9d\x7a\x83\xff\x00\xb0\xef\x7e\
\xeb\xdd\x7b\xfd\x90\xbf\x83\x3f\xf7\x86\x1f\x13\xff\x00\xf4\x9d\
\x7a\x83\xff\x00\xb0\xef\x7e\xeb\xdd\x7b\xfd\x90\xbf\x83\x3f\xf7\
\x86\x1f\x13\xff\x00\xf4\x9d\x7a\x83\xff\x00\xb0\xef\x7e\xeb\xdd\
\x52\x67\xfc\x28\xbf\xe2\x47\xc5\x0e\xb3\xfe\x4c\xff\x00\x34\xf7\
\x9f\x5c\xfc\x60\xf8\xef\xb0\xb7\x8e\x23\x05\xd4\xed\x86\xdd\xbb\
\x33\xa5\x3a\xdb\x6b\xee\x6c\x34\x95\x5d\xf3\xd5\xd4\x35\x53\x62\
\x73\xd8\x3d\xb5\x41\x94\xc7\x4d\x53\x41\x53\x2d\x3c\x8d\x0c\xa8\
\x5e\x09\xa4\x8c\xdd\x5d\x81\xf7\x5e\xeb\xe7\x35\xfc\x99\x3f\xed\
\xed\x1f\xcb\x87\xff\x00\x17\x3b\xe3\xdf\xfe\xfc\xad\xbf\xef\xdd\
\x7b\xaf\xb2\x5f\xca\xdf\xfb\x25\xcf\x92\x7f\xf8\x80\xbb\x8b\xff\
\x00\x7d\xde\xe2\xf7\xee\xbd\xd7\xc2\x13\xdf\xba\xf7\x5f\x7b\x1e\
\x9d\xff\x00\x99\x45\xd5\x9f\xf8\x8e\x36\x3f\xfe\xf3\x38\xbf\x7e\
\xeb\xdd\x08\xfe\xfd\xd7\xba\xf7\xbf\x75\xee\x80\x5e\xc1\xf8\xad\
\xf1\x83\xb6\xb7\x24\xbb\xc7\xb5\x7e\x38\x74\x2f\x66\x6e\xe9\xe8\
\xe9\x31\xf3\x6e\xae\xc1\xe9\xfe\xbd\xde\x7b\x92\x6a\x0a\x05\x64\
\xa1\xa1\x97\x39\xb8\xf6\xee\x4b\x27\x25\x1d\x12\x39\x11\x44\x65\
\x29\x18\x24\x28\x17\xf7\xee\xbd\xd7\xcf\x63\xfe\x15\xa1\xbb\x77\
\x5f\xc2\xff\x00\x9b\x1f\x1c\xf6\x2f\xc3\xbd\xd1\xb8\xfe\x27\xec\
\x7d\xd3\xf1\x66\x87\x76\x6e\x6d\x97\xf1\xab\x39\x93\xe8\xad\xa3\
\xb8\x77\x5b\x76\xd7\x65\xe1\xe4\xdd\x19\xbd\xb7\xd5\xd5\x5b\x5b\
\x0d\x95\xdc\x72\xe2\x31\x74\xb4\x8d\x5d\x3c\x32\x54\xb5\x35\x2c\
\x31\x17\xd1\x12\x2a\xfb\xaf\x75\xa7\xef\x67\xf7\xbf\x78\x77\x6c\
\x98\x69\x7b\x9f\xb9\x7b\x5b\xb7\x65\xdb\x89\x5d\x16\xde\x93\xb3\
\xfb\x0f\x77\x6f\xe9\x30\x31\xe4\xda\x95\xf2\x51\xe1\x9f\x75\xe6\
\x32\xcd\x8b\x4c\x83\xd1\x42\x67\x10\x68\x12\x98\x50\xbd\xf4\x2d\
\xbd\xd7\xba\x0a\xbd\xfb\xaf\x75\xb2\xf7\xfc\x24\xef\xac\xfa\xdb\
\xb6\x7f\x9b\x26\x3b\x68\x76\xaf\x5e\x6c\x5e\xce\xda\x92\xfc\x73\
\xee\x7a\xf7\xdb\x3d\x87\xb4\xb0\x1b\xd7\x6f\x9a\xfa\x36\xda\x9f\
\x69\x5f\xfc\x1b\x72\x63\xf2\x58\xe1\x5d\x4c\xb2\xba\xc7\x2f\x8f\
\xc8\x8b\x23\x00\x40\x63\x7f\x75\xee\xb7\x6f\xfe\x7d\x5f\x1d\xbe\
\x3f\xfc\x75\xfe\x52\x1f\x32\xbb\x9f\xe3\xdf\x46\xf4\xff\x00\x43\
\xf7\x16\xc6\xda\x9d\x7b\x5d\xb2\x7b\x67\xa6\x3a\xd3\x65\xf5\x77\
\x66\x6c\xea\xcc\x87\x73\xf5\xbe\x13\x23\x55\xb5\xb7\xe6\xc7\xc2\
\xe0\xf7\x4e\xdf\xa8\xc8\xe0\xf2\x95\x54\x55\x0f\x49\x55\x0b\x4d\
\x47\x55\x34\x2e\x4c\x72\x3a\x9f\x75\xee\xbe\x7a\x1f\xca\xef\xe5\
\x67\xca\x3e\xe1\xfe\x64\x3f\x04\x3a\xaf\xb6\xbe\x4a\x77\xff\x00\
\x68\x75\x87\x61\x7c\xb5\xe8\x3d\xa1\xbf\xfa\xe3\xb0\xfb\x93\xb1\
\x77\xa6\xc3\xdf\x5b\x43\x3f\xd9\x5b\x77\x19\xb8\x36\x96\xf2\xda\
\x1b\x93\x71\xe4\xb6\xfe\xe7\xdb\x1b\x83\x17\x51\x2d\x2d\x75\x05\
\x6d\x3c\xf4\xb5\x74\xd2\xbc\x52\xa3\x23\xb2\x9f\x75\xee\xbe\xaa\
\x7d\xf5\xf0\x9b\xe1\x96\xda\xe8\xce\xe8\xdc\x7b\x77\xe2\x37\xc6\
\x2c\x0e\xe0\xc0\xf5\x37\x63\x66\x70\x79\xcc\x37\x41\xf5\x56\x2f\
\x31\x86\xcb\xe3\x36\x7e\x66\xb7\x1b\x95\xc5\x64\xe8\x76\xa4\x15\
\xb8\xfc\x8e\x3e\xb2\x14\x96\x09\xe1\x74\x96\x29\x10\x32\xb0\x60\
\x0f\xbf\x75\xee\xbe\x37\x9f\xec\xf8\xfc\xe3\xd3\xa3\xfd\x9c\xdf\
\x95\xda\x2d\x6d\x1f\xec\xc4\xf6\xf6\x9b\x7f\x4d\x3f\xdf\x0b\x5b\
\xdf\xba\xf7\x5f\x6f\xfe\x97\xa9\xa9\xac\xe9\xde\xa7\xab\xac\xa9\
\xa8\xac\xac\xaa\xeb\x4d\x89\x53\x57\x57\x57\x34\x95\x35\x55\x55\
\x33\xed\x6c\x54\xb3\xd4\xd4\xd4\x4c\xcf\x34\xf5\x13\xca\xc5\x9d\
\xdc\x96\x66\x24\x92\x49\xf7\xee\xbd\xd0\x97\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xeb\xe5\x1b\xff\x00\x0a\xf8\xff\x00\xb7\xc7\x6e\x9f\xfc\
\x57\x7e\x8b\xff\x00\xdd\x76\x7b\xdf\xba\xf7\x5a\xbc\xfb\xf7\x5e\
\xe8\x5a\xeb\x0e\xfd\xef\x6e\x92\x5c\xca\x74\xc7\x75\x76\xd7\x51\
\x26\xe3\x6a\x16\xdc\x29\xd6\x1d\x8f\xbc\x76\x0a\xe7\x9b\x16\x2a\
\x86\x35\xb3\x2b\xb5\x33\x38\x91\x94\x6c\x70\xae\x9f\xc0\x67\xd7\
\xe1\xf3\x3e\x8b\x6b\x6b\xfb\xaf\x75\xba\xbf\xfc\x23\x7f\xe4\x5f\
\xc8\x5e\xe9\xf9\xab\xf2\xab\x11\xdc\x5d\xf3\xdd\x1d\xb1\x88\xc4\
\x7c\x5c\xa6\xc8\xe2\xf1\x1d\x97\xda\x5b\xe3\x7d\xe2\xb1\xd9\x26\
\xed\x8d\x91\x4d\xfc\x4a\x87\x1d\xba\x33\x99\x5a\x4a\x4c\x82\xd2\
\xcd\x24\x42\x68\xd1\x64\x11\xca\xeb\x7d\x2e\xc0\xfb\xaf\x75\xf4\
\x0e\xec\x3e\xb0\xeb\x5e\xdc\xdb\xaf\xb3\xfb\x5f\xaf\x36\x37\x67\
\x6d\x29\x2b\x69\x32\x4f\xb5\xfb\x0f\x69\x60\x37\xa6\xdd\x7c\x8d\
\x01\x76\xa1\xaf\x7c\x26\xe4\xc7\xe4\xb1\x8d\x5b\x46\xd2\x31\x8a\
\x53\x16\xb8\xcb\x1d\x24\x5c\xfb\xf7\x5e\xe8\x2e\xd9\xbf\x10\x3e\
\x25\xf5\xd6\xe6\xc4\xef\x5e\xbe\xf8\xbb\xf1\xd7\x62\x6f\x2c\x0c\
\xb3\x4f\x83\xdd\xbb\x37\xa4\xfa\xd3\x6c\x6e\x6c\x34\xf5\x14\xb3\
\xd0\xd4\x4d\x89\xcf\x61\x36\xcd\x0e\x57\x1d\x2c\xf4\x55\x32\x42\
\xed\x0c\xa8\x5a\x29\x19\x0d\xd5\x88\x3e\xeb\xdd\x18\xaf\x7e\xeb\
\xdd\x03\x3f\x23\x7f\xec\x9e\xbb\xe3\xff\x00\x10\xcf\x68\x7f\xef\
\x11\x9c\xf7\xee\xbd\xd7\xc1\xb7\xdf\xba\xf7\x5f\x6f\x1e\x86\xf8\
\x35\xf0\x9b\x2b\xd1\x9d\x2d\x93\xc9\x7c\x3a\xf8\xaf\x5d\x90\xc8\
\x75\x2f\x5c\x56\x56\xd6\x55\xfc\x7b\xea\x4a\x8a\x9a\xaa\xaa\x8d\
\x9b\x86\x96\x79\xe7\x9e\x6d\xa2\xf2\xcd\x2c\xb2\x31\x2c\xcc\x4b\
\x12\x79\x3e\xfd\xd7\xba\x15\xff\x00\xd9\x0b\xf8\x33\xff\x00\x78\
\x61\xf1\x3f\xff\x00\x49\xd7\xa8\x3f\xfb\x0e\xf7\xee\xbd\xd7\xbf\
\xd9\x0b\xf8\x33\xff\x00\x78\x61\xf1\x3f\xff\x00\x49\xd7\xa8\x3f\
\xfb\x0e\xf7\xee\xbd\xd7\xbf\xd9\x0b\xf8\x33\xff\x00\x78\x61\xf1\
\x3f\xff\x00\x49\xd7\xa8\x3f\xfb\x0e\xf7\xee\xbd\xd7\xbf\xd9\x0b\
\xf8\x33\xff\x00\x78\x61\xf1\x3f\xff\x00\x49\xd7\xa8\x3f\xfb\x0e\
\xf7\xee\xbd\xd6\x8c\x7f\xf0\xb4\x3e\x88\xe8\xde\x93\xa5\xfe\x5e\
\x71\xf4\xcf\x4b\x75\x27\x51\x0d\xc1\x3f\xc9\xb6\xdc\x0f\xd6\x1d\
\x6f\xb3\xb6\x0c\x99\xe1\x8e\x8f\xa2\xc6\x35\x33\x52\x6d\x4c\x36\
\x25\xb2\xb1\xe3\x0d\x64\xe6\x99\x67\xf2\x08\x0d\x44\xa5\x2d\xe4\
\x7b\xfb\xaf\x74\x0d\x7f\xc2\x25\x7f\xec\xbb\x3e\x5b\x7f\xe2\xa5\
\x47\xff\x00\xbf\x8b\xaf\x3d\xfb\xaf\x75\xf4\xb1\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd4\xdf\
\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\xf8\x95\x36\xd7\
\xfe\xfa\xae\xbf\xf7\xee\xbd\xd6\xfc\x9f\xf0\x91\xdf\xfb\x73\x17\
\x57\xff\x00\xe2\x6c\xef\xcf\xfd\xed\x9f\xdf\xba\xf7\x55\x01\xff\
\x00\x0a\xc8\xfe\x64\x1f\x3b\x7e\x17\x7c\xd9\xf8\xed\xb1\xbe\x2b\
\xfc\xa4\xed\x7e\x8e\xd9\x9b\xa7\xe2\xcd\x06\xec\xcf\xed\x8d\x89\
\x99\xa6\xc6\xe2\x32\x9b\x9d\xfb\x6b\xb3\x30\xf3\x67\xaa\xe0\x92\
\x86\x79\x26\xc8\xcd\x8a\xc5\x52\xd3\x97\x66\x20\x45\x4e\x81\x42\
\xdd\xcb\x7b\xaf\x75\xab\x17\xfc\x3f\x4f\xf3\x8b\xff\x00\xbd\x86\
\x7c\x8c\xff\x00\xd0\xa6\x8f\xff\x00\xad\x7e\xfd\xd7\xba\xf7\xfc\
\x3f\x4f\xf3\x8b\xff\x00\xbd\x86\x7c\x8c\xff\x00\xd0\xa6\x8f\xff\
\x00\xad\x7e\xfd\xd7\xba\xd8\x87\xfe\x13\x07\xfc\xd1\xbf\x98\x57\
\xcb\xcf\xe6\x7d\x4b\xd4\xbf\x25\xbe\x5b\x77\x07\x72\xf5\xaf\xfb\
\x2f\xbd\xb7\xb9\x9f\x65\xef\x4c\xed\x3e\x43\x05\x26\x77\x0d\x53\
\xb4\xa3\xc5\x64\xde\x96\x3a\x18\x0f\xdd\xd0\x0a\xe9\x7c\x6e\x18\
\x11\xac\x8f\xa1\x23\xdf\xba\xf7\x5b\x42\xff\x00\xc2\x99\xbf\xed\
\xc8\x7f\x38\xff\x00\xed\x43\xd4\x1f\xfc\x10\x5d\x51\xef\xdd\x7b\
\xaf\x98\xbf\xf2\x64\xff\x00\xb7\xb4\x7f\x2e\x1f\xfc\x5c\xef\x8f\
\x7f\xfb\xf2\xb6\xff\x00\xbf\x75\xee\xbe\xc9\x7f\x2b\x7f\xec\x97\
\x3e\x49\xff\x00\xe2\x02\xee\x2f\xfd\xf7\x7b\x8b\xdf\xba\xf7\x5f\
\x08\x4f\x7e\xeb\xdd\x7d\xec\x7a\x77\xfe\x65\x17\x56\x7f\xe2\x38\
\xd8\xff\x00\xfb\xcc\xe2\xfd\xfb\xaf\x75\xf2\x8d\xfe\x63\x5f\xce\
\xa3\xf9\xad\xf5\x3f\xf3\x02\xf9\xbb\xd6\x5d\x7b\xf3\xbf\xbf\xf6\
\xbe\xc3\xd8\x3f\x2c\x3e\x40\x6d\x0d\x99\xb6\x31\x7b\x92\x8a\x0c\
\x56\xdb\xda\xbb\x7b\xb4\x77\x3e\x27\x6f\xed\xfc\x5d\x38\xc5\xda\
\x0c\x6e\x1b\x13\x49\x0d\x34\x0b\xc9\x11\xc6\x35\x16\x62\xcc\x7d\
\xd7\xba\x26\x5f\xf0\xfd\x3f\xce\x2f\xfe\xf6\x19\xf2\x33\xff\x00\
\x42\x9a\x3f\xfe\xb5\xfb\xf7\x5e\xeb\xe8\xf3\xff\x00\x09\x93\xf9\
\x2b\xdf\x9f\x2c\x7f\x95\xb6\xd6\xee\x0f\x92\x5d\xaf\xbb\xfb\x9b\
\xb3\x6b\xfb\xb3\xb8\xf0\x95\x3b\xd3\x7b\xd7\xc7\x91\xce\x3e\x1b\
\x0b\x98\xc7\x43\x8a\xc5\x9a\xa8\xe0\x82\xf4\x78\xf4\x91\xc4\x4a\
\x41\xd0\x1c\xa8\x3a\x40\x03\xdd\x7b\xad\x52\xff\x00\xe1\x6c\xdf\
\xf6\xf0\x1f\x8a\xbf\xf8\xa7\x54\x1f\xfb\xfa\xfb\x67\xdf\xba\xf7\
\x5a\x64\x7b\xf7\x5e\xeb\x6c\x4f\xf8\x49\x6f\xc3\x3f\x8b\x1f\x34\
\xbe\x53\xfc\xa6\xd9\x9f\x2a\xba\x33\x61\x77\xa6\xd8\xda\x3f\x1f\
\xb0\x9b\x9b\x6c\x61\xb7\xf6\x36\x5c\x9d\x1e\x0f\x3b\x37\x63\x60\
\xf1\x73\xe4\xf1\xf1\xc5\x53\x4f\xe2\xab\x9b\x1f\x52\xf1\x33\xf2\
\x74\x12\x05\x81\x37\xf7\x5e\xeb\x61\xcf\xe7\xdd\xf1\x4f\xe3\xaf\
\xf2\x8e\xf8\x0b\x5b\xf2\xe7\xf9\x6a\x75\x16\xd0\xf8\x65\xf2\x56\
\x9b\xb8\xba\xdb\xae\x61\xee\x6e\x93\xa2\x97\x6f\x6f\x64\xd8\x9b\
\xcf\xf8\xf3\xee\xad\xaa\x32\x55\x13\xd7\xaf\xf0\x7c\xf3\xe2\x29\
\x4d\x4c\x5a\x3f\x73\xc0\x97\x36\x16\x3e\xeb\xdd\x6b\x67\xfc\xa1\
\xff\x00\x98\x6f\xcd\x7f\xe6\x39\xfc\xc6\xfe\x31\x7c\x2d\xf9\xd3\
\xf2\x3f\xb2\x7e\x50\xfc\x53\xef\x2d\xc7\xbc\x30\xfd\xbb\xd0\xfd\
\xaf\x95\x87\x35\xd7\xdb\xff\x00\x1d\xb6\x3a\xcf\x7a\xef\xed\xb7\
\x4d\xb8\xb1\x50\x52\xd1\x3d\x5c\x78\x3d\xed\xb4\xf1\x99\x4a\x71\
\xe4\x5d\x35\x74\x31\x31\xb8\x05\x4f\xba\xf7\x5b\x9c\x7c\xfd\xfe\
\x54\x3f\xcb\x87\xe2\x1f\xc1\xef\x97\x1f\x29\xfe\x35\x7c\x39\xe9\
\x5e\x9e\xf9\x0d\xf1\xdb\xe3\xb7\x6d\xf7\x47\x47\x76\xd6\xcf\xdb\
\xf5\x34\x5b\xbb\xac\x3b\x67\xad\xb6\x56\x5f\x77\x75\xf7\x60\x6d\
\x4a\xe9\x2b\xe6\x4a\x1d\xc9\xb3\xf7\x56\x26\x97\x21\x43\x31\x46\
\x11\xd4\xd3\xa1\x2a\xcb\x75\x3e\xeb\xdd\x7c\xf9\xfa\x8b\xf9\xda\
\x7f\x36\x2e\xc7\xed\x7e\xaf\xeb\xcd\xf1\xf3\xcb\xe4\x06\xe4\xd9\
\x5b\xeb\xb1\x76\x46\xce\xdd\xfb\x77\x25\xb9\xe9\xa4\xc7\xe7\xf6\
\xc6\xe5\xdc\xd8\xbc\x2e\x7b\x09\x91\x44\xc7\x23\xcd\x43\x95\xc5\
\x56\xcb\x04\xc9\xa8\x6b\x8e\x46\x07\xeb\xef\xdd\x7b\xaf\xa6\xa7\
\xfc\x30\xcf\xf2\x75\xd6\x5f\xfe\x1b\xcb\xe3\x8e\xa2\xc5\xad\xfd\
\xd3\xa9\xd1\x72\x6f\xc4\x7f\xc4\xbc\x61\x79\xfa\x5a\xc3\xdf\xba\
\xf7\x5f\x31\xbe\xc7\xfe\x78\x3f\xcd\xbb\x65\x76\x16\xfe\xd9\x9b\
\x5f\xe7\xdf\xc8\x6c\x3e\xd9\xda\x9b\xd3\x75\xed\xad\xbd\x88\xa4\
\xdd\x34\xc9\x4d\x8a\xc1\xe1\x33\xb5\xf8\xcc\x56\x36\x90\x1c\x69\
\x68\xa9\xa8\x28\x29\xa3\x8a\x25\x07\xd0\x88\x00\xfa\x7b\xf7\x5e\
\xeb\xea\xe3\xfc\xb2\x7b\x03\x7b\xf6\xc7\xf2\xea\xf8\x35\xd9\xdd\
\x95\xb9\xf2\xbb\xd7\xb0\xbb\x07\xe2\x8f\x43\x6f\x2d\xef\xbb\xf3\
\x92\xc7\x3e\x67\x73\xee\xad\xc7\xd6\xbb\x77\x2b\x9d\xce\xe5\x26\
\x8a\x38\x63\x96\xbf\x29\x92\xaa\x92\x69\x59\x51\x41\x77\x24\x01\
\xef\xdd\x7b\xaf\x9e\x5f\xf3\xdc\xfe\x6f\x7f\xcc\xd3\xe3\x97\xf3\
\x68\xf9\x97\xd2\xfd\x1d\xf3\x4b\xbb\xfa\xd3\xaa\xf6\x2e\xf2\xd8\
\xd4\x3b\x43\x63\x6d\x8d\xc3\x4d\x49\x80\xdb\xd4\x79\x1e\xa0\xeb\
\xcc\xed\x6d\x36\x36\x95\xf1\xf2\x98\x62\xa8\xcb\x65\x6a\x27\x6f\
\x51\x26\x49\x58\x93\xef\xdd\x7b\xad\x82\x3f\x90\xc7\xc4\xcf\x8d\
\xdf\xcd\xaf\xe0\x06\x1b\xe5\xe7\xf3\x26\xe9\xed\x9b\xf3\x27\xe4\
\xce\x4f\xb6\xbb\x37\x60\xd7\xf7\x4f\x75\x50\xcb\xb8\x77\xcd\x56\
\xcb\xd9\x75\x78\xb8\x76\xa6\xda\x97\x27\x04\xf4\x2a\xd8\x9c\x04\
\x55\xf3\x2d\x34\x5a\x2d\x18\x91\x80\xe3\xdf\xba\xf7\x57\x3b\xff\
\x00\x0c\x2d\xfc\x9d\x3f\xef\x5e\x7f\x1c\xff\x00\xf4\x16\xac\xff\
\x00\xeb\xa7\xbf\x75\xee\xbd\xff\x00\x0c\x2d\xfc\x9d\x3f\xef\x5e\
\x7f\x1c\xff\x00\xf4\x16\xac\xff\x00\xeb\xa7\xbf\x75\xee\xb5\xe4\
\xff\x00\x85\x18\x75\x57\x5c\x7f\x25\xdf\x8d\xbd\x0b\xdd\xbf\xca\
\xb7\x66\xe1\x3e\x0c\xf6\xe7\x6b\xf7\x85\x4f\x56\x76\x2f\x60\xf4\
\x35\x3b\xed\xbd\xc9\xbb\xfa\xe5\x36\x16\xe2\xdd\xbf\xdc\xdc\xcd\
\x65\x4c\x99\x05\xa9\xc1\x1d\xcd\x80\xa1\xae\xf1\x69\x1f\xe5\x14\
\xa8\xc0\x8b\x10\x7d\xd7\xba\x23\x1f\xf0\x98\xff\x00\xe6\x95\xfc\
\xc3\x7e\x5c\x7f\x34\x6c\x07\x51\xfc\x94\xf9\x73\xdc\x5d\xc7\xd6\
\x73\x74\x67\x6f\xee\x1a\x8d\x93\xbc\xf3\xb4\xf5\xf8\x1a\x8c\xd6\
\x16\x97\x04\xd8\x9c\x8c\xb4\xa9\x43\x09\x35\x58\xf9\x2a\x19\xa2\
\x70\xc0\xa9\x24\x7d\x09\x07\xdd\x7b\xad\xc0\x7f\x9f\x0f\x74\x76\
\xc7\xc7\x9f\xe5\x2b\xf3\x2f\xb9\xba\x3b\x7f\xee\x3e\xae\xed\x5d\
\x8b\xb3\xb6\x2d\x7e\xd0\xdf\x9b\x4a\xaa\x3a\x2d\xc3\xb7\xea\xab\
\xbb\x83\xae\xb0\xd9\x09\x71\xb5\x72\xc3\x50\xb0\x3d\x76\x1f\x25\
\x53\x4b\x23\x05\xd4\x22\x9d\xb4\x95\x6b\x30\xf7\x5e\xeb\xe7\x7f\
\xfc\xb7\xbf\x9d\x37\xf3\x5a\xed\xbf\xe6\x11\xf0\x77\xac\x3b\x13\
\xe7\x7f\x7f\x6e\x9d\x85\xbf\xfe\x59\xfc\x7e\xda\x1b\xd3\x6b\xe5\
\x37\x25\x14\xf8\xad\xcb\xb5\x77\x0f\x69\x6d\x8c\x56\xe0\xdb\xd9\
\x5a\x76\xc5\xda\x7c\x6e\x6b\x13\x57\x35\x34\xeb\xc3\x18\xe5\x3a\
\x4a\xb0\x56\x1e\xeb\xdd\x7d\x53\x7e\x46\xff\x00\xd9\x3d\x77\xc7\
\xfe\x21\x9e\xd0\xff\x00\xde\x23\x39\xef\xdd\x7b\xaf\x83\x6f\xbf\
\x75\xee\xbe\xf2\xbf\x1d\xbf\xec\x9f\xba\x2f\xff\x00\x10\xe7\x58\
\xff\x00\xef\x13\x84\xf7\xee\xbd\xd7\xcb\x13\xf9\x9e\xff\x00\x3a\
\x0f\xe6\xab\xd3\xbf\xcc\x6b\xe7\x47\x56\x75\xaf\xce\xbe\xfc\xda\
\x3d\x7b\xd7\xdf\x2b\xbb\xd7\x68\xec\x9d\xa9\x88\xdc\x74\x54\xf8\
\x8d\xb3\xb5\xb0\x3d\x8b\x9f\xc6\xe0\xb6\xfe\x2a\x98\x62\xc8\xa7\
\xc6\xe1\xf1\x94\xf1\x53\xc2\xbc\xb7\x8e\x30\x58\xb3\x16\x63\xee\
\xbd\xd1\x17\xff\x00\x87\xe9\xfe\x71\x7f\xf7\xb0\xcf\x91\x9f\xfa\
\x14\xd1\xff\x00\xf5\xaf\xdf\xba\xf7\x5e\xff\x00\x87\xe9\xfe\x71\
\x7f\xf7\xb0\xcf\x91\x9f\xfa\x14\xd1\xff\x00\xf5\xaf\xdf\xba\xf7\
\x5b\xe8\xff\x00\xc2\x4c\x7e\x63\xfc\xa3\xf9\xa1\xf1\x13\xe4\xde\
\xf9\xf9\x53\xde\x3b\xf3\xbd\x37\x66\xd5\xf9\x23\x4d\xb5\x76\xde\
\x73\x7f\x64\xe3\xc9\xd7\x61\x76\xf1\xeb\x0d\x9b\x96\x7c\x4d\x04\
\x91\xd3\xd3\x88\x68\x9f\x23\x5d\x2c\xc5\x2c\x47\x91\xc9\xfa\x93\
\x7f\x75\xee\xaa\xf7\xfe\x17\x21\xfe\x63\xf9\x6e\x7f\xcb\x5f\x94\
\xdf\xf4\x27\x41\xfb\xf7\x5e\xe8\xa2\xff\x00\xc2\x25\x7f\xec\xbb\
\x3e\x5b\x7f\xe2\xa5\x47\xff\x00\xbf\x8b\xaf\x3d\xfb\xaf\x75\xf4\
\xb1\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5f\xff\xd5\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\
\xbf\xf8\x95\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\xbd\xd6\xfc\x9f\xf0\
\x91\xdf\xfb\x73\x17\x57\xff\x00\xe2\x6c\xef\xcf\xfd\xed\x9f\xdf\
\xba\xf7\x5a\xd3\xff\x00\xc2\xd9\xbf\xed\xe0\x7f\x15\xbf\xf1\x4e\
\x71\xff\x00\xfb\xfa\xfb\x6f\xdf\xba\xf7\x5a\x64\xfb\xf7\x5e\xeb\
\xde\xfd\xd7\xba\xda\x77\xfe\x11\xeb\xff\x00\x6f\x81\xa6\xff\x00\
\xc5\x60\xee\xdf\xfd\xcd\xd8\xde\xfd\xd7\xba\xdd\xef\xfe\x14\xcd\
\xff\x00\x6e\x43\xf9\xc7\xff\x00\x6a\x1e\xa0\xff\x00\xe0\x82\xea\
\x8f\x7e\xeb\xdd\x7c\xc5\xff\x00\x93\x27\xfd\xbd\xa3\xf9\x70\xff\
\x00\xe2\xe7\x7c\x7b\xff\x00\xdf\x95\xb7\xfd\xfb\xaf\x75\xf6\xa6\
\xdd\xfb\x57\x07\xbe\xb6\x9e\xe8\xd9\x1b\x9e\x8c\xe4\x36\xd6\xf1\
\xdb\xb9\xad\xab\xb8\x68\x16\x7a\x8a\x53\x5d\x83\xdc\x38\xda\x9c\
\x46\x5a\x8c\x55\x52\x4b\x0d\x55\x31\xa9\xa0\xac\x91\x3c\x91\x3a\
\x48\x9a\xae\xac\x08\x07\xdf\xba\xf7\x54\x0b\x1f\xfc\x25\x77\xf9\
\x20\xc6\x88\x87\xe2\x66\x7a\x40\x8a\xaa\x5a\x4f\x90\x7f\x21\x8b\
\xbe\x90\x06\xa7\x75\xec\xf4\x62\xcd\x6b\x92\x2d\xcf\xbf\x75\xee\
\xb4\x5c\xdd\xff\x00\xf0\xa7\x0f\xe7\x43\xb0\x37\x5e\xe7\xd8\x7b\
\x5f\xe5\x5e\x1b\x1f\xb6\xb6\x46\xe0\xcc\xed\x0d\xb9\x42\x7a\x17\
\xa0\xaa\x9a\x87\x05\xb6\xb2\x35\x38\x5c\x3d\x21\xa9\xae\xeb\x6a\
\xaa\xba\xb6\xa5\xc7\xd1\x46\x86\x49\xe4\x96\x59\x0a\xea\x91\x9d\
\x89\x63\xee\xbd\xd6\xe5\x7f\x16\x3f\x90\x47\xf2\xb1\xf9\xcf\xf1\
\x9f\xe3\xf7\xcd\x2f\x93\x5f\x1e\x32\xbb\xfb\xe4\x77\xcb\x2e\x98\
\xeb\x4f\x91\x9d\xf9\xbe\xe9\x7b\x8b\xb9\x76\x9d\x36\xf5\xee\x5e\
\xe5\xd9\xf8\x8e\xc1\xec\xbd\xd9\x4d\xb5\x76\x9e\xfb\xc3\x6d\x6d\
\xb5\x4f\xb8\x77\x8e\x7e\xb2\xad\x28\x31\xd4\x94\xd4\x54\x8b\x28\
\x8a\x28\xc2\x28\xf7\xee\xbd\xd7\xcf\x7b\xf9\xd1\xfc\x73\xe9\xef\
\x89\x3f\xcd\x03\xe5\xd7\xc7\x4e\x81\xda\xb3\x6c\x9e\x9f\xea\xed\
\xf3\xb7\x30\xfb\x23\x6b\x4f\x9d\xce\x6e\x69\x30\xf4\x19\x0e\xb8\
\xd9\x79\xfa\xd8\x0e\x73\x72\xd7\xe5\x33\xb5\xe9\x2e\x63\x2f\x53\
\x2a\x9a\x9a\x89\xa4\x45\x70\x9a\x88\x51\xef\xdd\x7b\xaf\xa1\xc7\
\xfc\x24\x3b\xfe\xdc\xdb\xb2\xbf\xf1\x3f\xf7\xb7\xfe\xef\x71\x9e\
\xfd\xd7\xba\xb3\x9f\x9c\xdf\xc9\xaf\xf9\x7a\x7f\x31\xfe\xc8\xda\
\x3d\xb3\xf2\xf7\xa5\x32\x5d\x99\xbe\xb6\x36\xc8\x5e\xbb\xdb\x79\
\x6a\x2e\xcd\xec\xfd\x8f\x15\x16\xd3\x8f\x3d\x96\xdc\xb1\x63\xa5\
\xc7\x6c\x6d\xdd\xb7\xb1\xf5\x92\x45\x98\xce\x55\xca\xb3\x4d\x13\
\xcc\x04\xc5\x75\x69\x0a\x07\xba\xf7\x44\xa7\xfe\x81\x5f\xfe\x48\
\x5f\xf7\x89\x79\xcf\xfd\x28\x1f\x90\x9f\xfd\xb3\xbd\xfb\xaf\x74\
\x78\x3e\x0b\x7f\x27\x8f\xe5\xfb\xfc\xb7\x77\xd6\xf6\xec\x8f\x87\
\xfd\x31\x92\xeb\x2d\xdd\xd8\x7b\x4a\x97\x64\x6e\xbc\x8d\x6f\x65\
\xf6\x66\xf8\x8b\x21\xb6\xe8\xf3\x10\x67\xa1\xa2\x8a\x87\x7c\xee\
\xcd\xc5\x45\x43\x27\xf1\x3a\x58\xe4\x69\x60\x8e\x39\x58\x20\x52\
\xda\x78\xf7\xee\xbd\xd1\x89\xf9\x9f\xf0\x8b\xe3\x77\xf3\x02\xe9\
\x79\x3e\x3f\x7c\xa9\xd8\xd5\x7d\x85\xd5\x72\xee\xbd\xbd\xbd\x5f\
\x6f\x51\x6e\xbd\xd7\xb3\x67\x3b\x8b\x6b\xb5\x59\xc3\xd6\x0c\xd6\
\xcd\xcc\xe0\xb3\x4b\x1c\x0b\x5f\x32\xbc\x42\x71\x14\xaa\xe4\x3a\
\x9e\x2d\xee\xbd\xd6\xb7\xdf\xcc\x63\xf9\x46\x7c\x0c\xfe\x4f\x5f\
\x0b\xbb\xcf\xf9\x91\x7f\x2f\xae\x9e\xaf\xe9\x4f\x98\x7f\x17\xf0\
\xdb\x67\x71\xf4\xa7\x68\xe4\x7b\x1b\xb2\xbb\x36\x8f\x69\xe5\x77\
\x9e\xfb\xda\xdd\x5d\xb9\xaa\x26\xd8\xbd\x9b\xbb\x77\x66\xc3\xdc\
\x03\x23\xb1\xb7\xce\x52\x8c\x26\x47\x1d\x55\x1c\x4d\x50\x25\x45\
\x12\x46\x8c\x3d\xd7\xba\xd3\x1f\xb9\xbf\xe1\x48\x3f\xcd\xff\x00\
\xbf\xfa\x8b\xb3\xba\x2f\xb5\x7e\x4d\xe2\x37\x1f\x59\xf7\x0e\xc4\
\xdc\xfd\x6b\xbf\xf0\x31\x74\x8f\x47\x61\xa6\xcc\x6c\xfd\xe3\x8a\
\xa9\xc2\x6e\x1c\x64\x39\x7c\x2f\x5e\x50\x65\xf1\x72\x57\xe2\xeb\
\x25\x87\xcf\x4d\x3c\x53\xc6\x1c\x94\x75\x6b\x1f\x7e\xeb\xdd\x54\
\xdf\xc6\xcf\xfb\x28\xae\x82\xff\x00\xc4\xd5\xd5\x9f\xfb\xdc\xe0\
\xbd\xfb\xaf\x75\xf7\x8e\xf7\xee\xbd\xd7\xc1\x63\xbc\x3f\xe6\x75\
\x76\xff\x00\xfe\x25\x1e\xc0\xff\x00\xde\xb3\x2d\xef\xdd\x7b\xaf\
\xb4\xa7\xf2\x88\xff\x00\xb7\x58\x7f\x2e\xaf\xfc\x52\xcf\x8d\x9f\
\xfb\xe9\x76\xaf\xbf\x75\xee\x8b\x6f\xc9\x9f\xf8\x4f\x97\xf2\xa4\
\xf9\x7f\xde\xbd\x85\xf2\x47\xbf\xfe\x3a\x65\xf7\x9f\x70\x76\x95\
\x7e\x33\x29\xbd\xb7\x2d\x3f\x72\xf7\x3e\xda\x83\x2b\x5b\x87\xc0\
\xe2\xb6\xcd\x04\xd1\xe0\xb6\xce\xfc\xc4\xe0\xb1\xfe\x2c\x36\x16\
\x9a\x22\xb4\xf4\xf1\x2b\x98\xf5\x30\x2e\xcc\x4f\xba\xf7\x5a\x7a\
\xff\x00\x36\x7f\x9e\x9f\x28\xff\x00\x90\x57\xcb\xcc\x9f\xf2\xf9\
\xfe\x56\x5d\x87\x4f\xf1\xe3\xe2\x86\x13\x60\x6c\x9e\xdb\xc7\x75\
\xc6\x57\x68\xec\xee\xe1\xab\x83\x7f\x76\x74\x15\xd5\x9b\xd3\x32\
\x77\xaf\x72\x60\xb7\xde\xf7\x96\x2c\xac\xf8\xb8\x0a\xd2\xbe\x45\
\xa9\x29\x82\x5a\x18\xe3\x04\x83\xee\xbd\xd5\x67\x7f\xd0\x53\xdf\
\xce\xf7\xfe\xf2\xd7\x0b\xff\x00\xa4\xff\x00\xf1\xef\xff\x00\xb5\
\x8f\xbf\x75\xee\xb6\xfb\xff\x00\x84\xae\xff\x00\x34\x6f\x9b\xdf\
\xcc\xab\x1f\xf3\x62\xaf\xe6\x47\x6e\x50\xf6\x9b\x75\x1d\x7f\x42\
\xc3\xd7\xa2\x93\xaf\xba\xfb\x62\xb6\x09\x77\xa5\x37\x6c\xb6\xe7\
\x57\x6d\x87\xb6\xf6\xe2\x65\x23\xc8\x9d\xaf\x40\x54\x55\x2c\xad\
\x0b\x44\xda\x18\x09\x18\x7b\xf7\x5e\xe8\x16\xff\x00\x85\xb6\x7f\
\xd9\x0e\x7c\x43\xff\x00\xc5\xae\xac\xff\x00\xdf\x43\xbe\x7d\xfb\
\xaf\x75\xa0\x1f\xc3\x3f\x9b\x3f\x23\xfe\x00\xf7\x4d\x3f\xc8\x2f\
\x8a\xfb\xe6\x97\xaf\x3b\x5a\x9b\x6b\xee\x1d\x9d\x0e\xe2\xac\xda\
\xbb\x57\x78\xc2\xbb\x7f\x74\x45\x4f\x16\x66\x8c\xe1\x77\x96\x1b\
\x3b\x85\x67\xa8\x14\x91\x95\x94\xd3\x99\x62\x64\x05\x18\x73\xef\
\xdd\x7b\xa3\xeb\xf2\x63\xfe\x14\x19\xfc\xd7\x3e\x5f\x74\x5f\x61\
\x7c\x6e\xef\xef\x91\xb8\xad\xe9\xd4\x1d\xa5\x8f\xc6\xe2\xf7\xb6\
\xd9\x83\xa6\xfa\x63\x6d\xcf\x95\xa1\xc4\x67\xb1\x7b\x96\x86\x18\
\xf3\x9b\x67\x61\x62\x73\xb8\xff\x00\x16\x67\x0b\x4d\x29\x6a\x7a\
\x88\x99\xc4\x7a\x58\x94\x66\x53\xee\xbd\xd1\x63\xfe\x52\xff\x00\
\xf6\xf4\x4f\xe5\xdd\xff\x00\x8b\xab\xf1\x9f\xff\x00\x7f\x06\xd1\
\xf7\xee\xbd\xd7\xda\x2f\xe4\x6f\xfd\x93\xd7\x7c\x7f\xe2\x19\xed\
\x0f\xfd\xe2\x33\x9e\xfd\xd7\xba\xf8\x36\xfb\xf7\x5e\xeb\xef\x2b\
\xf1\xdb\xfe\xc9\xfb\xa2\xff\x00\xf1\x0e\x75\x8f\xfe\xf1\x38\x4f\
\x7e\xeb\xdd\x7c\x62\xff\x00\x9c\x47\xfd\xbd\x6b\xf9\x8c\x7f\xe2\
\xe7\xfc\x8a\xff\x00\xdf\xa3\xb9\x3d\xfb\xaf\x75\x5b\xde\xfd\xd7\
\xba\xf7\xbf\x75\xee\xbe\x95\xbf\xf0\x89\x4f\xfb\x21\x8f\x97\x3f\
\xf8\xb6\x34\xdf\xfb\xe7\xf6\x17\xbf\x75\xee\x8a\x9f\xfc\x2e\x43\
\xfc\xc7\xf2\xdc\xff\x00\x96\xbf\x29\xbf\xe8\x4e\x83\xf7\xee\xbd\
\xd1\x45\xff\x00\x84\x4a\xff\x00\xd9\x76\x7c\xb6\xff\x00\xc5\x4a\
\x8f\xff\x00\x7f\x17\x5e\x7b\xf7\x5e\xeb\xe9\x63\xef\xdd\x7b\xaf\
\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbf\xff\xd6\xdf\
\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\xf8\x95\x36\xd7\
\xfe\xfa\xae\xbf\xf7\xee\xbd\xd6\xfc\x9f\xf0\x91\xdf\xfb\x73\x17\
\x57\xff\x00\xe2\x6c\xef\xcf\xfd\xed\x9f\xdf\xba\xf7\x5a\xd3\xff\
\x00\xc2\xd9\xbf\xed\xe0\x7f\x15\xbf\xf1\x4e\x71\xff\x00\xfb\xfa\
\xfb\x6f\xdf\xba\xf7\x5a\x64\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xda\
\x77\xfe\x11\xeb\xff\x00\x6f\x81\xa6\xff\x00\xc5\x60\xee\xdf\xfd\
\xcd\xd8\xde\xfd\xd7\xba\xdd\xef\xfe\x14\xcd\xff\x00\x6e\x43\xf9\
\xc7\xff\x00\x6a\x1e\xa0\xff\x00\xe0\x82\xea\x8f\x7e\xeb\xdd\x7c\
\xc5\xff\x00\x93\x27\xfd\xbd\xa3\xf9\x70\xff\x00\xe2\xe7\x7c\x7b\
\xff\x00\xdf\x95\xb7\xfd\xfb\xaf\x75\xf6\xc8\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xf0\x4e\xee\x2f\xf9\x9b\xbd\xa7\xff\x00\x89\x1f\x7c\
\x7f\xef\x4d\x94\xf7\xee\xbd\xd7\xda\xc3\xf9\x4f\xff\x00\xdb\xb0\
\x7f\x97\x97\xfe\x29\x67\xc6\x7f\xfd\xf3\xdb\x47\xdf\xba\xf7\x5f\
\x2b\x9f\xf8\x51\x9f\xfd\xbe\xb7\xe7\xdf\xfe\x24\xdd\xa1\xff\x00\
\xbe\x83\xae\x7d\xfb\xaf\x74\xb4\xfe\x5f\xbf\xf0\xa2\xcf\x9f\xbf\
\xcb\x5f\xe3\x96\x2b\xe2\xf7\xc7\x8c\x27\xc7\x8a\xde\xb7\xc3\xee\
\xbd\xd5\xbc\x69\x6a\x7b\x1b\xae\x37\x36\xe3\xdd\x0d\x95\xde\x15\
\x70\xd6\xe5\x63\xa8\xca\xe2\x7b\x0b\x6d\xd1\xcb\x47\x1c\xf0\x8f\
\x0a\xfd\xa8\x74\x53\x62\xec\x00\xb7\xba\xf7\x47\x67\xfe\x83\x24\
\xfe\x6d\xff\x00\xf3\xcd\x7c\x3f\xff\x00\xd1\x37\xbe\x3f\xfb\x70\
\x7b\xf7\x5e\xeb\xdf\xf4\x19\x27\xf3\x6f\xff\x00\x9e\x6b\xe1\xff\
\x00\xfe\x89\xbd\xf1\xff\x00\xdb\x83\xdf\xba\xf7\x5b\x1a\x7f\xc2\
\x6f\x7f\x9e\x87\xcd\x5f\xe6\xb7\xf2\x27\xe4\x1f\x57\x7c\x9e\xc5\
\x74\x86\x3f\x6c\x75\x87\x4b\x62\xf7\xf6\xdc\x7e\xac\xd8\xbb\x83\
\x6a\x65\x1f\x3d\x59\xbe\x71\x1b\x76\x55\xc9\x55\x66\x37\xb6\xe9\
\x8a\xaa\x80\xe3\xeb\xe4\x22\x35\x8e\x26\x12\x05\x3a\xad\x70\x7d\
\xd7\xba\xb5\x3f\xe7\xf9\xfc\xc1\x3b\xe3\xf9\x67\xfc\x00\xac\xf9\
\x33\xf1\xce\x93\x60\xd6\xf6\x35\x3f\x72\x75\xae\xc4\x58\x7b\x27\
\x6f\xe4\xb7\x36\xdb\xfe\x05\xba\xd7\x70\x36\x51\x8e\x33\x15\x9e\
\xdb\x95\x4d\x5e\x0e\x32\x21\x14\x9f\x72\x15\x01\x6b\xa9\x24\x5b\
\xdd\x7b\xad\x41\x7e\x24\xff\x00\x3b\xbf\x99\x5f\xcf\x53\xe4\x47\
\x5a\x7f\x2a\x1f\x9a\xd8\xce\x97\xc4\x7c\x60\xf9\x81\x91\xcb\xed\
\x6e\xd7\xc9\x74\x6e\xc9\xdc\x1b\x0f\xb5\xa9\x71\xbb\x03\x6c\xe6\
\xfb\x8f\x00\xdb\x43\x76\x67\xf7\xb6\xf6\xc3\x62\x2a\x24\xdd\xfd\
\x75\x8e\x5a\x96\xa8\xc5\x56\x24\xb4\x46\x68\x82\xa9\x70\xeb\xee\
\xbd\xd5\x98\xff\x00\x30\x2f\xf8\x4a\x6f\xf2\xc3\xf8\xc5\xf0\x67\
\xe5\xef\xc8\xbe\xba\xdc\x1f\x29\xaa\x37\xf7\x47\x7c\x71\xee\x0e\
\xd4\xd9\x70\xee\x5e\xd5\xd9\xd9\x4d\xbf\x2e\xe8\xd8\xdb\x1b\x35\
\xb8\xf0\x71\xe6\xf1\xb4\x9d\x5d\x8b\xa9\xae\xc5\x3e\x47\x1f\x18\
\xa8\x8a\x3a\x88\x5d\xe2\x2c\x15\xd4\xd8\x8f\x75\xee\xbe\x75\x3b\
\x2f\x75\xe5\x36\x1e\xf1\xda\x7b\xe3\x08\xb4\x8f\x9a\xd9\x9b\x9b\
\x03\xba\xf1\x09\x5f\x01\xaa\xa0\x6c\xa6\xdd\xca\x52\xe5\xf1\xeb\
\x5b\x4c\xb2\x44\x6a\x29\x1a\xae\x8d\x04\x88\x1d\x4b\xa5\xc5\xc5\
\xef\xef\xdd\x7b\xad\xa6\x8f\xfc\x2c\x9b\xf9\xb7\x16\x2c\x36\xbf\
\xc3\xd5\x04\x92\x10\x74\xde\xfb\xd2\xa0\xfd\x14\x16\xee\x22\xf6\
\x1f\xe2\x49\xff\x00\x1f\x7e\xeb\xdd\x6c\xbd\xb6\xff\x00\xe1\x22\
\xff\x00\xca\xb7\xb5\xf6\xe6\x0b\xb4\x77\x3e\xe5\xf9\x69\x1e\xe5\
\xec\xac\x2e\x33\x7f\xee\x05\xc6\x76\xee\xca\xa6\xc7\x47\x9c\xde\
\x54\x50\xee\x2c\xaa\x63\xa9\xaa\x3a\x9a\xb6\x6a\x7a\x18\xeb\xf2\
\x52\x08\x52\x49\x66\x75\x8c\x00\xce\xe4\x16\x3e\xeb\xdd\x6c\xf5\
\xf1\xf3\xa4\x36\x67\xc6\x8e\x8a\xe9\xef\x8f\x1d\x75\x2e\x72\x7d\
\x85\xd2\x1d\x6b\xb3\x3a\xab\x66\x4f\xb9\xb2\x11\x65\xb7\x14\xbb\
\x63\x62\x60\x28\x36\xde\x12\x4c\xe6\x4e\x0a\x4c\x7c\x39\x0c\xab\
\xe3\xf1\xd1\x99\xe6\x48\x21\x59\x24\xbb\x04\x50\x6c\x3d\xd7\xba\
\x18\x3d\xfb\xaf\x75\x43\x9f\xcc\x17\xfe\x13\xad\xf0\x13\xf9\x95\
\xfc\x8b\xc8\xfc\x9f\xf9\x11\x9c\xf9\x0f\x43\xd8\xf9\x3d\xa1\xb5\
\xb6\x55\x45\x2f\x5c\x76\x36\xd8\xdb\x7b\x5d\x71\x1b\x42\x0a\xaa\
\x7c\x5c\x90\x62\xf2\xdd\x7b\xb9\x6b\x23\xad\x92\x3a\xb6\xf3\x37\
\xdd\x18\xdc\x80\x42\x29\xd5\x7f\x75\xee\xb4\x11\xff\x00\x85\x1f\
\x7f\x2b\x4f\x8c\xff\x00\xca\x9b\xe4\xd7\x43\x75\x17\xc6\x1a\xfe\
\xcf\xc8\x6d\x5e\xc8\xe8\x99\x3b\x1f\x71\x49\xda\x5b\xa7\x11\xba\
\xf2\xc9\xb8\x17\xb0\x37\x5e\xd9\x09\x8e\xac\xc3\xed\x8d\xad\x0d\
\x36\x3f\xf8\x76\x16\x12\x62\x68\x64\x6f\x26\xa6\xd7\x63\x61\xee\
\xbd\xd5\xf5\x7f\xc2\x1c\x3f\xe2\xc9\xfc\xc8\x3f\xed\x6b\xf1\x77\
\xff\x00\x71\x3b\xdf\xdf\xba\xf7\x5b\x61\x7f\x32\xff\x00\xe5\x5f\
\xf1\x9f\xf9\xad\xf5\x97\x5e\xf5\x3f\xc9\xdc\x8f\x69\x63\xb6\xbf\
\x5a\x6f\xc9\x7b\x13\x6e\xc9\xd5\x7b\xaf\x11\xb5\x32\x92\xe7\xa6\
\xdb\xf9\x3d\xb4\xf1\xe4\xea\x73\x3b\x5f\x75\x53\xd5\x63\xff\x00\
\x87\x65\x65\x21\x16\x18\xe4\x12\x00\x43\xda\xea\x7d\xd7\xba\xa6\
\x5f\xfa\x03\x6b\xf9\x48\x7f\xcf\x4d\xf3\x07\xff\x00\x47\x26\xc6\
\xff\x00\xed\x3d\xef\xdd\x7b\xaa\xda\xfe\x6f\x9f\xf0\x98\xbf\xe5\
\xc1\xf0\x6b\xf9\x70\x7c\xa2\xf9\x59\xd2\xf9\xdf\x92\xf5\x7d\x9f\
\xd3\xdb\x5b\x69\xe6\x76\x95\x3e\xf7\xec\xed\xa7\x9d\xda\xd2\x56\
\x66\xbb\x2b\x65\x6d\x2a\xc1\x97\xc4\xe3\xfa\xd3\x07\x59\x59\x08\
\xc5\xee\x09\xca\x04\xaa\x84\xac\xa1\x1a\xe4\x02\xa7\xdd\x7b\xad\
\x3c\xbf\x94\xbf\xfd\xbd\x13\xf9\x77\x7f\xe2\xea\xfc\x67\xff\x00\
\xdf\xc1\xb4\x7d\xfb\xaf\x75\xf6\x8b\xf9\x1b\xff\x00\x64\xf5\xdf\
\x1f\xf8\x86\x7b\x43\xff\x00\x78\x8c\xe7\xbf\x75\xee\xbe\x0d\xbe\
\xfd\xd7\xba\xfb\xca\xfc\x76\xff\x00\xb2\x7e\xe8\xbf\xfc\x43\x9d\
\x63\xff\x00\xbc\x4e\x13\xdf\xba\xf7\x5f\x18\xbf\xe7\x11\xff\x00\
\x6f\x5a\xfe\x63\x1f\xf8\xb9\xff\x00\x22\xbf\xf7\xe8\xee\x4f\x7e\
\xeb\xdd\x56\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\xa5\x6f\xfc\x22\
\x53\xfe\xc8\x63\xe5\xcf\xfe\x2d\x8d\x37\xfe\xf9\xfd\x85\xef\xdd\
\x7b\xa2\xa7\xff\x00\x0b\x90\xff\x00\x31\xfc\xb7\x3f\xe5\xaf\xca\
\x6f\xfa\x13\xa0\xfd\xfb\xaf\x74\x51\x7f\xe1\x12\xbf\xf6\x5d\x9f\
\x2d\xbf\xf1\x52\xa3\xff\x00\xdf\xc5\xd7\x9e\xfd\xd7\xba\xfa\x58\
\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\
\xaf\xff\xd7\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\
\xf8\x95\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\xbd\xd6\xfc\x9f\xf0\x91\
\xdf\xfb\x73\x17\x57\xff\x00\xe2\x6c\xef\xcf\xfd\xed\x9f\xdf\xba\
\xf7\x42\x77\xf3\x7f\xff\x00\x84\xf4\xf5\x1f\xf3\x7b\xef\x6e\xb6\
\xef\x4e\xc3\xf9\x1b\xd9\x5d\x3d\x91\xeb\x7e\xa4\xa6\xea\x6a\x2d\
\xbb\xb3\x36\x8e\xd6\xdc\x18\xec\x8d\x15\x36\xf1\xdd\x5b\xc0\x66\
\xa7\xab\xcd\xd4\x53\xd5\xc1\x5b\x2c\xfb\xaa\x48\x1a\x31\xaa\x3f\
\x1c\x08\xc2\xcc\x5b\x57\xba\xf7\x55\x31\xff\x00\x40\x42\x7c\x61\
\xff\x00\xbc\xe5\xef\x9f\xfd\x16\x9d\x7b\xff\x00\xd7\x0f\x7e\xeb\
\xdd\x7b\xfe\x80\x84\xf8\xc3\xff\x00\x79\xcb\xdf\x3f\xfa\x2d\x3a\
\xf7\xff\x00\xae\x1e\xfd\xd7\xba\xb2\x5f\xe5\x53\xff\x00\x09\xa7\
\xe9\x6f\xe5\x59\xf2\xae\x1f\x95\x3b\x0b\xe4\xe7\x69\x76\xb6\x72\
\x2e\xb9\xde\x3d\x75\xfd\xd2\xdd\xbb\x33\x69\x60\xf1\x2f\x47\xbc\
\x25\xc3\xcb\x51\x91\x6c\x86\x1e\xae\x7a\xd1\x3d\x11\xc3\xae\x84\
\x0a\x15\x8b\xf2\x6c\x2c\x7d\xd7\xba\x1f\xbf\xe1\x4c\xdf\xf6\xe4\
\x3f\x9c\x7f\xf6\xa1\xea\x0f\xfe\x08\x2e\xa8\xf7\xee\xbd\xd7\xcc\
\x5f\xf9\x32\x7f\xdb\xda\x3f\x97\x0f\xfe\x2e\x77\xc7\xbf\xfd\xf9\
\x5b\x7f\xdf\xba\xf7\x5f\x68\x1e\xe3\xde\xf5\x9d\x67\xd4\x5d\xa9\
\xd9\x18\xfa\x0a\x6c\xad\x7f\x5f\x75\xbe\xf8\xde\xf4\x38\xba\xc9\
\xa5\xa6\xa3\xc9\x56\x6d\x4d\xb1\x94\xcf\x53\x50\x55\xd4\x40\x92\
\x4d\x05\x35\x64\xd4\x0b\x1c\x8e\x8a\xcc\xaa\xc4\x80\x48\xb7\xbf\
\x75\xee\xbe\x79\xeb\xff\x00\x0b\x7a\xf9\x40\x00\xd5\xf0\x6f\xa1\
\x09\xb0\xd4\x57\xb2\x7b\x09\x41\x36\xe4\x80\x68\x5f\x48\x27\xf1\
\x73\xef\xdd\x7b\xa3\xd7\x47\xff\x00\x08\xc1\xf8\xd7\xda\x94\x94\
\xbd\x9f\x5d\xf3\x63\xbc\xf1\xb5\xbd\x8f\x4f\x0e\xfd\xab\xc7\x53\
\xf5\xbe\xc0\x96\x9f\x1f\x55\xbc\x23\x5d\xc3\x3d\x14\x12\x3e\x40\
\x3c\x90\xd2\x4b\x91\x31\xab\x1b\x16\x0b\x73\xef\xdd\x7b\xa2\x67\
\xba\xbf\xe1\x53\x7d\xef\xfc\xb3\x37\x2e\x7f\xf9\x74\x6c\x7f\x8a\
\x9d\x49\xda\x1b\x33\xe0\x8e\x63\x25\xf1\x0b\x69\xf6\x66\xeb\xde\
\xfb\xc7\x0b\xba\xbb\x13\x6d\x7c\x75\xac\x9b\xa9\xb0\x7b\xeb\x73\
\xe1\x70\xf4\x92\xe1\xf0\xdb\x8b\x77\x63\x36\xa4\x59\x0a\xea\x4a\
\x37\x7a\x4a\x6a\xaa\x89\x23\x85\x8c\x4a\xa7\xdf\xba\xf7\x5a\x90\
\xfc\xfc\xf9\x7f\x9f\xf9\xf1\xf3\x03\xbb\xfe\x5e\xee\x9d\x97\x84\
\xeb\xbc\xff\x00\x76\xee\x1c\x46\xe0\xc9\x6c\xcd\xb9\x91\xc8\x65\
\xf0\xd8\x39\xb1\x3b\x4f\x6f\xed\x44\x82\x8b\x23\x94\x58\xeb\xaa\
\x85\x44\x1b\x7d\x27\x76\x75\x5b\x4b\x2b\x05\x01\x40\x03\xdd\x7b\
\xa2\x7b\xef\xdd\x7b\xad\xaa\xff\x00\x90\xcf\xfc\x27\xaf\xa7\x7f\
\x9b\xe7\xc6\xce\xde\xef\x0e\xc3\xf9\x15\xd9\x7d\x3d\x99\xeb\x5e\
\xf1\xaa\xea\x9a\x3c\x06\xcc\xda\x3b\x5b\x3f\x8c\xc8\xe3\x20\xd8\
\x5b\x33\x77\xa6\x5e\xa6\xb3\x39\x59\x0d\x52\x57\x4b\x55\xba\x25\
\x84\xc6\xaa\x23\x58\xe0\x56\xbb\x17\x21\x7d\xd7\xba\x2f\xff\x00\
\xcf\xff\x00\xf9\x27\xf5\x77\xf2\x71\xca\x7c\x5b\xc6\xf5\xbf\x78\
\xef\xee\xe7\x6e\xfe\xc7\xf6\xf5\x6e\x69\xb7\xbe\xd8\xdb\xdb\x74\
\x6d\xef\xf4\x71\x53\xd7\x50\x63\x86\x2d\xb0\x35\x73\xfd\xe7\xf1\
\x41\xbd\x66\xf3\x09\x55\x7c\x7f\x6e\x85\x4b\x6b\x60\xbe\xeb\xdd\
\x15\x2f\xe4\xf5\xfc\xde\x7b\x07\xf9\x3f\x76\xcf\x6d\x76\xcf\x5e\
\x74\xe6\xcb\xee\x4c\x8f\x6c\x75\xd5\x07\x5d\xd7\x62\xb7\xa6\xe1\
\xce\xed\xea\x4c\x35\x1d\x06\xe6\xa1\xdc\xab\x91\xa3\x9f\x07\x0c\
\xf2\xd4\xcf\x2c\xd4\x22\x26\x49\x00\x50\xa6\xe0\xdc\x58\xfb\xaf\
\x74\x78\xff\x00\x9a\x9f\xfc\x29\x6f\xba\xbf\x9a\x87\xc5\x2a\xbf\
\x8a\x9b\xf7\xe3\x17\x56\x75\x56\x0e\xab\xb0\xb6\x6f\x60\xff\x00\
\x7b\xb6\x96\xf3\xdd\xd9\xbc\xbc\x55\x7b\x3b\xf8\xa7\xdb\xe3\xd7\
\x1f\x98\xa5\x82\x89\xa0\xad\xfe\x28\xc1\xdc\xb1\x2a\x17\x81\x73\
\x71\xee\xbd\xd5\x35\x7f\x2f\x7f\x99\x3b\x87\xf9\x7d\xfc\xc5\xe9\
\x3f\x98\x5b\x53\x64\x60\xbb\x1f\x70\x74\xae\x5b\x72\xe5\xb1\xbb\
\x2f\x72\xe4\xb2\x38\x8c\x2e\x6e\x4d\xc9\xb1\xb7\x46\xc7\x96\x3a\
\xdc\x96\x25\x5e\xbe\x97\xec\xa9\xf7\x3b\xd4\xc6\x51\x58\x19\x61\
\x55\x60\x50\xb0\x3e\xeb\xdd\x6c\x73\xf2\xaf\xfe\x15\xfd\xf2\x1b\
\xe5\x5f\xc6\x5f\x90\x1f\x19\xb7\x17\xc3\x7e\x95\xda\xf8\x4e\xfe\
\xe9\xde\xc3\xe9\xfc\xa6\xe6\xc5\x76\x0e\xfb\xad\xc9\xed\xda\x1e\
\xc2\xda\xf9\x2d\xaf\x55\x9c\xc7\xd1\x55\x52\x45\x4d\x59\x5d\x8a\
\x83\x24\xd3\xc3\x14\xac\xb1\x3c\xa8\xa1\xee\x97\x53\xee\xbd\xd6\
\x9f\x5e\xfd\xd7\xba\xf7\xbf\x75\xee\xb7\x61\xda\x7f\xf0\xb5\x9f\
\x92\xfb\x47\x69\xed\x8d\xa7\x45\xf0\x83\xa2\x67\xa5\xda\xfb\x73\
\x07\xb7\x69\xaa\x26\xec\x8e\xc1\x12\x4f\x16\x13\x17\x4b\x8c\x8e\
\xa1\xd0\x51\x1d\x06\x65\xa5\xd5\xa7\x53\x69\xbd\xb5\x1b\x5c\xfb\
\xaf\x75\xbf\xdf\xc2\xbe\xf9\xcc\x7c\xa4\xf8\x83\xf1\x8b\xe4\x9e\
\xe1\xdb\xd8\xdd\xa7\x9d\xef\x9e\x88\xea\xce\xdd\xcc\x6d\x7c\x35\
\x65\x56\x47\x13\xb7\xb2\x5d\x81\xb3\x30\xfb\x9e\xb3\x0d\x8d\xaf\
\xad\x8a\x1a\xca\xca\x1c\x75\x46\x49\xa2\x8a\x49\x51\x64\x74\x50\
\x58\x02\x7d\xfb\xaf\x75\xa9\x07\xf3\x45\xff\x00\x85\x5b\x77\xf7\
\xc0\x1f\x9e\xdf\x22\xbe\x20\x6d\x3f\x89\x9d\x3f\xd8\x3b\x77\xa5\
\x37\x16\xd8\xc2\xe2\xf7\x8e\xe2\xdf\x5b\xd3\x17\x9a\xcd\xc5\x9e\
\xeb\xfd\xa3\xbc\xe5\x9e\xbe\x83\x1b\x46\xf4\x34\xd2\x41\x51\xb9\
\x1e\x15\x58\xc9\x1a\x23\x04\x92\x49\xf7\xee\xbd\xd6\xc1\xdf\xc9\
\x4b\xf9\x8d\xef\x6f\xe6\x99\xf0\x87\x17\xf2\xb7\x7f\xf5\xb6\xd6\
\xea\xac\xfe\x47\xb3\xfb\x0b\x61\xff\x00\x75\x36\x7e\x63\x2d\x9c\
\xc4\x25\x0e\xcd\xa8\xc6\xc3\x4b\x90\xfb\xdc\xd4\x30\xd6\x8a\xba\
\xbf\xbe\x6f\x22\x72\x83\x40\x20\x8b\x95\x1e\xeb\xdd\x69\x79\xff\
\x00\x0b\x6b\xff\x00\xb2\xeb\xf8\x91\xff\x00\x8a\x97\x2f\xfe\xfe\
\x1e\xc2\xf7\xee\xbd\xd5\x42\x7f\x26\xdf\xe7\x91\xd9\xff\x00\xc9\
\xc6\x83\xe4\x0d\x0f\x5c\xf4\x3f\x5f\xf7\x3f\xfa\x7f\xab\xeb\x6a\
\xbc\xac\xfb\xdb\x73\xee\x4d\xbb\x26\xdd\x3d\x6f\x16\xf5\x86\x8e\
\x2c\x72\xe0\x60\x9e\x3a\xc8\xf2\x8b\xbd\x65\x32\xf9\x40\x64\x34\
\xe9\xa4\xd8\xb0\x3e\xeb\xdd\x6f\x17\xfc\x85\x7f\xe1\x41\x5d\xc3\
\xfc\xdf\xbe\x42\x77\x47\x4d\xf6\x27\xc7\x8e\xb5\xe9\xdc\x47\x57\
\x74\xd4\x5d\x9b\x45\x9b\xd9\x7b\xb3\x74\x67\xf2\x39\x3c\x8c\x9b\
\xdf\x6e\x6d\x51\x8a\xaa\xa5\xce\x52\xc5\x4d\x1d\x11\xa6\xcd\xc9\
\x37\x91\x18\x48\xb2\x44\xa2\xc4\x31\x2b\xee\xbd\xd6\xd4\x1e\xfd\
\xd7\xba\x26\xdf\xcc\x13\xe1\xce\xdf\xfe\x60\x1f\x0f\x3b\xb7\xe1\
\xfe\xea\xde\xd9\xce\xb9\xdb\xfd\xd7\x85\xdb\xf8\x6c\x96\xf4\xdb\
\x78\xdc\x76\x5f\x35\x83\x8b\x6f\xef\x5d\xb5\xbd\x22\x96\x8b\x1b\
\x95\x64\xa0\xaa\xfb\xba\x8d\xb4\x94\xf2\x07\x65\x22\x29\x98\xa9\
\x0e\x14\x8f\x75\xee\xb5\xb5\xf8\xcb\xff\x00\x08\xf4\xf8\xf1\xf1\
\x97\xe4\x77\x42\xfc\x8c\xc0\xfc\xcc\xee\xcd\xc7\x9a\xe8\x7e\xe1\
\xeb\x8e\xdf\xc5\xed\xdc\x97\x5e\x6c\x3a\x3c\x76\xe0\xae\xeb\xad\
\xdb\x8a\xdd\xb4\xb8\x3c\x85\x65\x3d\x64\xd5\x14\x94\x39\x69\xf1\
\x2b\x04\xd2\xc6\x8d\x2a\x45\x23\x14\xb3\xd8\x8f\x75\xee\xb6\xad\
\xf9\x1b\xff\x00\x64\xf5\xdf\x1f\xf8\x86\x7b\x43\xff\x00\x78\x8c\
\xe7\xbf\x75\xee\xbe\x0d\xbe\xfd\xd7\xba\xfb\xca\xfc\x76\xff\x00\
\xb2\x7e\xe8\xbf\xfc\x43\x9d\x63\xff\x00\xbc\x4e\x13\xdf\xba\xf7\
\x5a\xad\xfc\xa9\xff\x00\x84\x80\x7c\x7a\xf9\x53\xf2\x5f\xbf\x7e\
\x4b\x6e\x1f\x99\x3d\xd5\xb5\xf3\x7d\xf7\xdb\xdd\x81\xdb\x99\x4d\
\xb5\x8a\xeb\xed\x89\x5b\x8c\xdb\xd5\xdb\xff\x00\x73\x64\x77\x35\
\x4e\x13\x1f\x5b\x53\x59\x0d\x4d\x5d\x0e\x2e\x6c\x8b\x43\x0c\x92\
\xaa\xca\xf1\x22\x97\xbb\x5c\x9f\x75\xee\x80\x3f\xfa\x02\x13\xe3\
\x0f\xfd\xe7\x2f\x7c\xff\x00\xe8\xb4\xeb\xdf\xfe\xb8\x7b\xf7\x5e\
\xeb\xdf\xf4\x04\x27\xc6\x1f\xfb\xce\x5e\xf9\xff\x00\xd1\x69\xd7\
\xbf\xfd\x70\xf7\xee\xbd\xd6\xc1\xdf\xc9\xf3\xf9\x47\x75\xff\x00\
\xf2\x80\xe9\xbe\xd4\xe9\xbe\xbc\xee\x1d\xe5\xdc\x78\xce\xd2\xec\
\xe8\xbb\x36\xb3\x31\xbc\xf6\xfe\x0f\x6f\x56\xe2\x2b\x62\xda\x98\
\x4d\xab\xfc\x32\x96\x9f\x07\x3d\x44\x35\x14\xcd\x0e\x15\x65\x32\
\x39\x0d\xa9\xf4\x81\x61\x73\xee\xbd\xd6\xaf\xbf\xf0\xb9\x0f\xf3\
\x1f\xcb\x73\xfe\x5a\xfc\xa6\xff\x00\xa1\x3a\x0f\xdf\xba\xf7\x45\
\x17\xfe\x11\x2b\xff\x00\x65\xd9\xf2\xdb\xff\x00\x15\x2a\x3f\xfd\
\xfc\x5d\x79\xef\xdd\x7b\xaf\xa5\x8f\xbf\x75\xee\xbd\xef\xdd\x7b\
\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xff\xd0\xdf\xe3\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\x6c\x7f\
\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\xf8\x95\x36\xd7\xfe\xfa\xae\xbf\
\xf7\xee\xbd\xd5\xa6\xff\x00\x27\x7f\xf8\x53\xc6\xc1\xfe\x56\xff\
\x00\x08\xb6\x9f\xc4\x8c\xf7\xc4\x0d\xdd\xdc\x59\x3d\xb7\xbe\x7b\
\x0f\x77\xcb\xbd\xf0\xfd\xc3\x86\xd9\xb4\x35\x91\x6f\x7c\xf3\x66\
\x61\xa2\x4c\x1d\x6e\xc0\xdc\x53\xc3\x26\x3d\x1b\xc4\xcf\xf7\x24\
\x48\x46\xa0\x16\xf6\xf7\xee\xbd\xd5\xa3\xff\x00\xd0\x71\x5d\x53\
\xff\x00\x7a\xee\xec\x2f\xfd\x28\xbd\xb7\xff\x00\xda\x8b\xdf\xba\
\xf7\x5e\xff\x00\xa0\xe2\xba\xa7\xfe\xf5\xdd\xd8\x5f\xfa\x51\x7b\
\x6f\xff\x00\xb5\x17\xbf\x75\xee\xbd\xff\x00\x41\xc5\x75\x4f\xfd\
\xeb\xbb\xb0\xbf\xf4\xa2\xf6\xdf\xff\x00\x6a\x2f\x7e\xeb\xdd\x7b\
\xfe\x83\x8a\xea\x9f\xfb\xd7\x77\x61\x7f\xe9\x45\xed\xbf\xfe\xd4\
\x5e\xfd\xd7\xba\x20\x5f\xcd\x17\xfe\x15\x6d\xd7\x7f\xcc\x43\xe0\
\x8f\x7d\xfc\x3a\xc3\x7c\x2d\xde\x7d\x5d\x94\xee\x6c\x76\xcc\xa0\
\xa3\xdf\x99\x4e\xeb\xc2\xee\x9a\x0d\xbe\xdb\x57\xb1\xf6\x86\xfb\
\x96\x69\xf0\x34\x7d\x73\x83\xa8\xc8\x7d\xe4\x1b\x5d\xa9\x55\x45\
\x4c\x7a\x1a\x70\xe4\x9d\x3a\x4f\xba\xf7\x5a\xf7\x7f\x26\x4f\xfb\
\x7b\x47\xf2\xe1\xff\x00\xc5\xce\xf8\xf7\xff\x00\xbf\x2b\x6f\xfb\
\xf7\x5e\xeb\xec\x97\xf2\xb7\xfe\xc9\x73\xe4\x9f\xfe\x20\x2e\xe2\
\xff\x00\xdf\x77\xb8\xbd\xfb\xaf\x75\xf0\x84\xf7\xee\xbd\xd7\xde\
\xc7\xa7\x7f\xe6\x51\x75\x67\xfe\x23\x8d\x8f\xff\x00\xbc\xce\x2f\
\xdf\xba\xf7\x5f\x14\xef\xe6\xbd\xff\x00\x6f\x3d\xfe\x61\x9f\xf8\
\xba\x5f\x25\xff\x00\xf7\xf0\x6e\xef\x7e\xeb\xdd\x5f\x87\xf2\xf9\
\xff\x00\x84\x9a\xf6\x1f\xcf\xaf\x86\xdd\x13\xf2\xff\x00\x0d\xf3\
\x63\x65\x75\xb6\x37\xbc\x36\xde\x5b\x71\x52\xec\x6c\x97\x48\xe7\
\x77\x2d\x6e\xdd\x4c\x5e\xec\xdc\x1b\x55\xa9\x2a\x33\xd4\xdd\x91\
\x85\x83\x24\xf2\xc9\x80\x69\xb5\xad\x2c\x21\x44\x81\x6c\x6d\xa8\
\xfb\xaf\x75\x47\x7f\xcd\x8f\xf9\x71\xe6\x7f\x95\x7f\xcb\xcc\xb7\
\xc4\xdc\xf7\x6c\x62\xbb\x9f\x23\x89\xd8\x3b\x1b\x7d\x49\xbd\x70\
\xfb\x4a\xb7\x65\x51\xc8\x9b\xd6\x8a\xaa\xb1\x31\x7f\xc0\xeb\xb3\
\xbb\x8a\x64\x93\x1d\xf6\xa4\x19\x45\x53\x2c\xa1\x81\xd2\x86\xea\
\x3d\xd7\xba\xde\x53\xfe\x11\x33\xff\x00\x6e\xff\x00\xf9\x57\xff\
\x00\x8b\x89\x5d\xff\x00\xbe\x57\xa9\xfd\xfb\xaf\x74\x46\xbf\xe1\
\x71\xff\x00\xf1\xf5\xff\x00\x2d\xff\x00\xfc\x37\xbe\x51\x7f\xee\
\xcb\xa2\x3d\xfb\xaf\x75\xad\xc7\xf2\x63\xfe\x4f\xfb\x8f\xf9\xc3\
\xf6\xff\x00\x6f\xf5\x2e\xda\xef\x5c\x17\x44\xd5\x75\x2f\x5a\xe3\
\xfb\x16\x7c\xce\x77\x62\x64\x37\xe4\x59\xd8\x6b\xf7\x46\x3f\x6c\
\x8c\x5c\x14\x58\xfd\xcd\xb5\xda\x81\xe1\x7a\xf1\x31\x99\xa5\x96\
\xe1\x74\x84\xe4\xb0\xf7\x5e\xe8\xf9\x7f\x36\x8f\xf8\x4c\xd6\xf9\
\xfe\x55\x3f\x11\xeb\x3e\x57\x6e\x2f\x97\x5b\x47\xb9\x68\x29\x7b\
\x1b\x65\x75\xe8\xd9\x38\x6e\xa0\xcd\x6c\xba\xc9\x66\xde\x5f\xc5\
\x7c\x79\x35\xce\x56\xef\xdd\xc7\x02\xa6\x3c\x62\xc9\x68\x8d\x37\
\xee\x06\xe1\xd4\x8b\x37\xba\xf7\x54\xa3\xfc\xba\x3e\x19\x64\x7f\
\x98\x47\xcd\x0e\x8d\xf8\x75\x89\xec\x1c\x77\x56\x64\x7b\xb3\x31\
\xb9\xb1\x34\xdb\xf7\x2b\xb7\xaa\xf7\x55\x06\xdf\x6d\xb7\xb1\x37\
\x56\xf8\x79\x66\xc0\x51\x64\xf0\xd5\x39\x16\xae\x8f\x6c\x35\x2a\
\x28\xaa\x80\x24\x93\xab\xb3\x05\x53\xef\xdd\x7b\xad\x97\x3e\x5b\
\x7f\xc2\x3d\x7b\x23\xe2\x8f\xc5\xcf\x91\x1f\x26\xf2\x9f\x3b\x76\
\x26\xf0\xa0\xf8\xff\x00\xd2\xfd\x8f\xdc\x35\x5b\x4a\x93\xa1\xf7\
\x16\x1a\xa7\x74\x43\xd7\x9b\x57\x27\xba\x65\xdb\xd4\xd9\x87\xec\
\xcc\xa4\x78\xaa\x9c\xc4\x78\xc3\x4f\x1d\x43\xd3\x4e\x91\x49\x22\
\xb3\x21\x50\x48\xf7\x5e\xeb\x4f\xee\xb9\xd9\xf2\x76\x1f\x61\x6c\
\x3d\x81\x16\x42\x2c\x4c\xbb\xe3\x79\xed\x7d\x9f\x16\x56\x78\x24\
\xaa\x87\x19\x26\xe6\xcd\xd0\xe1\x53\x21\x35\x2c\x4f\x1c\xb5\x31\
\x51\xb5\x68\x91\xa3\x56\x56\x70\xb6\x04\x13\x7f\x7e\xeb\xdd\x6f\
\x10\x7f\xe1\x0e\xbd\xa9\xac\x81\xfc\xc4\xba\xfb\xc7\x73\x66\x3f\
\x1c\xb7\x18\x72\xbf\x82\x53\xfd\x2f\x10\x09\xfe\x9a\x8f\xfa\xfe\
\xfd\xd7\xba\xd1\xaf\x7b\x6d\xa7\xd9\x9b\xcf\x77\x6c\xf9\x2b\x23\
\xc8\xc9\xb5\x37\x3e\x7b\x6d\x49\x90\x8a\x17\xa7\x8a\xb9\xf0\x59\
\x5a\xbc\x5b\x56\x47\x04\x8c\xf2\x41\x1d\x53\x52\xeb\x08\xcc\x4a\
\x86\xb1\x24\x8f\x7e\xeb\xdd\x7d\xaf\xbf\x94\x47\xfd\xba\xc3\xf9\
\x75\x7f\xe2\x96\x7c\x6c\xff\x00\xdf\x4b\xb5\x7d\xfb\xaf\x75\xf2\
\xdc\xff\x00\x85\x23\xff\x00\xdb\xed\xfe\x7b\x7f\xe1\xf9\xd7\x3f\
\xfb\xe2\xba\xb3\xdf\xba\xf7\x5b\xd7\xff\x00\xc2\x41\xbf\xed\xce\
\x5b\x5f\xff\x00\x16\x27\xbd\x3f\xf7\x61\x80\xf7\xee\xbd\xd6\xba\
\xdf\xf0\xb6\xbf\xfb\x2e\xbf\x89\x1f\xf8\xa9\x72\xff\x00\xef\xe1\
\xec\x2f\x7e\xeb\xdd\x55\x07\xf2\x54\xfe\x45\xfb\xaf\xf9\xca\xe3\
\xfe\x44\x57\x6d\x9f\x91\xdb\x6f\xa1\x4f\xc7\xea\xbe\xb2\xa4\xab\
\x83\x3d\xd6\xf9\x5d\xfc\xfb\xa0\xf6\x4c\x3b\xe6\x68\x65\xa5\x7c\
\x7e\xed\xda\xd1\xe2\x93\x0e\x36\x4b\x87\x0e\x66\x69\x8d\x4a\xe9\
\x0a\x11\x89\xf7\x5e\xeb\x60\x8d\x8d\xf1\x8e\xbf\xfe\x11\xeb\x5d\
\x59\xf3\x33\xb2\xb7\x8d\x1f\xce\x9c\x6f\xca\x6a\x4f\xf6\x58\xe8\
\x3a\xff\x00\x63\x61\xe7\xe8\x8a\xfd\x9d\x5d\x4d\x34\x7d\xab\xfd\
\xf1\xab\xdc\x39\xfa\xee\xd0\xa6\xcc\xd1\x98\x36\x53\xd1\x7d\x92\
\x52\xd3\x38\x7a\x95\x97\xca\x42\x14\x3e\xeb\xdd\x5b\xdf\xf2\x9b\
\xff\x00\x85\x35\x6c\x6f\xe6\xa7\xf2\xeb\x1b\xf1\x3f\x6f\x7c\x43\
\xdd\xdd\x35\x5f\x91\xeb\xed\xef\xbf\xbf\xbe\xf9\x8e\xe0\xc2\xef\
\x4a\x2a\x78\x76\x64\x38\xf9\xa4\xc6\xbe\x0e\x8f\x60\xed\xb9\xdd\
\xb2\x1f\x7f\xa5\x65\x15\x3f\xb6\x54\x5d\x18\x12\x57\xdd\x7b\xab\
\xb7\xfe\x62\x7f\x32\x71\xdf\xcb\xef\xe1\x87\x7a\x7c\xc4\xcb\x75\
\xfe\x43\xb4\xb1\xfd\x25\x83\xdb\xb9\xaa\x9d\x85\x8b\xdc\x14\xbb\
\x56\xbb\x70\xa6\xe0\xdf\x1b\x5f\x65\x2c\x30\xee\x0a\xdc\x66\x66\
\x9b\x1a\x28\xa4\xdc\xa2\xa5\xd8\xd2\xce\x5a\x38\x19\x15\x4b\x30\
\xf7\xee\xbd\xd6\xb2\x3f\x16\xff\x00\xe1\x63\x1d\x6d\xf2\x77\xe4\
\xb7\xc7\xef\x8e\x18\xdf\x81\xbb\xf3\x6a\x57\x77\xd7\x73\xf5\xa7\
\x4f\x52\xee\x9a\x9e\xfb\xdb\x99\x7a\x7d\xb3\x3f\x63\x6e\xfc\x46\
\xd2\x8b\x70\x54\x62\x57\xac\x71\x6f\x94\xa6\xc3\x49\x96\x15\x12\
\x53\xad\x4c\x0f\x34\x71\xb2\xa3\x86\x22\xfe\xeb\xdd\x6d\xbb\xf2\
\x37\xfe\xc9\xeb\xbe\x3f\xf1\x0c\xf6\x87\xfe\xf1\x19\xcf\x7e\xeb\
\xdd\x7c\x1b\x7d\xfb\xaf\x75\xf4\x0b\xeb\x8f\xf8\x5a\xf7\x55\xec\
\x3e\xbc\xd8\x5b\x19\xff\x00\x97\xde\xff\x00\xc9\x49\xb3\x36\x5e\
\xd5\xda\x92\x64\x23\xf9\x09\xb7\x69\x63\xae\x93\x6e\xe0\xa8\x31\
\x12\x55\xc7\x4c\xfd\x51\x50\xf0\x47\x52\xf4\x65\xd5\x0b\xb9\x50\
\x40\x24\x9f\x7e\xeb\xdd\x2c\xff\x00\xe8\x38\xae\xa9\xff\x00\xbd\
\x77\x76\x17\xfe\x94\x5e\xdb\xff\x00\xed\x45\xef\xdd\x7b\xaf\x7f\
\xd0\x71\x5d\x53\xff\x00\x7a\xee\xec\x2f\xfd\x28\xbd\xb7\xff\x00\
\xda\x8b\xdf\xba\xf7\x5e\xff\x00\xa0\xe2\xba\xa7\xfe\xf5\xdd\xd8\
\x5f\xfa\x51\x7b\x6f\xff\x00\xb5\x17\xbf\x75\xee\xbd\xff\x00\x41\
\xc5\x75\x4f\xfd\xeb\xbb\xb0\xbf\xf4\xa2\xf6\xdf\xff\x00\x6a\x2f\
\x7e\xeb\xdd\x6b\xcb\xfc\xf9\xbf\x9e\x46\xd2\xfe\x72\xb0\xfc\x63\
\x8f\x6c\x7c\x74\xdc\x3d\x0a\xdf\x1f\x64\xed\xa7\xae\x7c\xf7\x63\
\x63\xb7\xf7\xf7\xa0\x76\x5a\xf5\xda\xd3\x25\x28\xc7\xed\x2d\xac\
\x31\x63\x0f\xfd\xc7\x72\xe5\xbc\xc6\x6f\xba\x16\xd3\xa3\xd5\xee\
\xbd\xd5\x91\xff\x00\xc2\x25\x7f\xec\xbb\x3e\x5b\x7f\xe2\xa5\x47\
\xff\x00\xbf\x8b\xaf\x3d\xfb\xaf\x75\xf4\xb1\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd1\xdf\xe3\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x68\x2d\xfc\xd5\xbf\xe1\x2b\xff\x00\x3d\x3e\x73\xff\x00\x30\x8f\
\x93\xbf\x2c\x7a\xb7\xb8\xfe\x2b\x6d\xee\xbf\xee\x9d\xeb\x89\xdc\
\x7b\x63\x0d\xbe\x77\x5f\x69\x63\xf7\x65\x05\x0d\x06\xcb\xdb\x1b\
\x72\x48\x73\x54\x78\x3e\xa6\xdc\x38\xa8\x2a\x8d\x66\x16\x46\x02\
\x1a\xc9\xd4\xc6\xca\x6e\x09\x2a\x3d\xd7\xba\xaf\x9f\xfa\x02\xb7\
\xf9\x99\x7f\xcf\xfd\xf8\x55\xff\x00\xa1\xbf\x74\x7f\xf6\x8d\xf7\
\xee\xbd\xd7\xbf\xe8\x0a\xdf\xe6\x65\xff\x00\x3f\xf7\xe1\x57\xfe\
\x86\xfd\xd1\xff\x00\xda\x37\xdf\xba\xf7\x5e\xff\x00\xa0\x2b\x7f\
\x99\x97\xfc\xff\x00\xdf\x85\x5f\xfa\x1b\xf7\x47\xff\x00\x68\xdf\
\x7e\xeb\xdd\x7b\xfe\x80\xad\xfe\x66\x5f\xf3\xff\x00\x7e\x15\x7f\
\xe8\x6f\xdd\x1f\xfd\xa3\x7d\xfb\xaf\x75\xef\xfa\x02\xb7\xf9\x99\
\x7f\xcf\xfd\xf8\x55\xff\x00\xa1\xbf\x74\x7f\xf6\x8d\xf7\xee\xbd\
\xd7\xbf\xe8\x0a\xdf\xe6\x65\xff\x00\x3f\xf7\xe1\x57\xfe\x86\xfd\
\xd1\xff\x00\xda\x37\xdf\xba\xf7\x46\xe7\xe0\x1f\xfc\x24\xb3\xf9\
\x84\x7c\x54\xf9\xbd\xf1\x33\xe4\xae\xfa\xee\xbf\x89\x19\x8d\x95\
\xd1\x1f\x20\xba\xab\xb5\xb7\x66\x2b\x6b\x6e\xde\xd9\xad\xdc\x99\
\x1d\xbb\xb1\xf7\x86\x2b\x70\x66\x28\xb0\x34\x99\x4e\xa0\xc2\xe3\
\x6a\x32\xf5\x54\x34\x2f\x1d\x3a\xcf\x57\x4f\x0f\x95\x97\x5b\x85\
\xbf\xbf\x75\xee\xb7\xb9\xf9\x5b\xff\x00\x64\xb9\xf2\x4f\xff\x00\
\x10\x17\x71\x7f\xef\xbb\xdc\x5e\xfd\xd7\xba\xf8\x42\x7b\xf7\x5e\
\xeb\xe9\x8b\xb1\xbf\xe1\x66\xbf\xcb\x57\x6b\x6c\x7d\x9d\xb6\x6a\
\xba\x17\xe6\x7c\xd5\x7b\x73\x69\xed\xec\x1d\x4b\xd3\xec\xce\x9a\
\x96\x09\x2a\x71\x18\x7a\x3a\x09\xcc\x13\x4b\xdd\x94\xcf\x24\x2d\
\x35\x39\xd2\xed\x1c\x65\x87\x25\x57\xe8\x3d\xd7\xba\xa8\x1e\xd4\
\xff\x00\x84\xc1\x7c\xe4\xfe\x64\x9d\x97\xd8\x1f\xcc\x2b\xa5\x3b\
\x7b\xe2\xfe\xd5\xe9\xdf\x9c\x7b\xcf\x73\x7c\xb4\xea\xbd\xad\xd9\
\x5b\xa7\xb3\xb1\x9d\x8b\xb6\xba\xeb\xe4\x16\x6a\xb7\xb4\xf6\x56\
\x03\x7e\xe3\xf6\xe7\x54\xee\x6d\xbf\x47\xbc\xf1\x3b\x6f\x74\x53\
\x41\x93\x8a\x87\x21\x59\x48\x95\xa9\x20\x8a\x57\x40\x0f\xbf\x75\
\xee\xad\x03\xe3\xcf\xf3\xe7\xf8\xa1\xfc\x8a\x3a\x6f\x63\x7f\x29\
\x7f\x95\x5d\x73\xdf\x3d\x91\xf2\x03\xe1\x6e\x3e\xb7\xaf\xfb\x23\
\x7c\x74\x3e\xde\xd8\x79\xde\xa4\xdc\x39\x4d\xd1\x98\xc9\x76\x86\
\x3a\xab\x65\xe5\x77\xd7\x62\x6c\x2d\xdb\x59\x43\x06\x03\x7d\xd2\
\x43\x33\x56\xe1\xe8\x64\x15\x71\xca\xa1\x0a\x05\x76\xf7\x5e\xeb\
\x50\x4f\xe7\xa9\xfc\xc2\x7a\x77\xf9\x9c\xfc\xf9\xcf\xfc\xa7\xe8\
\xcd\xb1\xd8\x9b\x47\x61\xe5\xba\xbb\xad\x76\x54\x38\x8e\xcf\xc7\
\xed\xec\x5e\xe9\x5c\xae\xcf\xc6\xd6\x52\x64\xaa\x24\xa3\xdb\x3b\
\x8b\x74\xe2\xd2\x86\x67\xa9\x5f\x09\x15\x8e\xec\x14\x96\x55\xb8\
\x1e\xfd\xd7\xba\xdc\xd3\xfe\x11\x33\xff\x00\x6e\xff\x00\xf9\x57\
\xff\x00\x8b\x89\x5d\xff\x00\xbe\x57\xa9\xfd\xfb\xaf\x74\x6a\xbf\
\xe1\x46\xbf\xc9\x23\xe5\x07\xf3\x7b\xce\xfc\x4c\xc9\x7c\x76\xec\
\x1e\x90\xd9\x14\xdd\x11\x8a\xee\x5a\x1d\xd9\x1f\x6f\xe6\xf7\xb6\
\x1a\x6c\x8c\xdd\x87\x57\xd6\xb5\x18\x67\xc0\x9d\xa3\xb1\xb7\x9a\
\x54\x45\x4a\x9b\x36\xa4\x54\xf9\xfe\xdc\xa9\x92\x3d\x1a\xc1\x6d\
\x3e\xeb\xdd\x53\x5f\xc2\xef\x8f\x7b\xc3\xfe\x12\x43\xbc\x37\x6f\
\xca\xdf\xe6\x0f\x94\xdb\xbd\xdb\xb0\x7e\x54\x6d\xb8\xbe\x3d\x6c\
\x6c\x27\xc4\x7a\x8c\x86\xef\xdd\xb8\x4d\xdf\x85\xc9\xd2\xf6\x44\
\xf9\x6d\xd3\x4b\xdb\x58\xee\x9c\xc4\xd2\xed\xd9\x70\xd8\x29\xa1\
\x49\x29\x2a\xeb\x2a\x7e\xe5\x90\x18\x55\x09\x71\xee\xbd\xd0\xf7\
\xf2\xdf\xf9\x95\xf4\xa7\xfc\x2a\x13\xa9\x64\xfe\x57\x3f\x06\x36\
\xa7\x65\x74\xff\x00\x79\xe4\x77\x16\x1f\xbf\xe2\xde\x5f\x28\xb1\
\x7b\x6b\x6b\x75\x72\xed\x3e\xa1\x4a\xc1\x9f\xc4\xbe\x53\xac\x37\
\x4f\x6b\x6e\x91\xb8\x32\x2f\xb9\xe9\xfe\xcd\x06\x25\xa9\xd8\x24\
\x9e\x49\x63\xb2\xdf\xdd\x7b\xa2\x49\xf1\xcf\xf9\x15\xfc\xa8\xfe\
\x42\x5d\xcf\xb1\xff\x00\x9b\x8f\xcb\x2e\xc3\xe8\xbe\xcb\xf8\xf7\
\xf0\xd2\xb3\x29\xbb\x3b\x1f\x63\x74\x0e\xe0\xdf\x39\xee\xde\xcf\
\xd0\xf6\x16\x03\x2d\xd3\x18\x48\x76\x66\x27\x7e\xf5\xee\xc0\xda\
\x35\x95\x54\x9b\xa7\xb2\x28\x2a\x2a\x96\xb7\x31\x42\x8b\x43\x14\
\xec\xae\xd2\x2a\x23\x7b\xaf\x74\x71\xfe\x79\xff\x00\xc2\xb6\x3f\
\x97\xb7\xca\x5f\x84\xdf\x2c\xfe\x36\xec\x7e\x93\xf9\x73\x88\xde\
\x9d\xef\xf1\xe3\xb7\x3a\x9b\x69\xe5\x37\x3e\xd2\xea\x5a\x2d\xb9\
\x8e\xdc\x7b\xf7\x64\x66\x76\xd6\x1a\xbb\x3d\x57\x8c\xed\xfc\xd6\
\x46\x9f\x0f\x47\x90\xc8\xc7\x25\x4b\x41\x49\x51\x37\x85\x58\x22\
\x16\xb7\xbf\x75\xee\xb4\x2c\xf8\xd9\xff\x00\x65\x15\xd0\x5f\xf8\
\x9a\xba\xb3\xff\x00\x7b\x9c\x17\xbf\x75\xee\xbe\xf1\xde\xfd\xd7\
\xba\xf9\xa0\x76\x0f\xfc\x23\x3f\xf9\x94\x6e\xfd\xff\x00\xbe\x37\
\x5d\x1f\x7c\xfc\x31\x82\x8b\x73\xef\x2d\xcf\xb8\x29\x23\xaa\xde\
\x7d\xc9\x15\x4c\x54\x99\xac\xe5\x76\x46\x9d\x6a\x21\x87\xa4\xea\
\xa3\x8a\x65\x82\xa5\x75\xa2\xcb\x20\x56\xb8\x0c\xdf\x53\xee\xbd\
\xd5\xba\x75\x2f\xfc\x29\xb7\xe1\x07\xf2\xc7\xea\xfe\xbd\xfe\x5c\
\xfd\xe3\xd4\x7f\x27\x37\x6f\x73\x7c\x15\xd9\x9b\x6b\xe2\x67\x6b\
\x6e\xae\xb0\xdb\x1d\x65\x96\xeb\x7d\xcb\xd8\x9d\x05\x87\xa3\xeb\
\x2d\xe5\x9e\xd8\x39\x2d\xcb\xda\x7b\x57\x70\xd7\x6c\xdc\xae\xe1\
\xdb\x75\x13\x63\x65\xae\xc6\xd1\x55\x3d\x1b\xc6\xd2\xc2\x8e\x48\
\xf7\xee\xbd\xd5\x63\x7c\x8a\xfe\x44\xdf\x2a\x7f\x9f\x47\x73\xef\
\x8f\xe6\xdf\xf1\x3f\xb1\x3a\x2b\xad\x7e\x3e\x7c\xce\xad\xc6\xef\
\x1e\xb8\xd8\xdd\xfb\xb8\x37\xd6\x07\xb7\x76\xfd\x06\xc3\xc1\x62\
\xba\x77\x31\x06\xf3\xc4\xec\x3e\xbd\xdf\xfb\x46\x8e\xae\xab\x73\
\xf5\xcd\x75\x45\x32\xd1\x66\x2b\xa3\x6a\x19\x61\x66\x71\x23\x3a\
\x27\xba\xf7\x47\x87\xe2\x5f\xf3\x37\xe8\xff\x00\xf8\x4c\x27\x51\
\xd3\x7f\x2b\x3f\x9c\x7b\x4b\xb3\xbb\x7f\xbd\x76\xf6\x7b\x31\xde\
\x95\x9b\xd3\xe3\x06\x2f\x6c\xee\x8e\xac\x97\x6c\xf7\x13\x53\xd7\
\x6d\xfc\x5d\x3e\x53\xb3\xb7\x57\x55\x6e\xa6\xce\xe3\x63\xc2\xca\
\xb5\x88\xd8\x94\xa7\x56\x65\xf1\x4b\x20\x24\x8f\x75\xee\x8b\xdf\
\xcc\xff\x00\x8d\x1b\xdf\xfe\x15\xb3\xbe\x36\xb7\xcc\x5f\xe5\xf5\
\x97\xdb\x1d\x27\xd7\x1f\x19\xb6\xb0\xf8\xcf\xbd\x30\x1f\x2d\xea\
\x72\x5b\x43\x79\xe6\x37\xb4\x99\x6c\x8f\x69\x36\x67\x6d\x51\xf5\
\x2e\x37\xb8\xf0\xf5\x3b\x5c\x60\xb7\xbd\x24\x1e\x4a\xaa\xca\x4a\
\xaf\xbb\x8e\x50\x21\x31\x85\x73\xee\xbd\xd5\xdc\xff\x00\xc2\x72\
\xbf\x92\xff\x00\xc9\xaf\xe5\x09\x45\xf2\xd2\x93\xe4\x56\xfe\xe9\
\x4d\xf1\xfe\x9e\x2a\xfa\x62\xa3\x68\xff\x00\xa1\xfc\xce\xf4\xcc\
\x7f\x0d\xff\x00\x47\x70\xf6\x64\x79\xc3\xb8\x24\xdd\xfb\x2b\x66\
\xf8\x7e\xf0\xef\x3a\x4f\xb5\x5a\x74\x9e\xfe\x29\x4b\x95\xf4\x03\
\xee\xbd\xd1\x1f\xff\x00\x85\xb6\x7f\xd9\x0e\x7c\x43\xff\x00\xc5\
\xae\xac\xff\x00\xdf\x43\xbe\x7d\xfb\xaf\x75\xaf\x07\xfc\x24\x0f\
\xfe\xdf\x17\xb7\x7f\xf1\x5c\xbb\xcb\xff\x00\x71\x36\xdf\xbf\x75\
\xee\xbe\x8a\xbf\xcd\xaf\xe2\x27\x63\x7c\xf2\xfe\x5d\xdf\x26\x7e\
\x24\xf5\x26\x73\x67\x6d\xbe\xc4\xee\x6d\xb5\xb4\xf0\xdb\x6b\x37\
\xbf\xea\xb3\x14\x3b\x42\x86\x7c\x17\x64\xec\xbd\xe1\x5a\xd9\x9a\
\xbc\x0e\x23\x3d\x96\xa7\x8e\x7c\x5e\xdd\x9e\x28\x9a\x1a\x39\xc8\
\x9d\xd3\x52\xe9\xd4\x47\xba\xf7\x5a\x64\x7c\x24\xff\x00\x84\x8d\
\xff\x00\x30\xef\x8d\x5f\x32\x3e\x2a\xfc\x87\xde\x5d\xdd\xf1\x0f\
\x29\xb4\x3a\x3b\xe4\x3f\x4f\x76\xce\xea\xc6\xed\xcd\xdd\xdb\x75\
\xbb\x83\x21\xb7\x3a\xff\x00\x7f\x60\x77\x4e\x6e\x87\x05\x49\x91\
\xe9\xfc\x3e\x3e\x7c\xc5\x66\x37\x17\x24\x74\xcb\x3d\x54\x10\xf9\
\xd9\x75\xb8\x5b\x9f\x7e\xeb\xdd\x7d\x03\xfb\x67\x6a\x64\x77\xdf\
\x55\xf6\x5e\xc7\xc4\x4f\x47\x4b\x96\xde\x5d\x7f\xbc\xb6\xa6\x32\
\xa7\x20\xd3\x2d\x05\x3e\x47\x71\x6d\xcc\x96\x22\x8a\x7a\xe6\xa7\
\x8e\x69\xd6\x8e\x1a\x9a\xc5\x69\x4a\x23\xb8\x40\x6c\x09\xb0\xf7\
\xee\xbd\xd7\xcd\x3c\x7f\xc2\x2b\xbf\x99\x99\x00\x9e\xfc\xf8\x54\
\x09\x02\xe3\xfb\xf1\xdc\xe6\xc7\xf2\x2e\x3a\x36\xc6\xde\xfd\xd7\
\xba\xef\xfe\x80\xad\xfe\x66\x5f\xf3\xff\x00\x7e\x15\x7f\xe8\x6f\
\xdd\x1f\xfd\xa3\x7d\xfb\xaf\x75\xef\xfa\x02\xb7\xf9\x99\x7f\xcf\
\xfd\xf8\x55\xff\x00\xa1\xbf\x74\x7f\xf6\x8d\xf7\xee\xbd\xd7\xbf\
\xe8\x0a\xdf\xe6\x65\xff\x00\x3f\xf7\xe1\x57\xfe\x86\xfd\xd1\xff\
\x00\xda\x37\xdf\xba\xf7\x5e\xff\x00\xa0\x2b\x7f\x99\x97\xfc\xff\
\x00\xdf\x85\x5f\xfa\x1b\xf7\x47\xff\x00\x68\xdf\x7e\xeb\xdd\x7b\
\xfe\x80\xad\xfe\x66\x5f\xf3\xff\x00\x7e\x15\x7f\xe8\x6f\xdd\x1f\
\xfd\xa3\x7d\xfb\xaf\x75\xef\xfa\x02\xb7\xf9\x99\x7f\xcf\xfd\xf8\
\x55\xff\x00\xa1\xbf\x74\x7f\xf6\x8d\xf7\xee\xbd\xd6\xc0\xbf\xf0\
\x9e\x2f\xe4\x17\xf2\xdf\xf9\x49\xfc\x96\xef\x0e\xe2\xf9\x07\xd9\
\x5d\x01\xbd\x76\xbf\x65\xf4\x60\xeb\x4c\x2d\x07\x52\x67\xf7\xf6\
\x63\x37\x4d\x9e\x1b\xfb\x6a\x6e\x91\x57\x92\x8b\x76\x75\xf6\xcd\
\xa2\x83\x16\xb8\xfc\x14\xc8\x5a\x39\x66\x95\xa6\x91\x06\x80\xa1\
\x8f\xbf\x75\xee\xb6\xea\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd2\xdf\xe3\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd5\x45\xff\x00\x30\x6f\xe7\x7b\xf0\x1f\xf9\x62\xf6\
\xa6\xce\xe9\xcf\x96\x1b\xbb\xb1\x36\xee\xf6\xdf\x7d\x7f\x07\x66\
\x6d\xfa\x7d\xa5\xd6\x3b\x93\x7a\x63\x26\xda\xd5\x3b\x8f\x3d\xb5\
\xa1\x9a\x7c\xae\x26\x33\x4b\x05\x71\xcb\x6d\xaa\xb5\x6a\x7b\x99\
\x12\x35\x57\x60\x04\x89\xab\xdd\x7b\xa2\x15\xff\x00\x41\x71\x7f\
\x26\x2f\xf9\xfa\x3d\xd7\xff\x00\xa2\x0f\x7b\xff\x00\xd7\xbf\x7e\
\xeb\xdd\x7b\xfe\x82\xe2\xfe\x4c\x5f\xf3\xf4\x7b\xaf\xff\x00\x44\
\x1e\xf7\xff\x00\xaf\x7e\xfd\xd7\xba\x39\x1f\x05\x7f\x9f\x9f\xf2\
\xe9\xfe\x63\x1d\xef\x17\xc7\x2f\x8c\x5b\xd7\xb2\xb3\xfd\x9d\x36\
\xcf\xdc\x5b\xe1\x28\xb7\x47\x55\x6e\x6d\xa3\x89\x18\x0d\xac\xd8\
\xf4\xcb\x4a\xf9\x8c\xa2\x0a\x54\xa8\x43\x93\x8b\x44\x66\xda\xee\
\x40\x37\xb0\x3e\xeb\xdd\x58\x67\xcb\xff\x00\x96\x5d\x39\xf0\x6f\
\xe3\xb7\x62\xfc\xa4\xef\xec\x8e\x77\x13\xd4\xbd\x5d\x06\xde\x9f\
\x76\xe4\x36\xd6\xde\xc8\x6e\xac\xd5\x3c\x7b\x9f\x75\xe0\xb6\x5e\
\x24\xd1\xe0\xb1\x68\xf5\xb5\x82\x4c\xee\xe2\xa5\x59\x19\x6c\xb0\
\xc4\xcd\x2b\x95\x44\x62\x3d\xd7\xba\xa8\x3e\x87\xff\x00\x85\x3c\
\x7f\x29\xef\x92\x1d\xd9\xd4\xdf\x1f\xfa\xb7\xb0\xfb\x7f\x25\xd9\
\x1d\xd5\xd8\x7b\x4f\xac\x36\x2d\x0e\x47\xa4\xb7\x96\x2f\x1b\x53\
\xba\xf7\xae\x66\x93\x01\x81\x87\x23\x93\x9e\x23\x06\x36\x82\x5c\
\x95\x74\x6b\x2d\x44\x83\xc7\x02\x12\xee\x42\x2b\x30\xf7\x5e\xea\
\xe5\x3e\x56\xff\x00\xd9\x2e\x7c\x93\xff\x00\xc4\x05\xdc\x5f\xfb\
\xee\xf7\x17\xbf\x75\xee\xbe\x10\x9e\xfd\xd7\xba\xd9\x5b\x11\xff\
\x00\x09\x34\xfe\x72\x39\xdc\x36\x2b\x3d\x8c\xeb\x0e\x96\xa8\xc7\
\xe6\xb1\x58\xfc\xc5\x04\x83\xbe\xf6\x2a\xb4\xb4\x79\x2a\x38\x6b\
\xa9\x49\x06\x7d\x01\xcc\x33\xad\xfd\x45\x6f\xf4\x24\x73\xef\xdd\
\x7b\xaf\xa7\x67\xc0\x5e\xa3\xdf\x1d\x03\xf0\x77\xe2\x07\x46\xf6\
\x6d\x16\x3b\x1d\xd8\xdd\x3f\xf1\xa7\xa4\xfa\xcf\x7d\xe3\xf1\x19\
\x38\xb3\x58\xba\x2d\xdd\xb2\x7a\xeb\x6f\x6d\xcd\xc3\x4b\x8e\xcb\
\xc0\x91\xc1\x94\xa2\x83\x2b\x8e\x95\x62\xa8\x45\x55\x95\x00\x60\
\x2c\x7d\xfb\xaf\x75\xf2\x6e\xff\x00\x85\x19\xff\x00\xdb\xeb\x7e\
\x7d\xff\x00\xe2\x4d\xda\x1f\xfb\xe8\x3a\xe7\xdf\xba\xf7\x54\x9d\
\xef\xdd\x7b\xaf\xa6\x07\xfc\x22\x67\xfe\xdd\xff\x00\xf2\xaf\xff\
\x00\x17\x12\xbb\xff\x00\x7c\xaf\x53\xfb\xf7\x5e\xeb\x73\x8f\x7e\
\xeb\xdd\x6b\x47\xff\x00\x0a\x68\xfe\x59\x3f\x2c\xbf\x99\xef\xc7\
\x1f\x8e\x1d\x69\xf1\x2f\x6c\xed\x2d\xcb\xb9\xfa\xe3\xbb\xb3\x1b\
\xe3\x75\xc3\xbb\x77\xb6\x1b\x64\xd3\x52\x60\x2a\xf6\x1e\x63\x03\
\x4d\x3d\x2d\x56\x69\x92\x1a\xe9\x9f\x23\x58\x8a\xd1\xc6\x4b\xa8\
\x3a\xac\x45\xc8\xf7\x5e\xeb\x5d\x0f\xe5\x9b\xfc\xbf\x3e\x48\xff\
\x00\xc2\x74\x7e\x4d\xd3\x7f\x31\x9f\xe6\x75\x82\xdb\x7b\x03\xe3\
\x0d\x0e\xc3\xdd\xbd\x25\x3e\xe0\xea\xed\xd5\x8c\xed\xfd\xce\x37\
\xff\x00\x68\x0c\x6b\x6d\x2a\x11\xb4\x36\x9b\x49\x96\xfe\x1f\x54\
\xbb\x72\xab\xcb\x55\x6f\x14\x05\x54\x35\xb5\x0f\x7e\xeb\xdd\x1e\
\x6f\xe7\x35\xff\x00\x0a\x3c\xfe\x57\x9f\x35\xbf\x96\x5f\xca\xbf\
\x8c\x1d\x13\xd8\x3d\xa7\x96\xed\xae\xd7\xdb\x3b\x27\x17\xb3\x71\
\x99\xee\x9e\xdd\x9b\x73\x13\x57\x59\x84\xed\x4d\x8b\xbb\x6b\xd6\
\xb7\x37\x90\x8d\x68\x68\x22\x8f\x0f\xb7\xea\x18\x34\x84\x6a\x70\
\xaa\x01\x27\xdf\xba\xf7\x5f\x3a\xcf\x7e\xeb\xdd\x09\x7d\x2d\xb9\
\xb0\xfb\x2b\xb8\xfa\x9b\x79\x6e\x19\x67\x83\x01\xb4\xbb\x33\x62\
\x6e\x6c\xe4\xf4\xb4\xed\x57\x53\x0e\x1f\x03\xba\x71\x59\x5c\x9c\
\xb4\xd4\xa8\xca\xd5\x33\xc7\x45\x4a\xe5\x23\x04\x17\x60\x05\xf9\
\xf7\xee\xbd\xd7\xd5\x16\x5f\xf8\x57\x0f\xf2\x61\x8c\xb8\x4e\xd2\
\xee\xa9\xc2\x12\x15\xa2\xe8\x3d\xf2\x04\x80\x1b\x06\x4f\x34\x30\
\xb0\x0d\xf5\x1a\x82\x9f\xeb\x6f\x7e\xeb\xdd\x6c\x9d\xb6\xf3\xf8\
\xed\xd7\xb7\x70\x3b\xa3\x0e\xf2\xc9\x88\xdc\x98\x5c\x5e\x7f\x17\
\x24\xf0\x49\x4d\x3c\x98\xec\xc5\x0c\x19\x1a\x17\x9a\x9a\x50\xb2\
\xd3\xca\xd4\xd5\x2a\x59\x18\x06\x43\xc1\xe4\x7b\xf7\x5e\xeb\xe2\
\x67\xfc\xdd\x7f\xed\xe9\xbf\xcc\x53\xff\x00\x17\x4b\xe4\x97\xfe\
\xfd\x9d\xd5\xef\xdd\x7b\xad\xd1\x7f\x93\x57\xfc\x28\xfb\xf9\x5d\
\xfc\x2c\xfe\x59\x9f\x14\xbe\x30\xf7\xaf\x60\xf6\x9e\x27\xb6\x7a\
\x9f\x6a\xef\x1c\x4e\xf3\xc6\x60\x7a\x77\x76\x6e\x2c\x55\x25\x6e\
\x67\xb4\x37\xce\xea\xa2\x5a\x3c\xd6\x3d\x1a\x87\x21\x13\xe2\x73\
\xf4\xec\x5a\x36\x3a\x58\x95\x20\x10\x47\xbf\x75\xee\xb5\x6f\xff\
\x00\x85\x0b\x7c\xe7\xf8\xf1\xfc\xc4\x7f\x98\xae\x67\xe4\x7f\xc6\
\x2c\xf6\xe2\xdc\x7d\x5f\x90\xe9\xce\xac\xda\x11\xe4\x77\x3e\xd5\
\xc9\xec\xfc\x98\xcf\xed\x7a\x3c\xac\x59\x8a\x5f\xe1\x19\x70\x95\
\xa6\x0a\x76\xab\x8c\x09\x4a\x84\x91\xb5\x69\xba\x80\xcd\xee\xbd\
\xd6\xdd\x1f\xf0\x89\x4f\xfb\x21\x5f\x97\x1f\xf8\xb6\x70\xff\x00\
\xef\x9e\xeb\xff\x00\x7e\xeb\xdd\x6e\x93\xef\xdd\x7b\xad\x2c\x7f\
\xe1\x6d\x9f\xf6\x43\x9f\x10\xff\x00\xf1\x6b\xab\x3f\xf7\xd0\xef\
\x9f\x7e\xeb\xdd\x6a\x3f\xff\x00\x09\xe6\xf9\xd5\xf1\xdf\xf9\x76\
\xff\x00\x31\x3c\x5f\xc8\xef\x93\xd9\xed\xc7\xb7\x7a\xc2\x8b\xa6\
\x7b\x47\x67\x3e\x43\x6b\xed\x5c\x9e\xf1\xc9\x9d\xc1\xba\x20\xc2\
\xa6\x1e\x98\xe2\x31\x21\xab\x05\x3c\xff\x00\x65\x28\x69\x82\xb2\
\xa3\x05\x0d\x65\x25\x87\xba\xf7\x5b\xe2\xff\x00\xd0\x5c\x5f\xc9\
\x8b\xfe\x7e\x8f\x75\xff\x00\xe8\x83\xde\xff\x00\xf5\xef\xdf\xba\
\xf7\x5e\xff\x00\xa0\xb8\xbf\x93\x17\xfc\xfd\x1e\xeb\xff\x00\xd1\
\x07\xbd\xff\x00\xeb\xdf\xbf\x75\xee\xbd\xff\x00\x41\x71\x7f\x26\
\x2f\xf9\xfa\x3d\xd7\xff\x00\xa2\x0f\x7b\xff\x00\xd7\xbf\x7e\xeb\
\xdd\x7b\xfe\x82\xe2\xfe\x4c\x5f\xf3\xf4\x7b\xaf\xff\x00\x44\x1e\
\xf7\xff\x00\xaf\x7e\xfd\xd7\xba\xe8\xff\x00\xc2\xb8\xbf\x93\x10\
\x04\x8e\xd0\xee\xc2\x40\x26\xc3\xa0\xf7\xb5\xcf\xf8\x0b\xc6\x05\
\xcf\xf8\x91\xef\xdd\x7b\xad\x84\x7a\x1b\xba\xf6\x1f\xc9\x1e\x94\
\xea\x9f\x90\x1d\x5d\x59\x90\xc8\x75\xc7\x73\xec\x0d\xad\xd9\x7b\
\x16\xbb\x2d\x8b\xaa\xc2\xe4\xea\xf6\xae\xf2\xc3\xd2\x67\x70\x75\
\x15\xf8\x8a\xd5\x5a\xbc\x6d\x5c\xd8\xfa\xd8\xd9\xe1\x90\x07\x8d\
\x89\x07\x91\xef\xdd\x7b\xa1\x67\xdf\xba\xf7\x54\xb9\xf3\xa7\xf9\
\xfa\x7f\x2e\x8f\xe5\xd3\xdf\x15\x1f\x1c\x3e\x4e\x6f\x5e\xcb\xc0\
\x76\x75\x36\xd1\xdb\x9b\xde\x4a\x2d\xb1\xd5\x5b\x9b\x76\xe2\x3f\
\x80\xee\x9f\xbf\xfe\x13\x2a\x66\x31\x68\x69\xa4\xa8\x7f\xe1\xd2\
\x79\x23\x17\xf1\xf0\x09\xbd\xc0\xf7\x5e\xe8\x9c\xff\x00\xd0\x5c\
\x5f\xc9\x8b\xfe\x7e\x8f\x75\xff\x00\xe8\x83\xde\xff\x00\xf5\xef\
\xdf\xba\xf7\x5e\xff\x00\xa0\xb8\xbf\x93\x17\xfc\xfd\x1e\xeb\xff\
\x00\xd1\x07\xbd\xff\x00\xeb\xdf\xbf\x75\xee\x8f\xd7\xf2\xf7\xfe\
\x76\xdf\x02\xff\x00\x99\xdf\x66\xef\x6e\xa4\xf8\x9d\xbb\xbb\x0f\
\x71\xef\x1e\xbf\xd8\x87\xb1\xb7\x1c\x1b\xb7\xac\xf7\x1e\xcb\xc7\
\x41\xb6\x57\x70\x62\x36\xcb\x4b\x4f\x93\xcb\x46\x29\xaa\x2b\x46\
\x53\x39\x4e\x04\x00\x89\x1a\x36\x67\x5b\x84\x7d\x3e\xeb\xdd\x5b\
\x7f\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\
\xba\xff\xd3\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x55\x57\x79\xff\x00\x3b\xcf\xe5\x57\xf1\xa7\
\xb6\x77\xb7\x45\xf7\x97\xcc\x9e\xbe\xeb\xce\xd8\xeb\x9c\x9c\x38\
\x6d\xed\xb2\xf2\xbb\x7f\xb1\xab\x32\x1b\x7f\x27\x51\x8f\xa2\xca\
\xc3\x47\x55\x53\x86\xd9\x79\x2c\x64\xb2\xb6\x3f\x21\x0c\x9f\xb3\
\x3c\x80\x07\x00\x90\xc0\x81\xee\xbd\xd1\xd1\xf8\xc5\xf2\xb3\xe3\
\xdf\xcc\xce\xa9\xa1\xef\x0f\x8c\x5d\x9d\x85\xed\xde\xaa\xc9\xe6\
\x73\x5b\x7e\x87\x79\x60\x68\xf3\x74\x34\x13\xe6\x76\xed\x50\xa3\
\xcd\x50\x0a\x6d\xc1\x8b\xc3\xe4\xd2\x5a\x0a\x92\x15\x8b\x40\xaa\
\xd7\x05\x4b\x02\x0f\xbf\x75\xee\xbe\x78\x3f\xf0\xb6\x6f\xfb\x78\
\x1f\xc5\x6f\xfc\x53\x9c\x7f\xfe\xfe\xbe\xdb\xf7\xee\xbd\xd6\xb5\
\x5f\x10\x3f\x96\xd7\xce\x1f\x9f\x14\x3b\xef\x27\xf1\x07\xe3\xd6\
\xec\xef\x0a\x0e\xb2\xab\xdb\xf4\x3b\xee\xa7\x6d\xe5\x36\x96\x36\
\x3d\xb9\x57\xba\x61\xcb\x4f\xb7\xe0\xab\xfe\xf3\xee\x2c\x13\x4c\
\xf9\x38\x70\x55\x6c\x9e\x11\x2d\x84\x07\x56\x9b\x8b\xfb\xaf\x74\
\xef\xf2\xe7\xf9\x5e\x7c\xf8\xf8\x1f\xb4\xf6\xae\xfa\xf9\x71\xf1\
\xb3\x78\xf4\x9e\xd2\xde\xfb\x8a\x7d\xa7\xb5\xb3\x7b\x8f\x2b\xb3\
\x72\x54\xb9\x7d\xc5\x4f\x8d\x9f\x31\x36\x2a\x15\xdb\x1b\x97\x3b\
\x3c\x35\x0b\x8c\xa5\x92\x60\x65\x48\xd1\x95\x1a\xc4\x91\x6f\x7e\
\xeb\xdd\x5d\x2f\xfc\x23\xd7\xfe\xdf\x03\x4d\xff\x00\x8a\xc1\xdd\
\xbf\xfb\x9b\xb1\xbd\xfb\xaf\x75\xbe\xe7\xf3\xea\xf8\xff\x00\xdc\
\xdf\x29\x3f\x94\xf7\xcb\x3e\x88\xf8\xfb\xb0\x32\xdd\xa1\xdb\xbb\
\xf7\x13\xd6\x34\xdb\x47\x63\x60\xea\xb1\x34\x79\x4c\xdc\x98\x7e\
\xea\xeb\x8d\xc5\x97\xfb\x6a\x8c\xe6\x47\x15\x8c\x4f\xe1\xf8\x1c\
\x45\x55\x53\x89\x27\x42\xc9\x01\x54\xd4\xe5\x54\xfb\xaf\x75\xa0\
\xf7\xf2\xbe\xfe\x45\x1f\xcd\xb7\xa3\x3f\x98\xdf\xc1\xbe\xe3\xed\
\x4f\x84\xbd\x91\xb4\x3a\xd7\xac\xfe\x53\xf4\x9e\xf5\xdf\x9b\xae\
\xbb\x71\x75\x9c\xf4\x3b\x6b\x69\x6d\xdd\xfb\x85\xc9\xe7\xf3\xb5\
\xb1\x63\xf7\xcd\x65\x6c\x94\x98\xac\x65\x34\x93\xc8\xb0\xc5\x24\
\xac\xa9\xa5\x11\x9c\xaa\x9f\x75\xee\xbe\x9f\x9f\x22\xf6\xf6\x6f\
\x77\x7c\x7c\xef\x6d\xa9\xb6\x71\xd3\x66\x37\x26\xe7\xe9\xbe\xcf\
\xdb\xdb\x7f\x11\x4e\xf0\x45\x51\x95\xcd\xe6\xb6\x4e\x73\x1b\x8a\
\xc7\x41\x25\x54\xb0\x53\x47\x35\x75\x7d\x4c\x71\x2b\x48\xe8\x81\
\x98\x16\x60\x2e\x7d\xfb\xaf\x75\xf2\x15\x1f\xf0\x9d\x4f\xe7\x54\
\x54\x38\xf8\x05\xda\x96\x2a\x18\x03\xb9\x7a\xa9\x5a\xc4\x5c\x5d\
\x0f\x60\x07\x56\xe7\x90\x45\xc7\xbf\x75\xee\xbe\x8f\x3b\x1f\xfe\
\x14\x11\xfc\x9b\xf6\x56\xca\xd9\xdb\x37\x72\xfc\xee\xeb\x0c\x66\
\xe3\xda\x7b\x57\x6e\xed\xac\xfe\x35\xf6\xdf\x69\x4d\x26\x3f\x35\
\x83\xc4\x51\xe3\x32\x94\x32\x4b\x4d\xb0\x67\xa7\x92\x4a\x4a\xea\
\x57\x8d\x8a\x3b\x2d\xd4\xd8\x91\xef\xdd\x7b\xa5\x47\xfd\x04\x5d\
\xfc\x95\x3f\xef\x3f\x3a\xbb\xff\x00\x41\x6e\xd9\xff\x00\xed\x79\
\xef\xdd\x7b\xaf\x98\x6f\xf3\xc1\xef\x3e\xa3\xf9\x2d\xfc\xd5\xbe\
\x63\xf7\x9f\x44\x6f\x9c\x5f\x64\xf5\x2f\x61\xef\xcd\xb1\x95\xd9\
\x9b\xdf\x0b\x4f\x93\xa5\xc6\x67\xe8\x68\xfa\xcb\x63\xe1\xab\x27\
\xa4\x83\x33\x43\x8c\xc9\x22\x53\x65\xb1\xb5\x14\xe4\xc9\x02\x6a\
\x68\x89\x5b\xa1\x56\x3e\xeb\xdd\x23\xfe\x31\xff\x00\x27\xdf\xe6\
\x51\xf3\x33\xaa\x68\x7b\xc3\xe3\x1f\xc5\x0d\xf5\xdb\x7d\x53\x92\
\xcc\xe6\xb6\xf5\x06\xf3\xc1\x66\xb6\x1e\x3f\x1d\x55\x98\xdb\xd5\
\x0b\x49\x9a\xa2\x8a\x9f\x70\xee\xdc\x36\x48\xbd\x05\x4b\x84\x66\
\x30\x08\xcb\x5c\x2b\x1b\x1f\x7e\xeb\xdd\x7d\x10\xff\x00\xe1\x29\
\xff\x00\x07\xfe\x56\xfc\x12\xf8\x6d\xf2\x23\xae\x3e\x5b\x74\xc6\
\xe2\xe9\x3d\xeb\xbb\xbe\x4d\xd5\x6f\x5d\xb7\x81\xdc\x99\x0d\xb7\
\x90\xaa\xcb\x6d\x79\x3a\xb3\xae\xf0\x4b\x97\xa7\x97\x6d\x66\xf3\
\x94\xa9\x4e\x72\xd8\x6a\x98\x6d\x24\x89\x26\xa8\x89\xd3\x6b\x13\
\xee\xbd\xd5\xd6\xfc\xc0\xfe\x64\x5f\x08\x3e\x02\xd5\xec\x2a\x1f\
\x97\xff\x00\x21\x36\xa7\x47\x56\x76\x7d\x3e\xe2\xab\xd8\x54\xfb\
\x93\x17\xbb\x72\x52\x6e\x4a\x6d\xa5\x26\x1a\x1d\xc5\x35\x20\xda\
\xfb\x77\x3c\x21\x4c\x5c\xbb\x86\x89\x5f\xcd\xe2\xd4\x6a\x17\x4e\
\xab\x35\xbd\xd7\xba\x64\xf8\x8d\xfc\xd1\xbe\x02\xfc\xf0\xdd\xfb\
\xa7\x61\x7c\x47\xf9\x29\xb3\xbb\xb3\x77\xec\xad\xb7\x1e\xef\xdd\
\x18\x2d\xbb\x89\xde\x78\xda\xbc\x46\xdb\x97\x27\x4b\x86\x4c\xb4\
\xcf\xb9\xf6\xce\x0a\x9e\x6a\x73\x94\xad\x86\x12\x22\x79\x1d\x5a\
\x45\xba\x80\x6f\xef\xdd\x7b\xaa\xeb\xff\x00\x85\x32\xfc\x4d\xf9\
\x17\xf3\x43\xf9\x66\x56\xf4\xaf\xc5\xde\xab\xce\xf7\x17\x68\x54\
\x77\xdf\x53\x6e\x75\xda\x1b\x7a\xb3\x05\x43\x90\x1b\x7f\x04\x9b\
\x9c\x65\xb2\xa6\x6d\xc3\x95\xc3\x50\x1a\x7a\x17\xad\x85\x5c\x09\
\xb5\xfe\xe0\x21\x4a\x86\x23\xdd\x7b\xaf\x9b\x1f\x7d\x7f\x24\xdf\
\xe6\x9b\xf1\x83\xa8\xf7\xa7\x7c\x77\xd7\xc3\xae\xc0\xeb\x7e\xa3\
\xeb\xca\x3a\x0c\x86\xf4\xde\xd9\x7c\xf7\x5d\xd6\x63\xb0\x34\x79\
\x4c\xce\x3b\x6f\xd0\x54\x55\x53\x61\x77\x9e\x4f\x29\x2a\x54\x66\
\x32\xd4\xd0\x0f\x14\x12\x10\xd2\x82\x6c\xa0\x91\xee\xbd\xd5\x77\
\xf5\x5f\x57\x6f\xee\xed\xec\xad\x87\xd3\xdd\x57\xb6\xab\x77\x97\
\x65\x76\x76\xed\xc0\xec\x5d\x87\xb4\xf1\xd2\xd1\xc1\x5f\xb9\x37\
\x66\xe7\xc9\x53\xe2\x30\x38\x5a\x39\xb2\x15\x34\x74\x11\x54\x64\
\x72\x35\x51\xc4\x8d\x34\xd1\x44\xa5\xae\xcc\xa2\xe7\xdf\xba\xf7\
\x56\xb5\x9c\xff\x00\x84\xf5\xff\x00\x39\x8d\xb7\x85\xcc\x6e\x2c\
\xdf\xc0\xee\xcf\xa0\xc3\x60\x31\x59\x1c\xde\x5e\xb9\xf7\x2f\x56\
\x4a\x94\x78\xbc\x55\x1c\xd5\xf9\x0a\xa6\x8a\x9f\x7f\x4b\x3c\xab\
\x4f\x49\x4e\xef\xa6\x34\x77\x6b\x59\x41\x24\x0f\x7e\xeb\xdd\x53\
\x3f\xbf\x75\xee\xbe\xf4\xfd\x1f\xff\x00\x32\x57\xa8\x3f\xf1\x17\
\x75\xff\x00\xfe\xf2\x78\x9f\x7e\xeb\xdd\x7c\x5a\xbf\x9b\xaf\xfd\
\xbd\x37\xf9\x8a\x7f\xe2\xe9\x7c\x92\xff\x00\xdf\xb3\xba\xbd\xfb\
\xaf\x74\xbd\xe8\x6f\xe4\x97\xfc\xd3\xbe\x4f\x75\x1e\xcb\xef\x8e\
\x86\xf8\x75\xd8\x1d\x8f\xd4\x9d\x89\x45\x5d\x91\xd9\x7b\xdb\x11\
\x9f\xeb\xaa\x3c\x76\x7e\x87\x1b\x97\xc8\xe0\x6b\x6a\x29\x69\xb3\
\x3b\xcf\x19\x94\x89\x20\xcb\xe2\xaa\x20\x3e\x58\x23\x25\xa2\x24\
\x02\xa4\x13\xee\xbd\xd1\x3a\xf9\x45\xf1\x2f\xe4\x57\xc2\xce\xd3\
\x9b\xa5\x3e\x51\x75\x6e\x6f\xa7\xfb\x4a\x0c\x06\x1b\x74\xcb\xb3\
\xf3\xf5\x98\x3a\xfa\xf5\xc0\x6e\x05\xa8\x6c\x3e\x4c\x54\xed\xec\
\xae\x67\x1a\xf0\x56\x8a\x49\x02\x85\x9c\xba\x94\x21\x82\x91\x6f\
\x7e\xeb\xdd\x6e\x59\xff\x00\x09\x4c\xfe\x68\xbf\x00\xfe\x08\x7c\
\x42\xf9\x21\xb0\xfe\x5b\xfc\x97\xd9\xbd\x29\xbc\xb7\x97\xc9\x18\
\xf7\x76\xda\xdb\xdb\x8f\x11\xbd\x72\x35\xb9\x5d\xb2\xbd\x63\xb2\
\xf0\xc3\x33\x04\x9b\x6b\x6c\x67\x29\x16\x95\xb2\xb8\xea\x88\x2c\
\xf2\x2c\x8a\xf0\x92\x54\x06\x42\xde\xeb\xdd\x6e\xd9\xf0\xfb\xf9\
\x8b\x7c\x29\xf9\xf6\x37\xf9\xf8\x7f\xdf\xfb\x53\xbc\x7f\xd1\x69\
\xdb\x43\x7f\xae\xda\xc6\xee\xac\x6b\xed\x9f\xef\x88\xce\x9d\xb2\
\xd5\xd1\xee\x8d\xbf\x81\x92\x44\xcc\x7f\x76\x6b\xfc\x4d\x08\x91\
\x6f\x4a\xe1\x88\x20\x5f\xdd\x7b\xad\x61\xff\x00\xe1\x6d\x9f\xf6\
\x43\x9f\x10\xff\x00\xf1\x6b\xab\x3f\xf7\xd0\xef\x9f\x7e\xeb\xdd\
\x7c\xf8\x3e\x2e\x7c\x4a\xf9\x17\xf3\x53\xb4\xa3\xe9\x5f\x8b\xbd\
\x59\x9c\xee\x0e\xd1\x97\x6f\xe6\x37\x52\x6d\x0d\xbf\x59\x84\xa1\
\xaf\x3b\x7b\x01\xf6\xbf\xc5\xf2\x86\xa7\x70\xe5\x70\xd8\xd4\x82\
\x88\xd6\xc4\x18\x19\xc3\xb1\x90\x05\x04\x9f\x7e\xeb\xdd\x59\x0f\
\xfd\x03\xa5\xfc\xea\xff\x00\xef\x00\xfb\x4b\xff\x00\x42\x8e\xa7\
\xff\x00\xed\x85\xef\xdd\x7b\xaf\x7f\xd0\x3a\x5f\xce\xaf\xfe\xf0\
\x0f\xb4\xbf\xf4\x28\xea\x7f\xfe\xd8\x5e\xfd\xd7\xba\x6c\xcd\x7f\
\xc2\x7a\xbf\x9c\xce\xdd\xc3\x65\xf7\x06\x67\xe0\x6f\x68\x50\xe1\
\xf0\x58\xbc\x86\x67\x2d\x5a\xfb\x97\xab\x24\x4a\x3c\x66\x2e\x92\
\x6a\xea\xfa\xa6\x8e\x0d\xfd\x2c\xf2\x8a\x7a\x58\x1d\xf4\xa2\xb3\
\xb5\xac\xa0\x92\x07\xbf\x75\xee\xa9\x9b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xdb\x5b\xf9\x3b\x7f\xdb\xa9\x3f\x97\x3f\xfe\x29\x8f\xc7\
\x6f\xfd\xf6\x1b\x73\xdf\xba\xf7\x56\x45\xef\xdd\x7b\xaf\x9d\xef\
\xfc\x29\x8f\xf9\x44\xff\x00\x32\x0f\x9a\x9f\xcc\xd6\xbf\xba\x3e\
\x2f\x7c\x53\xdf\x3d\xbd\xd5\xcf\xd0\xbd\x4d\xb5\xa3\xde\x38\x1c\
\xd6\xc4\xa0\xc6\xc9\x9f\xc1\x49\xba\x1b\x2f\x8d\x58\x77\x0e\xec\
\xc3\xd7\xf9\xe8\x7e\xfa\x20\xf7\x84\x29\xd4\x08\x24\x7b\xf7\x5e\
\xeb\x5f\x5f\xfa\x07\x4b\xf9\xd5\xff\x00\xde\x01\xf6\x97\xfe\x85\
\x1d\x4f\xff\x00\xdb\x0b\xdf\xba\xf7\x5e\xff\x00\xa0\x74\xbf\x9d\
\x5f\xfd\xe0\x1f\x69\x7f\xe8\x51\xd4\xff\x00\xfd\xb0\xbd\xfb\xaf\
\x75\xb4\xa7\xfc\x25\x33\xf9\x5d\x7c\xfc\xf8\x21\xf2\xff\x00\xe4\
\x7e\xfd\xf9\x6d\xf1\x9f\x79\xf4\xa6\xcc\xde\x5f\x1b\x17\x68\x6d\
\xbd\xc5\xb8\xf2\xfb\x2b\x21\x45\x94\xdc\xe3\xb3\xf6\x46\x65\x70\
\xb0\x47\xb6\xb7\x3e\x72\xac\x55\x3e\x2b\x1b\x53\x3e\xa6\x8d\x63\
\x54\x84\x82\xc1\x99\x03\x7b\xaf\x75\xbd\xc7\xbf\x75\xee\xbd\xef\
\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xff\xd4\xdf\xe3\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\
\x9c\xbf\x9f\x37\xf2\xf6\xf9\xe7\xdb\xbf\xcd\xdf\xe7\x07\x62\xf5\
\x5f\xc2\xef\x95\x1d\x91\xb0\x37\x47\x65\xed\xfa\xdd\xb5\xbd\xb6\
\x37\x41\xf6\x86\xea\xda\x7b\x82\x8a\x1e\xb4\xd8\xf4\x32\xd5\xe1\
\x77\x0e\x0f\x6c\x57\x62\x72\x94\xd1\xd6\x52\x4b\x13\x3c\x32\xba\
\xac\x91\xb2\x92\x19\x48\x1e\xeb\xdd\x6e\xd7\xff\x00\x09\x73\xe9\
\xbe\xdc\xe8\x8f\xe5\x29\xd7\x5d\x77\xdd\xdd\x5d\xd8\x3d\x3f\xbf\
\x68\x3b\x87\xbb\xeb\xeb\x36\x57\x66\xec\xfc\xfe\xc6\xdd\x74\xd4\
\x19\x2d\xe2\xf3\xe3\xab\xa7\xdb\xfb\x96\x83\x1b\x95\x86\x8e\xbe\
\x1b\xb4\x32\x3c\x4a\x92\xa8\xd4\xa4\xad\x8f\xbf\x75\xee\xb5\xef\
\xff\x00\x85\x7e\xfc\x38\xf9\x6f\xf2\x43\xe7\x3f\xc6\xad\xcf\xf1\
\xf3\xe3\x07\xc8\x0e\xf0\xdb\x38\x4f\x89\xd4\x38\x1c\xc6\xe3\xea\
\x5e\xa1\xdf\x9d\x87\x82\xc5\xe7\x63\xee\x0e\xcf\xc8\x4b\x84\xc8\
\xe5\x36\x9e\x0b\x2d\x47\x43\x96\x8b\x1f\x90\xa7\x9d\xa9\xe5\x74\
\x97\xc3\x51\x1b\x80\x55\xaf\xef\xdd\x7b\xa1\x5f\xfe\x12\x99\x90\
\xa1\xfe\x5a\x9b\x53\xe6\xc6\x2f\xf9\x89\x55\xd3\x7c\x13\xc9\x76\
\xd6\xe1\xe8\xaa\xee\xab\xa0\xf9\x7b\x3c\x5f\x1d\x2b\x3b\x2a\x8b\
\x67\xe3\x3b\x4a\x0d\xdf\x57\xb0\xe9\xbb\x69\xb6\x9c\xdb\xae\x9b\
\x6a\xcf\xb8\xf1\xc9\x91\x92\x89\x66\x5a\x46\xc8\x53\x89\x0a\x99\
\x56\xfe\xeb\xdd\x34\xff\x00\xc2\xc2\x7e\x5f\xfc\x4f\xf9\x25\xf1\
\x47\xe2\x46\x0b\xe3\xd7\xc9\x8e\x84\xef\x2c\xe6\xde\xf9\x0d\xb9\
\x72\xd9\xec\x2f\x52\x76\xd6\xc5\xec\x4c\xb6\x1b\x13\x37\x5b\xe4\
\xe8\xe3\xca\x65\x68\x36\x96\x73\x2d\x53\x8f\xc7\x3d\x64\xa9\x12\
\xcd\x32\xa2\x34\x8e\x14\x12\x78\x1e\xeb\xdd\x52\x3f\xfc\x25\x3f\
\xbb\x3a\x6f\xa0\xbf\x9a\x9c\x3b\xff\x00\xbd\x3b\x5f\xae\x3a\x6b\
\x63\x27\xc7\x0e\xe3\xc4\x1d\xe3\xda\x5b\xd3\x6f\x6c\x3d\xae\x72\
\xf5\xf5\x5b\x3a\x4a\x1c\x57\xf1\xed\xcf\x90\xc6\x62\xc6\x4a\xb6\
\x2a\x59\x5a\x18\x4c\xa2\x49\x44\x4d\xa4\x12\x2d\xef\xdd\x7b\xaf\
\xa5\x9f\xfc\x3a\x97\xf2\xcb\xff\x00\xbd\x84\xfc\x2b\xff\x00\xd2\
\x9c\xe9\x9f\xfe\xcc\xbd\xfb\xaf\x75\xef\xf8\x75\x2f\xe5\x97\xff\
\x00\x7b\x09\xf8\x57\xff\x00\xa5\x39\xd3\x3f\xfd\x99\x7b\xf7\x5e\
\xeb\xdf\xf0\xea\x5f\xcb\x2f\xfe\xf6\x13\xf0\xaf\xff\x00\x4a\x73\
\xa6\x7f\xfb\x32\xf7\xee\xbd\xd7\x63\xf9\xa8\xff\x00\x2c\xb2\x6c\
\x3f\x98\x47\xc2\xbb\xff\x00\xe2\xce\xf4\xcf\xff\x00\x66\x5e\xfd\
\xd7\xba\xf9\x13\x76\x4f\xf2\xc7\xfe\x63\xfb\x8f\xb1\x77\xfe\xe0\
\xc0\xfc\x08\xf9\x8d\x99\xc1\xe7\x37\xb6\xeb\xcb\xe1\xb2\xf8\xcf\
\x8d\xbd\xbd\x5f\x8d\xca\x62\xf2\x59\xea\xfa\xcc\x7e\x47\x1f\x5d\
\x49\xb4\x66\xa5\xad\xa1\xad\xa4\x99\x24\x8a\x68\x9d\xe3\x92\x36\
\x0c\xa4\xa9\x07\xdf\xba\xf7\x48\xbf\xf8\x6a\xdf\xe6\x69\xff\x00\
\x7a\xf6\xf9\xa9\xff\x00\xa4\xc7\xdc\xdf\xfd\x86\xfb\xf7\x5e\xe8\
\x9f\x76\x2f\x5b\x76\x17\x50\x6f\x5c\xff\x00\x5b\x76\xb6\xc6\xdd\
\xbd\x6b\xd8\x5b\x52\xaa\x2a\x1d\xcf\xb1\xf7\xde\xde\xca\xed\x4d\
\xdb\xb7\xab\x67\xa4\xa7\xaf\x86\x97\x35\xb7\xb3\x94\xb4\x59\x5c\
\x65\x44\xd4\x35\x71\x4c\xa9\x34\x48\xcd\x14\x8a\xc0\x69\x60\x4f\
\xba\xf7\x5f\x49\xff\x00\xf8\x4b\x4f\xce\x6f\x85\x9d\x03\xfc\xa6\
\xf6\x77\x5f\xf7\x97\xcb\x7f\x8d\x9d\x3d\xbe\xe0\xef\x0e\xea\xca\
\x54\x6c\xbe\xce\xee\xce\xb9\xd8\xbb\xaa\x9f\x1d\x92\xcd\x63\xa5\
\xc7\x57\xcf\x80\xdc\xdb\x8b\x19\x94\x8e\x8a\xbe\x15\xd7\x0c\xa6\
\x2f\x1c\xab\xfa\x58\xd8\xdb\xdd\x7b\xad\xb0\x3a\x5b\xe4\x4f\x41\
\x7c\x91\xc0\x65\x77\x57\xc7\xbe\xeb\xea\x9e\xf1\xdb\x18\x2c\xc3\
\x6d\xec\xd6\xe1\xea\x5d\xff\x00\xb5\xbb\x0f\x09\x89\xcf\x25\x15\
\x26\x49\xb0\xb9\x2c\xa6\xd4\xca\x65\x68\xa8\xb2\x8b\x8f\xaf\x82\
\x73\x04\x8e\xb2\xf8\x66\x47\xd3\xa5\x81\x3e\xeb\xdd\x69\x87\xff\
\x00\x0b\x22\xf8\xa7\xf2\x7f\xe4\xb6\xe8\xf8\x01\x2f\xc7\x6f\x8e\
\xbd\xdf\xde\xd0\x6d\x2c\x17\xc8\xf8\x77\x5c\xfd\x41\xd5\xdb\xcf\
\xb1\xa1\xdb\x53\x66\xab\xfa\x5a\x4c\x3c\x39\xf7\xda\x38\x6c\xb7\
\xf0\x89\x32\xd1\xe2\xea\x9a\x98\x4f\xa3\xcc\x29\xe4\xd3\x7d\x06\
\xde\xeb\xdd\x02\x1f\xf0\x8f\x8f\x87\xff\x00\x2c\x7e\x37\x7c\xb9\
\xf9\x63\x9e\xf9\x0b\xf1\x97\xbf\x3a\x37\x03\xb8\x3e\x38\xe0\xf1\
\x18\x2c\xe7\x6d\xf5\x26\xfa\xeb\xbc\x46\x63\x2f\x1f\x66\xe0\x6b\
\x5b\x15\x8b\xc8\x6e\xcc\x1e\x26\x97\x21\x92\x5a\x38\x24\x98\xc3\
\x0b\x3c\x8b\x14\x6c\xc4\x00\x2f\xef\xdd\x7b\xad\xef\xbb\x7b\xbb\
\xfa\x6b\xe3\xf6\xd0\x6e\xc1\xef\x6e\xd6\xeb\xae\x9a\xd8\x89\x93\
\xa0\xc2\xbe\xf3\xed\x0d\xe5\xb7\xb6\x26\xd7\x5c\xc6\x50\xca\x31\
\xb8\xb6\xcf\x6e\x6c\x86\x33\x18\xb9\x0a\xf3\x03\xf8\x61\x32\xf9\
\x24\xd0\xda\x41\xb1\xf7\xee\xbd\xd6\xb9\x5f\xf0\xa0\x6f\xe6\x0b\
\xf0\x43\xb8\xbf\x93\xd7\xcd\x7e\xb7\xea\x6f\x99\xdf\x16\xbb\x33\
\xb0\xb7\x3e\xd0\xeb\xba\x5d\xb7\xb1\xf6\x17\x7c\xf5\x86\xed\xdd\
\xdb\x82\xa6\x8f\xba\xfa\xd7\x2b\x55\x4f\x85\xdb\xb8\x1d\xcd\x5f\
\x97\xc9\xcd\x4d\x8d\xc7\xcf\x51\x22\xc3\x0b\x94\x86\x17\x76\xb2\
\xa9\x23\xdd\x7b\xaf\x9c\x6f\xf2\xa4\xde\x1b\x4f\xaf\xbf\x99\xa7\
\xc0\x3d\xf5\xbf\x37\x3e\x03\x65\xec\xad\xa1\xf2\xf3\xe3\xfe\xe4\
\xdd\x9b\xbb\x75\x65\xa8\x70\x3b\x6b\x6c\xed\xec\x3f\x66\x6d\xca\
\xfc\xb6\x73\x3d\x9b\xc9\xcd\x4d\x8e\xc4\xe2\x71\x94\x50\x3c\xd5\
\x15\x13\xc8\x91\x43\x1a\x16\x66\x00\x13\xef\xdd\x7b\xaf\xad\x97\
\x78\x7f\x32\xdf\xe5\xd9\xbc\x7a\x5b\xb8\x36\x7e\xd2\xf9\xdb\xf1\
\x07\x73\x6e\xbd\xd3\xd5\xdd\x83\xb7\x36\xd6\xdb\xc0\xfc\x8c\xea\
\x4c\xbe\x77\x70\x6e\x0c\xd6\xd2\xcb\xe3\x70\xf8\x4c\x2e\x2a\x83\
\x76\xd4\x57\x65\x32\xd9\x5c\x8d\x4c\x70\x53\x53\xc0\x8f\x34\xf3\
\x48\xa8\x8a\xcc\xc0\x1f\x75\xee\xbe\x48\x07\xf9\x58\xff\x00\x33\
\x20\x9e\x43\xfc\xbd\xfe\x6a\x68\xb0\x6b\xff\x00\xb2\xc3\xdc\xff\
\x00\x43\xf4\x36\x1b\x32\xff\x00\x9f\x7e\xeb\xdd\x7d\xaf\x7a\x6e\
\x8a\xb7\x1b\xd4\x3d\x57\x8e\xc8\xd2\x54\xe3\xf2\x14\x1d\x6f\xb1\
\xe8\xab\xe8\x2b\x21\x7a\x6a\xca\x2a\xda\x5d\xb1\x8b\x82\xaa\x92\
\xae\x9e\x50\xb2\xc1\x53\x4d\x3c\x6c\x92\x23\x00\xca\xca\x41\xe4\
\x7b\xf7\x5e\xeb\xe4\x67\xfc\xd1\x7f\x96\xf7\xf3\x0b\xec\x1f\xe6\
\x4b\xf3\xd7\x7b\xec\x7f\x83\x1f\x2e\x77\x76\xce\xdd\x7f\x2e\xfe\
\x41\x6e\x0d\xaf\xba\xb6\xd7\xc7\x8e\xd7\xce\xed\xdd\xc7\x80\xcb\
\xf6\x7e\xe4\xaf\xc4\x67\x70\x59\xac\x56\xd5\xab\xc6\xe5\xb1\x19\
\x6c\x7d\x44\x73\xd3\x54\x41\x2b\xc5\x2c\x52\x2b\x03\xcf\xbf\x75\
\xee\xb7\xc7\xfe\x48\x7f\x2f\xbe\x29\xfc\x40\xfe\x56\x1f\x10\xfe\
\x38\x7c\xb0\xf9\x27\xd1\x3f\x19\xfe\x42\x75\x7e\xd2\xde\xd8\xbe\
\xc9\xe8\xde\xfa\xed\x7d\x8b\xd4\xdd\xb9\xb0\x32\x39\x7e\xd9\xdf\
\xfb\x9b\x13\x43\xbc\xfa\xf3\x7c\xe7\x70\x9b\xb3\x6c\xd6\x65\x36\
\xde\x72\x8b\x21\x4f\x15\x6d\x24\x32\x4b\x45\x57\x0c\xca\x0a\x48\
\xa4\xfb\xaf\x75\xa4\x7f\xfc\x2a\x83\xb9\xfa\x7f\xbe\xbf\x9a\xf6\
\xe2\xec\x1e\x8e\xed\x4e\xbb\xee\x3d\x89\x53\xd0\x9d\x2d\x8c\x87\
\x79\x75\x7e\xf2\xdb\xfb\xef\x6b\x49\x93\xc7\xe3\xb3\x3f\x7f\x8d\
\x4c\xfe\xd9\xaf\xc9\x62\x9e\xbe\x8b\xcc\x9e\x68\x96\x52\xf1\x6b\
\x01\x80\x3c\x7b\xf7\x5e\xea\x95\x7a\x57\xe1\xc7\xcb\x6f\x92\x38\
\x2c\xbe\xe8\xf8\xf5\xf1\x8f\xbf\x7b\xcb\x6d\xed\xfc\xb2\xe0\x33\
\xb9\xfe\xa4\xea\x3d\xf9\xd8\x78\x7c\x3e\x71\xe8\xe1\xc8\xae\x1f\
\x27\x92\xda\x78\x2c\xad\x25\x0e\x4c\xd0\x54\x47\x37\x82\x47\x59\
\x3c\x52\x2b\x5b\x4b\x02\x7d\xd7\xba\xdd\xef\xfe\x12\x95\x3c\x1f\
\xcb\x4f\x15\xf3\x7a\x9b\xf9\x89\xcd\x17\xc1\x2a\x9e\xdc\xc8\x74\
\x0c\xfd\x51\x4f\xf2\xf9\xd7\xe3\x9c\xdd\x9b\x0e\xcc\xa6\xed\xd4\
\xde\x53\x6c\x18\xfb\x68\xed\x36\xdd\x91\x6d\x17\xdc\xd8\xc1\x93\
\x6a\x2f\x30\xa3\x39\x2a\x51\x25\xbc\xcb\xef\xdd\x7b\xa7\x1f\xf8\
\x58\x1f\xcc\x3f\x89\x7f\x24\x7e\x1a\x7c\x59\xdb\xbf\x1e\xfe\x4e\
\x74\x17\x78\xee\x1c\x0f\xc9\xca\xcc\xd6\x6f\x01\xd4\x9d\xb9\xb1\
\x3b\x0f\x33\x88\xc2\xff\x00\xa2\xbd\xe3\x42\x73\x19\x3c\x6e\xd3\
\xce\x65\xaa\xa8\x31\x82\xba\xae\x18\x7c\xf3\x2a\x46\x65\x95\x54\
\x12\x4d\xbd\xfb\xaf\x75\x44\x3f\xf0\x95\xce\xe9\xe9\xde\x83\xfe\
\x6b\x98\x3e\xc1\xef\x2e\xd5\xeb\xae\x9c\xd8\x90\x74\x0f\x73\x62\
\xa5\xde\x5d\xa1\xbc\xb6\xfe\xc4\xda\xc9\x94\xc8\x52\xe0\x3e\xc3\
\x18\xd9\xfd\xcd\x5f\x8d\xc5\x26\x42\xb8\x41\x21\x86\x13\x28\x79\
\x74\x30\x50\x48\xb7\xbf\x75\xee\xbe\x9f\x3d\x73\xfc\xc2\x3e\x07\
\x77\x06\xf5\xc0\xf5\xb7\x54\x7c\xcf\xf8\xb3\xd9\x7d\x87\xba\xaa\
\x2a\x29\x76\xce\xc6\xd8\x7d\xf5\xd6\x1b\xb7\x76\xee\x0a\x9a\x3a\
\x1a\xac\x9d\x55\x3e\x17\x6f\x60\xb7\x3d\x76\x5b\x27\x3d\x36\x3a\
\x8a\x69\xdd\x61\x89\xd9\x61\x89\xdc\x80\xaa\x48\xf7\x5e\xe8\xd0\
\x6e\xbd\xd7\xb5\xf6\x26\xd8\xdc\x3b\xdb\x7b\x6e\x2c\x26\xd0\xd9\
\xdb\x4b\x0b\x93\xdc\x7b\xa7\x75\x6e\x5c\xa5\x16\x0f\x6e\xed\xcd\
\xbf\x85\xa3\x9b\x21\x97\xce\x67\x33\x39\x29\xa9\xb1\xf8\xac\x4e\
\x2e\x82\x9e\x49\xaa\x2a\x27\x91\x22\x86\x24\x66\x66\x0a\x09\xf7\
\xee\xbd\xd5\x69\x77\xc7\xf3\x3e\xfe\x5b\x79\xce\x8b\xee\x8c\x46\
\x23\xe7\xe7\xc3\x4c\x96\x53\x2b\xd4\x9d\x8f\x41\x8d\xc7\xd1\x7c\
\x95\xe9\xfa\xaa\xda\xea\xda\xcd\x9b\x9a\x82\x96\x92\x92\x96\x9f\
\x77\x49\x51\x55\x55\x53\x33\xaa\x47\x1c\x6a\xd2\x48\xe4\x2a\x82\
\xc4\x0f\x7e\xeb\xdd\x7c\x55\x3d\xfb\xaf\x75\xef\x7e\xeb\xdd\x7d\
\xb5\xbf\x93\xb7\xfd\xba\x93\xf9\x73\xff\x00\xe2\x98\xfc\x76\xff\
\x00\xdf\x61\xb7\x3d\xfb\xaf\x74\x31\xf6\x47\xf3\x06\xf8\x21\xd3\
\x9b\xdb\x3d\xd6\xbd\xb5\xf3\x37\xe2\xdf\x59\x76\x26\xd6\x96\x92\
\x0d\xcb\xb1\x77\xf7\x7c\xf5\x86\xd1\xdd\xdb\x7e\x7a\xfc\x7d\x2e\
\x56\x8a\x1c\xce\xdd\xcf\x6e\x6a\x0c\xb6\x32\x5a\xbc\x5d\x74\x15\
\x11\xac\xd1\x21\x78\x26\x47\x17\x56\x52\x7d\xd7\xba\x44\x7f\xc3\
\xa9\x7f\x2c\xbf\xfb\xd8\x4f\xc2\xbf\xfd\x29\xce\x99\xff\x00\xec\
\xcb\xdf\xba\xf7\x5e\xff\x00\x87\x52\xfe\x59\x7f\xf7\xb0\x9f\x85\
\x7f\xfa\x53\x9d\x33\xff\x00\xd9\x97\xbf\x75\xee\xbd\xff\x00\x0e\
\xa5\xfc\xb2\xff\x00\xef\x61\x3f\x0a\xff\x00\xf4\xa7\x3a\x67\xff\
\x00\xb3\x2f\x7e\xeb\xdd\x0c\x9d\x2b\xf3\x23\xe2\x47\xc9\x1c\xf6\
\x5f\x6b\x7c\x7b\xf9\x39\xd0\x5d\xe5\xb9\x70\x18\x85\xcf\xe7\x30\
\x1d\x49\xdb\x9b\x0f\xb0\xf3\x38\x7c\x1b\x56\x41\x8e\x5c\xc6\x4f\
\x1b\xb5\x33\xb9\x5a\xba\x1c\x61\xaf\xa9\x8e\x1f\x3c\x88\xb1\xf9\
\x64\x55\xbe\xa6\x00\xfb\xaf\x74\x64\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\xd5\xdf\xe3\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x48\x6c\xef\x67\xf5\xae\xd7\xc8\xc9\x87\xdc\xdd\x87\xb1\
\xb6\xee\x5e\x28\xa1\x9e\x5c\x5e\x77\x76\x60\x31\x19\x18\xe0\xa8\
\x52\xd4\xf3\x49\x43\x90\xc8\x53\xd4\xa4\x53\xaa\x92\x8c\x54\x06\
\x03\x8b\xfb\xf7\x5e\xe9\xa3\xfd\x37\xf4\xb7\xfc\xfd\xee\xaf\xff\
\x00\xd0\xff\x00\x6a\x7f\xf5\xdb\xdf\xba\xf7\x5a\x02\x7f\xc2\xda\
\xf7\x96\xd1\xde\x3b\xcf\xf9\x76\x4d\xb4\xb7\x76\xd7\xdd\x50\x50\
\xed\x7f\x93\x11\xd5\x1d\xb9\xb8\xb0\xf9\xdf\xb1\x92\xa3\x2d\xd2\
\x25\x7e\xea\x3c\x5d\x6d\x53\xd1\x8a\xa5\x83\xd0\xd2\x05\x12\xf8\
\x98\x29\x63\x1b\x69\xf7\x5e\xeb\x45\x2f\x7e\xeb\xdd\x3d\xe0\x36\
\xd6\xe3\xdd\x99\x0f\xe1\x3b\x5b\x6f\xe6\xf7\x2e\x53\xc1\x35\x57\
\xf0\xdc\x06\x2a\xbf\x33\x90\xfb\x6a\x70\x0d\x45\x4f\xd9\xe3\xa0\
\xa9\xa8\xf0\x40\x18\x17\x7d\x3a\x54\x1e\x48\xf7\xee\xbd\xd2\xd3\
\xfd\x08\xf7\x3f\xfc\xfa\x2e\xcf\xff\x00\xd0\x07\x75\xff\x00\xf5\
\xa7\xdf\xba\xf7\x5e\xff\x00\x42\x3d\xcf\xff\x00\x3e\x8b\xb3\xff\
\x00\xf4\x01\xdd\x7f\xfd\x69\xf7\xee\xbd\xd7\xbf\xd0\x8f\x73\xff\
\x00\xcf\xa2\xec\xff\x00\xfd\x00\x77\x5f\xff\x00\x5a\x7d\xfb\xaf\
\x75\xef\xf4\x23\xdd\x1f\xf3\xe8\xbb\x3f\xff\x00\x40\x1d\xd7\xff\
\x00\xd6\x9f\x7e\xeb\xdd\x7d\xc6\xba\x9f\xb9\xfa\x82\x93\xab\x7a\
\xd6\x96\xb7\xb6\x7a\xd2\x0a\xca\x5d\x81\xb3\xa9\xaa\xe1\x9f\x7e\
\xed\x55\x9e\x1a\xa8\x36\xee\x3a\x2a\x88\xa6\x56\xcb\x6a\x59\x63\
\x99\x0a\xb0\x3c\x86\x07\xdf\xba\xf7\x4b\xff\x00\xf4\xdf\xd2\xdf\
\xf3\xf7\xba\xbf\xff\x00\x43\xfd\xa9\xff\x00\xd7\x6f\x7e\xeb\xdd\
\x7c\x8e\x3f\xe1\x41\x7b\x07\x7f\x6f\xef\xe7\x1b\xf3\x9b\x77\xec\
\x9d\x99\xbb\xb7\xb6\xd4\xce\x76\x26\xd0\xa8\xc2\x6e\x9d\xa7\xb7\
\xf3\x1b\x9b\x6e\xe5\xe9\x21\xea\x4e\xbc\xa4\x32\xe2\xf3\x98\x6a\
\x4a\xec\x65\x7c\x34\xf3\x53\xb4\x2c\x62\x95\xc4\x72\x46\xc8\x6c\
\xca\x40\xf7\x5e\xea\x8e\x33\xdb\x6f\x71\x6d\x5c\x83\x62\x77\x46\
\x07\x35\xb6\xf2\xa9\x0c\x35\x0d\x8c\xcf\x62\xeb\xb0\xf9\x05\xa7\
\xa9\x4f\x25\x3c\xed\x45\x90\x82\x9e\xa4\x43\x3a\x7a\x91\xb4\xe9\
\x61\xc8\x27\xdf\xba\xf7\x5f\x4a\x5f\xf8\x44\xc8\x1f\xec\x80\x7c\
\xab\x36\x17\x3f\x30\xeb\x41\x3f\x9b\x0e\x95\xea\x8b\x0b\xff\x00\
\x41\x7f\x7e\xeb\xdd\x6e\x1f\xb9\x37\xd6\xc9\xd9\xad\x46\x9b\xbf\
\x78\xed\x5d\xaa\xd9\x01\x31\xa0\x5d\xc9\xb8\x71\x18\x36\xae\x14\
\xde\x3f\xb8\x34\x63\x27\x57\x4a\x6a\x44\x1e\x64\xd7\xa3\x56\x9d\
\x42\xf6\xb8\xf7\xee\xbd\xd2\x67\xfd\x37\xf4\xb7\xfc\xfd\xee\xaf\
\xff\x00\xd0\xff\x00\x6a\x7f\xf5\xdb\xdf\xba\xf7\x5a\xce\x7f\xc2\
\xb2\x77\x36\xd8\xed\x5f\xe5\x33\x90\xda\xbd\x65\xb8\x30\x5d\x91\
\xba\x4f\xc8\xde\x99\xc9\x45\xb7\x36\x1e\x52\x83\x78\xe7\xc5\x0d\
\x1c\x5b\xb8\x56\xe4\x13\x11\xb7\xa7\xc8\xe4\x45\x25\x2a\x4c\x04\
\xb3\x78\xf4\x20\x70\x18\x8d\x42\xfe\xeb\xdd\x7c\xc2\x7f\xd0\x8f\
\x73\xff\x00\xcf\xa2\xec\xff\x00\xfd\x00\x77\x5f\xff\x00\x5a\x7d\
\xfb\xaf\x75\x16\xbf\xa8\x3b\x6b\x17\x43\x59\x93\xc9\xf5\x77\x62\
\xe3\xb1\xb8\xea\x69\x6b\x72\x19\x0a\xfd\x93\xb9\x69\x28\x68\x68\
\xe0\x5d\x73\xd5\xd6\x55\xd4\x63\x23\xa7\xa5\xa6\x85\x05\xde\x47\
\x65\x55\x1c\x93\xef\xdd\x7b\xa5\x2f\xc6\xc1\x7f\x91\x5d\x06\x0f\
\x20\xf7\x57\x56\x02\x0f\xe7\xfd\xff\x00\x38\x2f\x7e\xeb\xdd\x7d\
\xe3\xbd\xfb\xaf\x74\x18\xc9\xdd\xbd\x33\x0b\xcb\x1c\xbd\xb9\xd6\
\x31\x49\x0c\x92\x45\x34\x72\x6f\xdd\xaa\x8f\x0c\xb0\xbb\x47\x34\
\x72\xab\x65\x83\x47\x24\x52\x21\x56\x06\xc5\x48\x20\xf3\xef\xdd\
\x7b\xa1\x0e\x82\xbe\x87\x29\x45\x49\x92\xc6\x56\xd2\x64\x71\xd5\
\xf4\xf0\xd5\xd0\xd7\xd0\x54\x43\x59\x45\x5b\x49\x51\x1a\xcb\x05\
\x55\x25\x55\x3b\xc9\x05\x4d\x3c\xf1\x30\x64\x74\x62\xac\xa4\x10\
\x48\xf7\xee\xbd\xd7\xc7\x57\xfe\x14\x90\xcc\xdf\xce\xdf\xe7\xb1\
\x62\x58\xff\x00\x7e\xfa\xdd\x6e\x49\x27\x4a\xf4\x4f\x55\xaa\x8b\
\x9f\xc2\xa8\x00\x7f\x40\x3d\xfb\xaf\x75\x4e\x78\x2e\xb3\xec\x8d\
\xd3\x8e\x5c\xbe\xd9\xeb\xed\xef\xb8\xb1\x2f\x34\xb4\xc9\x94\xc1\
\x6d\x4c\xf6\x5f\x1c\xf5\x10\x69\xf3\xc0\xb5\xb8\xfa\x0a\x8a\x66\
\x9a\x1d\x63\x5a\x86\xd4\xb7\x17\x1c\xfb\xf7\x5e\xeb\xe9\x33\xff\
\x00\x08\xb6\xda\xdb\xb3\x68\xfc\x1e\xf9\x63\x8e\xdd\x9b\x6f\x71\
\xed\x8a\xa9\xbe\x56\xc5\x59\x4b\x45\xb8\xb0\xd9\x4c\x2c\xd3\x41\
\x27\x50\xec\x08\x5a\xa6\x9a\x0c\x9d\x35\x33\x4b\x1b\x3c\x1a\x59\
\x90\x11\x75\x00\xfe\x3d\xfb\xaf\x74\x4f\x3f\xe1\x6d\xdb\x2b\x79\
\xef\x1c\xef\xf2\xe6\x5d\xa7\xb4\x37\x56\xea\xfe\x1d\x89\xf9\x42\
\x6a\x9b\x6e\xed\xdc\xc6\x76\x3c\x79\xac\xab\xe8\x7d\x2b\x53\x26\
\x32\x8a\xaa\x3a\x39\x2b\x05\x1d\xd5\x5c\xab\x4a\x21\x24\x02\x10\
\xdb\xdd\x7b\xad\x10\x7f\xd0\x8f\x73\xff\x00\xcf\xa2\xec\xff\x00\
\xfd\x00\x77\x5f\xff\x00\x5a\x7d\xfb\xaf\x75\xef\xf4\x23\xdc\xff\
\x00\xf3\xe8\xbb\x3f\xff\x00\x40\x1d\xd7\xff\x00\xd6\x9f\x7e\xeb\
\xdd\x5c\xf7\xfc\x27\x9b\xaf\xf7\xd6\xc4\xfe\x72\x9f\x07\x37\x76\
\xfb\xd9\x7b\xab\x65\x6d\x2c\x1e\xf8\xec\x0a\xac\xce\xe8\xde\x1b\
\x7b\x2b\xb6\x76\xde\x22\x17\xe9\x4e\xcc\xa7\x82\x6c\x9e\x73\x39\
\x49\x43\x8b\xa0\x49\xaa\xe6\x8e\x28\xcc\xb2\xa6\xb9\x9d\x11\x6e\
\xec\xa0\xfb\xaf\x75\xf4\xc0\xfe\x6b\x1d\xb3\xd4\x79\xdf\xe5\x8d\
\xfc\xc2\xb1\x18\xee\xcf\xeb\x4c\xa5\x6e\x43\xe1\x6f\xc9\x8a\x5a\
\x6c\x74\x1b\xe7\x6a\x54\x4f\x5d\x34\xbd\x3f\xbb\x92\x3a\x3a\x7a\
\x61\x95\x66\xaa\xa9\xaa\x72\x23\x8e\x15\x0c\xf3\x48\xc1\x11\x59\
\x98\x29\xf7\x5e\xeb\xe2\xad\x0c\x32\xd4\x4b\x14\x10\x45\x24\xf3\
\xcf\x22\x43\x0c\x30\xa3\x49\x2c\xd2\xc8\xc1\x23\x8a\x28\xd0\x33\
\xc9\x24\x8e\xc0\x2a\x80\x49\x26\xc3\xdf\xba\xf7\x42\x6f\xfa\x0e\
\xee\xad\x66\x3f\xf4\x41\xda\x3a\xc3\x15\x29\xfe\x8f\xf7\x66\xb0\
\xc0\xd8\xa9\x5f\xe1\x37\xd4\x0f\xe3\xdf\xba\xf7\x41\x94\xb1\x4b\
\x04\xb2\x41\x3c\x72\x43\x34\x32\x3c\x53\x43\x2a\x34\x72\xc5\x2c\
\x6c\x52\x48\xe4\x8d\xc0\x74\x91\x1c\x10\x41\x00\x82\x2c\x7d\xfb\
\xaf\x75\xf6\xd2\xfe\x4e\xdf\xf6\xea\x4f\xe5\xcf\xff\x00\x8a\x63\
\xf1\xdb\xff\x00\x7d\x86\xdc\xf7\xee\xbd\xd7\xcc\xcb\xfe\x14\x77\
\xd5\x7d\x9f\xb8\x3f\x9d\x5f\xce\xac\xbe\x03\xad\xf7\xee\x6b\x11\
\x5b\xbc\x3a\xb9\xe8\xf2\x78\x8d\x9d\xb8\xb2\x38\xea\xb5\x8f\xa0\
\xfa\xa2\x09\x5e\x9a\xb6\x8f\x1d\x35\x35\x42\xa5\x44\x4e\x84\xa3\
\x11\xad\x48\xfa\x83\xef\xdd\x7b\xaa\x45\xff\x00\x42\x3d\xcf\xff\
\x00\x3e\x8b\xb3\xff\x00\xf4\x01\xdd\x7f\xfd\x69\xf7\xee\xbd\xd7\
\xbf\xd0\x8f\x73\xff\x00\xcf\xa2\xec\xff\x00\xfd\x00\x77\x5f\xff\
\x00\x5a\x7d\xfb\xaf\x75\xef\xf4\x23\xdc\xff\x00\xf3\xe8\xbb\x3f\
\xff\x00\x40\x1d\xd7\xff\x00\xd6\x9f\x7e\xeb\xdd\x6e\x45\xff\x00\
\x08\xb8\xd8\x1b\xe3\x68\x7c\xea\xf9\x59\x57\xbb\x76\x36\xef\xdb\
\x10\xd5\x7c\x4c\xfb\x7a\x4a\xdd\xc3\xb5\xb3\x78\x6a\x69\xa5\xff\
\x00\x4c\x3d\x75\x23\xd2\xc3\x5b\x92\xa0\xa6\xa7\x33\xc8\x91\xeb\
\x11\x07\xd6\xeb\x1b\x30\x04\x23\x11\xee\xbd\xd7\xd2\x1f\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7f\xff\
\xd6\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\x27\x1f\xf8\x57\x14\x7a\x3f\x9c\
\xef\x68\x36\x82\xbe\x6e\x93\xe8\x39\x01\x20\x81\x25\xb6\x4a\x45\
\xad\x49\xe0\x80\x62\xd3\xc7\x17\x5f\xeb\xef\xdd\x7b\xad\x65\x7d\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5b\x4f\xff\x00\xc2\
\x3c\xcb\x8f\xe7\x01\x0e\x9b\xd8\xfc\x5e\xee\xd1\x25\x85\xc6\x8f\
\xe2\x1b\x0c\x8d\x5f\xd0\x6b\x0b\xfe\xc7\xdf\xba\xf7\x5f\x55\x9f\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xf0\x4a\xed\xd6\x8d\xfb\x63\xb3\xde\x16\x47\x85\xbb\x0f\x7a\xb4\
\x4f\x1b\x07\x47\x8d\xb7\x26\x4c\xa3\x23\x82\x43\xa3\x29\x04\x10\
\x48\x23\xdf\xba\xf7\x41\xe7\xbf\x75\xee\xbe\xc8\xbf\xf0\x9c\xa0\
\x17\xf9\x28\x7c\x05\x00\x58\x7f\xa3\x4d\xe2\x7f\xd8\xb7\x70\xf6\
\x3b\x13\xfe\xc4\x9f\x7e\xeb\xdd\x68\x6d\xff\x00\x0a\xf1\x90\x3f\
\xf3\x93\xde\xca\x1d\x58\xc3\xd0\x3d\x13\x19\x50\x41\x31\x93\x81\
\xc9\xcb\xa1\x80\xe5\x58\x89\x43\x58\xf3\x66\x07\xe9\xef\xdd\x7b\
\xad\x90\xff\x00\xe1\x13\x24\x7f\xb2\x01\xf2\xac\x5c\x5c\x7c\xc3\
\xad\x24\x5f\x90\x0f\x4a\xf5\x40\x04\x8f\xad\x89\x07\xfd\xb7\xbf\
\x75\xee\x88\xcf\xfc\x2e\x41\x17\xfb\xdd\xfc\xb7\xa4\xb7\xac\x6d\
\xcf\x94\x68\x0d\xcf\xe9\x6c\x9f\x43\x12\x2d\xf4\xe4\xa8\xf7\xee\
\xbd\xd6\x84\xde\xfd\xd7\xba\xda\x53\xfe\x11\xf7\xff\x00\x6f\x86\
\xc5\x7f\x8f\xc6\x9e\xf0\xbf\xfb\x7d\xa0\x7f\xde\xc7\xbf\x75\xee\
\xbe\xac\x9e\xfd\xd7\xba\xad\xff\x00\xe7\x11\xe5\xff\x00\x86\xa2\
\xfe\x64\x1e\x10\xec\xc3\xe1\x27\xc9\x72\xc1\x14\xb1\x10\x8e\xa3\
\xdd\x66\xa1\x88\x00\xd9\x12\x00\xc5\x8f\xd1\x54\x13\xf8\xf7\xee\
\xbd\xd7\xc6\x43\xe3\x69\x03\xe4\x57\x41\x92\x40\x03\xba\x7a\xb0\
\x92\x78\x00\x0d\xf3\x82\xb9\x27\xf0\x07\xbf\x75\xee\xbe\xf1\xfe\
\xfd\xd7\xba\xf8\x2b\xf7\x7c\x7e\x2e\xe9\xed\xf8\xb4\x94\xf1\x76\
\x86\xff\x00\x8f\x41\x04\x14\xd1\xbb\x32\xcb\xa4\x83\xc8\x2b\x6b\
\x73\xcf\xbf\x75\xee\xbe\xd2\x5f\xca\x15\x12\x2f\xe5\x5b\xfc\xb9\
\xe3\x8c\x69\x48\xfe\x15\x7c\x6b\x44\x51\x73\xa5\x57\xa9\x36\xa8\
\x51\xcd\xcf\x00\x7b\xf7\x5e\xeb\xe5\xbf\xff\x00\x0a\x47\xff\x00\
\xb7\xdb\xfc\xf6\xff\x00\xc3\xf3\xae\x7f\xf7\xc5\x75\x67\xbf\x75\
\xee\xb7\xb0\xff\x00\x84\x83\x92\x7f\x93\x8e\xd6\x04\xf0\xbf\x22\
\x3b\xd0\x2f\xf8\x0f\xe2\x58\x16\xb7\xfb\x76\x3e\xfd\xd7\xba\xda\
\x1b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x51\xe7\xfc\x29\x20\xc6\x3f\x92\x47\xcf\x6f\x21\x55\x5f\xee\
\x27\x5c\x00\x58\x85\x1e\x43\xde\xdd\x56\x22\x00\x92\x3d\x4d\x29\
\x00\x0f\xc9\x20\x7b\xf7\x5e\xeb\xe3\x95\xef\xdd\x7b\xa1\x97\xe3\
\x9b\x68\xf9\x09\xd1\x0f\xa8\x2e\x8e\xe5\xea\xf6\xd4\x48\x01\x74\
\xef\x7c\x19\xd4\x49\xe0\x01\x6f\x7e\xeb\xdd\x7d\xe4\xfd\xfb\xaf\
\x75\xf0\x69\xf9\x10\xda\xfe\x40\x77\x9b\xdc\x36\xbe\xe2\xec\xd6\
\xd4\x2c\x43\x6a\xde\xb9\xb3\x70\x47\x04\x1b\xfb\xf7\x5e\xeb\xec\
\xed\xfc\x9d\xd5\x97\xf9\x52\x7f\x2e\x5d\x4a\xcb\xab\xe1\x77\xc7\
\x29\x57\x50\x23\x54\x73\x75\x66\xda\x96\x29\x16\xff\x00\x54\x96\
\x27\x0c\xa7\xe8\xca\x41\x1c\x1f\x7e\xeb\xdd\x59\x07\xbf\x75\xee\
\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\
\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\
\x75\xee\xbf\xff\xd7\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\x82\xff\x00\xe1\x41\x3d\xfb\xde\
\xdb\x47\xf9\xc9\x7c\xf0\xdb\xdb\x53\xba\xfb\x73\x6d\x60\x31\xbd\
\xa3\xb7\x62\xc7\x61\x30\x1d\x93\xbc\xb0\xf8\x8c\x7c\x52\x75\x7e\
\xc3\xa8\x78\x68\x71\xb8\xfc\xd5\x3d\x1d\x24\x26\x69\x99\xb4\xc6\
\x8a\xb7\x62\x6d\xcf\xbf\x75\xee\xa8\x7f\x75\xef\x2d\xdf\xbe\xf3\
\x12\x6e\x1d\xf1\xba\xb7\x26\xf2\xcf\xcd\x05\x3d\x34\xd9\xcd\xd7\
\x9c\xc9\xee\x2c\xc4\xb4\xd4\x91\x88\xa9\x69\xe4\xc9\xe5\xea\xab\
\x2b\x5e\x0a\x68\x86\x98\xd0\xb9\x54\x5e\x00\x03\xdf\xba\xf7\x49\
\xbf\x7e\xeb\xdd\x6f\xdb\xff\x00\x08\xa5\xea\xde\xb1\xec\x8d\x8d\
\xfc\xc2\xdb\xb0\xfa\xdf\x60\xef\xd7\xc4\x6e\xbf\x8d\xc9\x8c\x97\
\x79\xec\xed\xbb\xba\x65\xc5\xa5\x76\x23\xb9\x9a\xa6\x3a\x09\x73\
\x98\xea\xe7\xa2\x8a\xb1\xa9\x10\xc8\xb1\x95\x59\x0c\x4a\x48\x25\
\x45\xbd\xd7\xba\xde\x5b\xfd\x95\xdf\x8c\xdf\xf7\x8e\xbd\x15\xff\
\x00\xa2\x8f\x60\x7f\xf6\x3f\xef\xdd\x7b\xad\x6b\x7f\xe1\x56\x7b\
\x1f\x64\xf4\x2f\xf2\xa9\x9b\x7d\xf4\x6e\xd0\xda\xdd\x2f\xbe\x17\
\xe4\x87\x4e\xe2\x13\x79\x75\x3e\x07\x15\xd7\x3b\xaf\xf8\x5e\x42\
\x8f\x7a\x3d\x7e\x2c\x6e\x1d\x9f\x4b\x86\xcb\x9c\x75\x69\xa6\x8d\
\xa6\x83\xcd\xe2\x90\xc6\xa5\x94\x95\x04\x7b\xaf\x75\xf3\x42\xff\
\x00\x66\x87\xe4\xc7\xfd\xe4\x47\x7a\x7f\xe8\xdb\xdf\xff\x00\xfd\
\x90\x7b\xf7\x5e\xea\xc6\xbf\x94\x07\xc8\x5e\xfd\xdc\x9f\xcd\x4b\
\xf9\x77\x60\xf7\x17\x7a\x77\x1e\x6f\x09\x94\xf9\x8f\xf1\xfa\x8b\
\x25\x89\xcb\x76\x86\xf7\xaf\xc6\x64\xa8\xea\x3b\x23\x01\x0d\x45\
\x0d\x7d\x15\x56\x76\x4a\x6a\xca\x3a\xb8\x9c\xc7\x2c\x32\x2b\x47\
\x34\x6e\xc8\xea\xca\xc4\x1f\x75\xee\xbe\xcd\x5e\xfd\xd7\xba\xf7\
\xbf\x75\xee\x80\xe9\x3e\x31\xfc\x6c\x96\x69\x2a\x25\xf8\xf5\xd1\
\xd2\xd4\x4d\x34\x95\x12\xcf\x27\x53\x6c\x27\x9a\x59\xe5\x73\x2c\
\xb3\x49\x2b\x60\x0b\xbc\xd2\x4a\xc5\x99\x89\x24\xb1\xb9\x37\xf7\
\xee\xbd\xd7\xc5\xaf\xf9\xa6\xd0\x63\x31\x5f\xcc\xbb\xf9\x80\x62\
\xf0\xb8\xec\x66\x23\x11\x8e\xf9\x95\xf2\x4a\x83\x1b\x89\xc2\xd0\
\x51\xe2\xf1\x18\xca\x2a\x4e\xdd\xdd\xb4\xf4\xf8\xfc\x6e\x33\x1d\
\x0d\x3d\x06\x3e\x86\x8e\x28\xc4\x71\x41\x0c\x69\x14\x48\xa1\x55\
\x40\x00\x7b\xf7\x5e\xeb\xea\xa7\xff\x00\x09\xca\x20\xff\x00\x25\
\x1f\x80\xb6\x37\xff\x00\x8c\x67\xbc\x47\x1f\xd4\x77\x07\x63\x82\
\x3f\xd7\x04\x7b\xf7\x5e\xea\xd8\x77\x5f\x47\xf4\xae\xfc\xcc\x3e\
\xe1\xdf\x1d\x41\xd5\xdb\xcf\x3f\x2d\x3c\x14\x92\x67\x37\x5f\x5f\
\xed\x3d\xc5\x98\x92\x96\x94\x32\xd2\xd3\x3e\x4f\x2f\x89\xac\xad\
\x7a\x7a\x65\x72\x23\x42\xfa\x50\x13\x60\x3d\xfb\xaf\x74\xa2\xd9\
\xbd\x7b\xb0\x7a\xe6\x82\xab\x17\xd7\xbb\x1f\x67\xec\x4c\x65\x75\
\x61\xc8\x56\xe3\xb6\x6e\xda\xc2\xed\x8a\x0a\xca\xf3\x0c\x54\xe6\
\xba\xaa\x8f\x09\x45\x43\x4f\x51\x58\x69\xe0\x48\xfc\xae\xa5\xf4\
\x22\xad\xec\x00\xf7\xee\xbd\xd6\x82\x3f\xf0\xb9\x0e\x37\x5f\xf2\
\xde\xbf\x1a\xb6\xf7\xca\x4d\x3f\xed\x5a\x32\x5d\x0d\xaa\xdf\xd7\
\x4e\xb1\x7f\xe9\x71\xfd\x7d\xfb\xaf\x75\xa1\x27\xbf\x75\xee\xb6\
\x94\xff\x00\x84\x7e\x10\x3f\x9c\x36\x26\xe4\x73\xf1\xa7\xbc\x00\
\xff\x00\x13\xfe\xfd\x13\x61\xfd\x4d\x87\xbf\x75\xee\xb7\xb2\xff\
\x00\x85\x19\x6e\x1c\xf6\xd4\xfe\x4b\x9f\x39\xb7\x06\xd8\xcf\xe6\
\xb6\xbe\x7b\x1b\xb3\xba\xce\x5c\x76\x77\x6e\xe5\xf2\x18\x1c\xcd\
\x0c\xb2\xf7\xbf\x56\x53\xb9\xa3\xca\xe2\xea\x69\x2b\xa9\x8d\x4c\
\x13\x34\x32\x04\x90\x09\x62\x91\xa3\x6b\xab\x32\x9f\x75\xee\xbe\
\x65\x7f\xca\x97\xbc\xbb\xa7\xb0\x3f\x99\xaf\xf2\xff\x00\xd9\x1b\
\xfb\xb8\xbb\x4f\x7a\x6c\xad\xd7\xf3\x0b\xe3\xce\x03\x74\xed\x1d\
\xdb\xd8\x9b\xbb\x70\x6d\x7d\xcd\x82\xca\xf6\x8e\xda\xa2\xc9\x60\
\x77\x0e\x07\x2d\x98\xaa\xc5\x66\xb0\xb9\x7a\x49\x9a\x9e\xa6\x92\
\xa6\x29\x69\xea\x61\x91\xa3\x91\x19\x18\xa9\xf7\x5e\xeb\xeb\x69\
\xf2\x0b\xe3\x87\xc7\x8c\x37\x42\xf7\x86\x63\x0f\xd0\xbd\x2f\x8a\
\xcb\x62\xfa\x83\xb2\xf2\x38\xdc\xa6\x3b\xab\x76\x35\x16\x43\x1f\
\x5f\x47\xb2\xf3\x75\x14\x95\xb4\x55\x94\xd8\x28\xea\x29\x6a\xe9\
\x6a\x23\x57\x8e\x44\x65\x74\x75\x04\x10\x47\xbf\x75\xee\xbe\x29\
\xab\xf2\x83\xe4\xba\x58\x2f\xc8\x8e\xf4\x50\xb6\x0a\x17\xb6\xf7\
\xf8\xb5\xbe\x96\xb6\xe0\x16\xb7\xbf\x75\xee\x81\x09\xa6\x9a\xa6\
\x69\x6a\x2a\x25\x96\xa2\xa2\xa2\x59\x26\x9e\x79\xa4\x79\x66\x9a\
\x69\x5c\xbc\xb2\xcb\x2b\x96\x79\x25\x91\xd8\x96\x62\x49\x24\xdc\
\xfb\xf7\x5e\xeb\xed\xc3\xfc\xa2\x41\x5f\xe5\x63\xfc\xba\x83\x02\
\x0f\xfb\x25\x7f\x1a\xcd\x88\x20\xd9\xba\x93\x6a\x32\x9e\x7f\x0c\
\xa4\x11\xfd\x47\xbf\x75\xee\xbe\x5b\x9f\xf0\xa4\x80\x47\xf3\xb7\
\xf9\xed\x70\x47\xfb\xfe\xfa\xe0\xf3\xc7\x07\xa2\x7a\xac\x83\xfe\
\xb1\x07\xdf\xba\xf7\x5b\xd6\xff\x00\xc2\x41\x48\x3f\xc9\xcb\x6c\
\x58\x83\x6f\x91\x5d\xe6\x0f\xf8\x1f\xbf\xdb\xe6\xc7\xfa\x1b\x1f\
\x7e\xeb\xdd\x50\xbf\xfc\x2c\xe3\xb6\xfb\x57\xae\xbe\x71\xfc\x54\
\xa1\xeb\xee\xd0\xec\x5d\x8b\x45\x5d\xf1\x45\xea\xeb\xb1\xfb\x3b\
\x7c\x6e\x6d\xb3\x43\x55\x55\xfe\x97\xbb\x02\x11\x59\x51\x43\x85\
\xca\x51\x53\x4b\x56\xf1\x44\xa8\x65\x64\x32\x3a\x46\x8a\x49\x08\
\xa0\x7b\xaf\x75\xa7\x5f\xfb\x34\x3f\x26\x3f\xef\x22\x3b\xd3\xff\
\x00\x46\xde\xff\x00\xff\x00\xec\x83\xdf\xba\xf7\x5e\xff\x00\x66\
\x87\xe4\xc7\xfd\xe4\x47\x7a\x7f\xe8\xdb\xdf\xff\x00\xfd\x90\x7b\
\xf7\x5e\xeb\xdf\xec\xd0\xfc\x98\xff\x00\xbc\x88\xef\x4f\xfd\x1b\
\x7b\xff\x00\xff\x00\xb2\x0f\x7e\xeb\xdd\x5c\x87\xfc\x27\xe7\xb6\
\xfb\x5f\xb6\xbf\x9c\x37\xc2\x4e\xbc\xed\x3e\xcb\xec\x0e\xcf\xd8\
\x3b\x9b\x7a\xef\xfa\x5d\xc9\xb1\x7b\x0b\x78\xee\x2d\xef\xb3\xb3\
\xf4\xb4\xbd\x2f\xd9\x59\x2a\x78\x73\x7b\x5f\x72\xe4\x72\x98\x4c\
\xa4\x34\x75\xf4\x50\xd4\xc6\x27\x82\x41\x14\xf0\xa4\xab\x67\x45\
\x61\xee\xbd\xd7\xd5\xff\x00\xfd\x95\xdf\x8c\xdf\xf7\x8e\xbd\x15\
\xff\x00\xa2\x8f\x60\x7f\xf6\x3f\xef\xdd\x7b\xa0\x9b\xbf\x3e\x37\
\xfc\x77\xc3\x74\x57\x75\x65\xf1\x1d\x09\xd2\xd8\xbc\xae\x2f\xa9\
\x7b\x23\x21\x8d\xc9\x63\xfa\xb3\x63\x51\xd7\xe3\xeb\xe8\xf6\x6e\
\x66\xa2\x92\xb6\x8a\xae\x9f\x05\x1c\xf4\xb5\x54\xd3\xc6\xaf\x1c\
\x88\xca\xe8\xca\x08\x20\x8f\x7e\xeb\xdd\x7c\x52\x3f\xd9\x9f\xf9\
\x2d\xa7\x4f\xfb\x30\xfd\xe7\xa6\xda\x74\xff\x00\xa5\xad\xfd\xa6\
\xc0\x5a\xd6\xfe\xf0\x5a\xd6\xf7\xee\xbd\xd7\xda\xef\xa2\x3e\x37\
\x7c\x78\xcb\x74\x7f\x4c\xe5\xb2\xfd\x07\xd2\xf9\x2c\xb6\x47\xaa\
\x3a\xea\xbf\x25\x91\xc8\x75\x66\xc6\xab\xc8\x57\x64\x2a\xb6\x7e\
\x1a\x7a\xba\xca\xda\xba\x8c\x14\x95\x15\x15\x75\x15\x0e\xcf\x24\
\x8e\xc5\xd9\xc9\x24\xdf\xdf\xba\xf7\x5f\x24\x5f\xe6\xb9\xde\x1d\
\xdb\xd7\xbf\xcc\xd7\xe7\xe6\xc7\xd8\xbd\xc1\xda\xbb\x27\x66\xed\
\x4f\x97\x9d\xfd\x82\xdb\x1b\x3f\x6a\x76\x16\xef\xdb\x9b\x67\x6c\
\x60\xf1\xbd\x95\xb8\xa9\x71\xb8\x2d\xbf\xb7\xf1\x39\x8a\x3c\x5e\
\x13\x0b\x8a\xa4\x89\x20\xa5\xa4\xa6\x8a\x2a\x7a\x68\x51\x63\x8d\
\x15\x15\x54\x7b\xaf\x75\x5f\xff\x00\xec\xd0\xfc\x98\xff\x00\xbc\
\x88\xef\x4f\xfd\x1b\x7b\xff\x00\xff\x00\xb2\x0f\x7e\xeb\xdd\x7d\
\x43\x7f\xe1\x24\x1b\xc3\x77\x6f\x9f\xe5\x25\x49\x9e\xde\xdb\xaf\
\x73\x6f\x2c\xe4\xbf\x25\xbb\xaa\x9d\xf3\x1b\xb3\x3f\x96\xdc\x79\
\x4f\xb6\x86\x0d\x9a\x62\xa6\x15\xf9\x9a\xba\xda\xa5\xa6\x89\x9d\
\x99\x63\x0e\x10\x3b\xb3\x01\x76\x62\x7d\xd7\xba\xa0\x8f\xf8\x59\
\xcf\x6d\xf6\xaf\x5d\x7c\xe1\xf8\xa5\x43\xd7\xdd\xa1\xd8\x9b\x16\
\x8e\xbb\xe2\x9c\xb5\x75\xd8\xfd\x9d\xbe\x37\x36\xd9\xa2\xaa\xa9\
\xff\x00\x4b\xbb\xf6\x11\x59\x51\x45\x85\xca\x51\x53\x4b\x54\xf1\
\x42\xa8\x65\x64\x2e\xc9\x1a\xa9\x24\x22\x81\xee\xbd\xd6\x9d\x3f\
\xec\xd0\xfc\x98\xff\x00\xbc\x88\xef\x4f\xfd\x1b\x7b\xff\x00\xff\
\x00\xb2\x0f\x7e\xeb\xdd\x6e\x29\xff\x00\x08\xc7\xed\xae\xd6\xec\
\x5f\x9c\x9f\x2a\xe8\xbb\x07\xb4\x3b\x17\x7d\x50\xd0\x7c\x51\x4a\
\xaa\x2a\x0d\xe3\xbe\x37\x3e\xe6\xa0\xa5\xab\x3d\xbd\xd7\xd1\x7d\
\xdd\x3d\x16\x6b\x29\x5b\x4b\x15\x5a\xc3\x23\xa2\xca\xa8\x24\x54\
\x91\xd4\x10\x1d\x81\xf7\x5e\xeb\xe8\xe1\xef\xdd\x7b\xaf\x7b\xf7\
\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbf\xff\xd0\xdf\xe3\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\
\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\xf8\x95\x36\xd7\xfe\xfa\
\xae\xbf\xf7\xee\xbd\xd6\xe3\x5f\xf0\x98\x9f\xe5\xdb\xf0\x2f\xe4\
\x97\xf2\x9a\xeb\x7e\xcd\xef\xef\x87\x1f\x1b\x3b\x93\xb1\xab\x3b\
\x77\xbb\x31\x75\xdb\xeb\xb2\x7a\x7f\x64\xef\x1d\xd9\x5d\x8f\xc5\
\x6e\xf6\xa4\xc5\xd1\x55\xe7\xb3\xb8\x8a\xec\x8c\xd4\x98\xda\x45\
\x58\xa0\x88\xc9\xe3\x89\x16\xca\xa0\x96\x27\xdd\x7b\xad\x83\xbf\
\xe1\x9c\x3f\x95\x0f\xfd\xeb\x97\xe1\x8f\xfe\x93\xc7\x58\xff\x00\
\xf6\x3b\xef\xdd\x7b\xad\x42\x7f\xe1\x51\x19\x2a\xef\xe5\x3b\xba\
\x3e\x1a\xe1\xff\x00\x96\x35\x54\xff\x00\x00\xb1\x7d\xdb\x80\xee\
\xfc\x97\x71\xd0\xfc\x45\x9a\x4e\x85\xa5\xed\x2a\xfd\x8d\x91\xea\
\xfa\x6d\x93\x57\xbf\x69\xfa\xe5\xb0\x10\xee\x7a\x9d\xa3\x4f\xb9\
\xf2\x69\x8e\x7a\xb5\x91\xe9\x53\x21\x38\x42\x04\x84\x7b\xf7\x5e\
\xe9\x5f\xff\x00\x09\x0a\xf9\xbf\xf3\x1f\xe5\x5f\xca\xcf\x96\x5b\
\x7b\xe4\xb7\xca\x3e\xf9\xef\x9d\xbd\xb6\x3e\x3e\x6d\xbc\xce\xde\
\xc0\xf6\xcf\x67\xee\xdd\xf7\x88\xc2\x66\x66\xec\x7c\x65\x0c\x99\
\x7c\x5d\x06\xe3\xc9\xe4\x20\xc7\xe4\x9e\x8a\x69\x21\x69\xa1\x08\
\xef\x13\x95\x62\x40\x5b\x7b\xaf\x75\xbc\x5f\x79\x7c\x7a\xe8\xbf\
\x93\x5b\x1c\xf5\x9f\xc8\x7e\xa2\xeb\xce\xec\xeb\xc3\x98\xc6\xee\
\x13\xb2\xbb\x3b\x69\xe1\xb7\x9e\xd8\x39\xdc\x3f\x9f\xf8\x5e\x58\
\xe1\xb3\xb4\x95\xb4\x27\x21\x8f\x15\x52\x08\xa5\xd1\xad\x04\x8d\
\x63\xc9\xf7\xee\xbd\xd1\x3b\xff\x00\x86\x70\xfe\x54\x3f\xf7\xae\
\x5f\x86\x3f\xfa\x4f\x1d\x63\xff\x00\xd8\xef\xbf\x75\xee\x89\x47\
\xf3\x23\xfe\x5d\x1f\x02\x3e\x2e\xfc\x00\xf9\x9b\xf2\x37\xe3\x9f\
\xc3\x6f\x8d\x9d\x21\xdf\x7d\x21\xf1\xab\xb8\x7b\x3f\xa7\x3b\x8f\
\xab\xba\x7f\x65\x6c\x8e\xc9\xea\xee\xc8\xd9\xbb\x23\x31\x9b\xda\
\x1b\xf3\x61\x6f\x1d\xbd\x88\xc7\xe7\xb6\xb6\xed\xda\xf9\xaa\x48\
\x6a\xe8\x6b\xa8\xe7\x8a\xa2\x9e\xa2\x25\x75\x61\x6f\x7e\xeb\xdd\
\x7c\xca\x3f\xe1\xe3\x3f\x9a\xe9\xfa\xff\x00\x31\x9f\x99\xe4\xff\
\x00\x53\xf2\x23\xb3\xc9\x3f\xeb\x93\xb8\xf9\x3e\xfd\xd7\xba\xe2\
\xdf\xce\x2b\xf9\xae\x3a\x95\x3f\xcc\x67\xe6\x7d\x98\x58\xdb\xe4\
\x57\x68\x29\xb1\xfe\x8c\xbb\x90\x30\xff\x00\x60\x7d\xfb\xaf\x75\
\xf6\x99\xea\xaa\xda\xdc\x97\x57\xf5\xbe\x47\x25\x57\x51\x5f\x91\
\xc8\x6c\x1d\x9f\x5b\x5f\x5d\x57\x2b\x4d\x55\x5b\x5b\x55\xb7\xb1\
\xd3\xd5\x55\xd4\xcc\xde\xa9\x6a\x2a\x67\x91\x9d\xd8\xf2\xcc\xc4\
\xfb\xf7\x5e\xe8\x9d\x6f\x1f\xe5\x43\xfc\xb2\xfb\x0f\x77\x6e\x8d\
\xff\x00\xbe\xfe\x04\x7c\x4b\xde\x1b\xdf\x7b\xee\x0c\xb6\xeb\xde\
\x1b\xb3\x71\xf4\x4f\x5d\xe6\x37\x06\xe6\xdc\xb9\xda\xc9\x72\x39\
\xac\xf6\x6f\x2b\x5d\x81\x9a\xb3\x23\x95\xca\xd7\xce\xf3\x54\x4f\
\x2b\xb4\x92\xca\xec\xcc\x49\x24\xfb\xf7\x5e\xeb\xe6\xc7\xfc\xe4\
\xfe\x72\xfc\xc8\xf8\x4b\xfc\xcc\xfe\x59\x7c\x58\xf8\x7b\xf2\x83\
\xbd\x7e\x30\xfc\x6a\xe9\xcd\xed\xb7\x70\x1d\x51\xd0\xbd\x17\xd9\
\xdb\xbb\xac\xfa\x97\xae\x30\xb9\x2e\xbb\xd9\xbb\x93\x23\x8a\xd9\
\x3b\x0f\x6a\x65\x71\xbb\x73\x6d\x63\xeb\xf7\x16\x6e\xb2\xba\x58\
\x69\x29\xe2\x89\xea\xaa\xa5\x93\x4e\xa7\x3e\xfd\xd7\xba\xac\x9f\
\xf8\x78\xcf\xe6\xbb\xff\x00\x7b\x19\xf9\x9d\xff\x00\xa5\x11\xd9\
\xff\x00\xfd\x91\xfb\xf7\x5e\xeb\xdf\xf0\xf1\x9f\xcd\x77\xfe\xf6\
\x33\xf3\x3b\xff\x00\x4a\x23\xb3\xff\x00\xfb\x23\xf7\xee\xbd\xd6\
\xca\x3f\xc9\x67\xe5\xf7\xc5\x2d\xf3\xb0\x7b\x83\x7c\xff\x00\xc2\
\x87\xfb\x7b\x68\xf7\xac\x5b\x85\xfa\xd2\xbb\xe1\x6c\x9f\x3a\x69\
\xb2\xff\x00\x23\x73\xf8\x5d\xaf\x29\xec\x3a\x6e\xe0\xca\x75\xbe\
\x13\x35\x88\xec\x0d\xc5\xd7\xf8\x1d\xcd\x91\xa3\xdb\xa6\xaa\x79\
\xa0\xa0\xa7\xcd\x0a\x4a\x69\x60\x33\x24\x05\xfd\xd1\x9d\x57\x89\
\xe9\xf8\xed\xa7\x95\x75\x47\x11\x2b\xeb\xd5\xda\xff\x00\xb3\x33\
\xff\x00\x08\xfc\xbd\xbf\xbb\x7f\xcb\x9a\xff\x00\xd3\xfd\x94\xaa\
\xff\x00\xfe\xd3\x1e\xe9\xe3\xc5\xfc\x7f\xc8\xff\x00\x9b\xa7\x3e\
\x86\xeb\xfd\xf2\x7f\x97\xf9\xfa\x18\x3a\x3f\xf9\x8a\x7f\xc2\x5b\
\xfe\x35\x6f\xa8\xfb\x3f\xe3\xd6\xf4\xf8\x53\xd2\xbd\x8b\x1e\x1f\
\x23\x80\x8b\x7b\xf5\x8f\xc7\x6d\xd1\xb3\x37\x42\x60\xf2\xff\x00\
\x6e\xd9\x4c\x4a\xe6\x70\x5d\x49\x45\x5e\xb4\x19\x03\x4b\x17\x9a\
\x2d\x7a\x5f\x42\xdc\x1b\x7b\xa9\xba\x80\x71\x93\xf9\x1f\xf3\x75\
\xaf\xa2\xba\x39\x10\x9f\xe5\xfe\x7e\x8c\x47\x6b\xff\x00\x3c\x6f\
\xe4\x21\xde\xbd\x7b\xb9\x7a\xa3\xba\x3e\x5a\x74\x37\x69\x75\x8e\
\xf1\xa6\xa5\xa3\xdd\x7b\x0b\x7e\x75\xaf\x65\x6e\x6d\xa7\xb8\xa9\
\x28\xb2\x34\x79\x7a\x2a\x7c\xc6\x0b\x2d\xd6\xb5\x38\xfc\x84\x54\
\xb9\x4c\x7c\x15\x11\xac\x91\xb0\x49\xa1\x47\x16\x65\x04\x7b\xea\
\xed\xff\x00\xdf\x9f\xc8\xff\x00\x9b\xab\x8d\xba\xf5\x85\x44\x06\
\x9f\x68\xff\x00\x3f\x45\x27\x61\x7c\xc3\xff\x00\x84\x9b\xf5\xd6\
\xf4\xda\x7d\x89\xd6\xf1\xfc\x06\xd9\x9b\xf7\x63\x6e\x1c\x56\xea\
\xd9\x9b\xc7\x6b\xfc\x5d\xcd\x60\xf7\x16\xd7\xdc\xf8\x3a\xa8\xeb\
\xf0\xd9\xec\x1e\x66\x8b\xa7\xa9\xea\xf1\x99\x5c\x5d\x6c\x29\x35\
\x3c\xf1\x3a\xbc\x52\xa8\x65\x21\x80\x3e\xf4\x6f\x2d\x40\xa9\x98\
\x0e\xae\x36\xad\xc1\xb8\x5a\xb1\xfd\x9f\xe7\xe8\xda\x77\x87\xf3\
\xf1\xfe\x50\x5b\xbb\xa5\xbb\x83\x69\xed\xef\x9c\x1d\x73\x92\xcf\
\xee\x6e\xad\xec\x1d\xbd\x84\xc7\x45\xb5\xfb\x4a\x29\x72\x19\x8c\
\xce\xd2\xcb\xe3\xb1\x94\x30\xc9\x53\xb0\xa0\xa7\x13\x56\x56\xd4\
\x24\x69\xa9\xd5\x75\x30\xb9\x1e\xe9\xf5\xf6\x7f\xef\xf1\xfc\xff\
\x00\xcd\xd5\xbf\x73\xee\x5f\xf2\x88\xdf\xb4\x7f\x9f\xaf\x91\x88\
\xea\x9e\xc2\x20\x1f\xee\xc5\x68\x06\xe4\x5e\x5a\x25\x3c\x0b\x9b\
\xab\x55\x02\x08\xff\x00\x1f\x7e\xfa\xfb\x3f\xf7\xf8\xfe\x7f\xe6\
\xeb\x5f\xba\x77\x11\xff\x00\x11\x5a\xbf\x68\xff\x00\x3f\x5c\x93\
\xa9\xbb\x16\x46\x0b\x1e\xd5\xc8\x48\xcc\x6c\x02\x3d\x1b\x13\xfe\
\xc0\x54\x9f\x7a\x3b\x8d\x90\xe3\x70\x3f\x9f\xf9\xba\xb2\xec\xdb\
\x9b\x7c\x36\x6e\x7f\x67\xf9\xfa\xb1\x3d\x8f\xf3\x9b\xf9\xc3\xf5\
\xe6\xcd\xda\x9d\x7f\xd7\xbf\x2f\xfe\x62\x6c\xdd\x89\xb2\x76\xfe\
\x2b\x6a\x6c\xcd\xa1\xb6\xbb\xf7\x79\x61\x36\xfe\xd8\xdb\x58\x4a\
\x48\xe8\x30\xd8\x1c\x26\x1e\x8b\x75\xd3\xd2\x63\x31\x58\xba\x18\
\x52\x18\x20\x8d\x15\x22\x89\x42\xa8\x00\x01\xed\xa3\xbc\x6d\xa0\
\x90\x6e\xd6\xbf\x61\xff\x00\x37\x4f\x0e\x5e\xde\x4f\x0b\x07\xfd\
\xab\xfe\x7e\xb7\x04\xfe\x5e\xff\x00\x2c\x7f\x90\x56\x73\xe1\xaf\
\x44\xe7\x3f\x9b\x0e\x5b\xe2\xcf\x65\xff\x00\x30\x6c\xbe\x03\x70\
\xd5\xfc\x8f\xdf\x7f\x25\x7a\x43\x31\xdb\xdd\xe5\xb8\xf3\xeb\xbe\
\x77\x4d\x3e\xd4\xa9\xec\x0e\xc7\xac\xeb\x8d\xd7\x5b\xba\x2b\xe9\
\x3a\xee\x1c\x3d\x35\x2c\xb2\xe4\x2a\x5e\x2a\x08\x20\x87\x50\xf1\
\xe9\x55\x31\x5e\x5b\x4e\x9e\x24\x52\xea\x4a\xd2\xa0\x1f\xf3\x74\
\x96\x5d\xae\xfe\x07\x11\xcd\x6c\x55\xfd\x2a\x3f\xcf\xd6\xcf\x1f\
\xcb\x73\xe4\x37\xf2\xbe\xed\x4e\xb6\xce\xec\x0f\xe5\x8d\xbc\x3e\
\x3d\xc9\xd7\x3b\x2b\x2d\x55\x9d\xdc\x3d\x6f\xd1\x78\x1a\x6d\x85\
\x06\xdb\xca\x6e\x59\x95\xaa\xf3\xd9\x0e\xbd\x93\x0b\xb6\xb2\xb4\
\x0b\x9a\xa9\x80\x06\xad\x6a\x11\x14\xd2\x20\x5f\x21\x61\x6f\x6f\
\x2b\xa3\xd7\x4b\x67\xa4\xb2\x43\x2c\x54\xf1\x10\x8e\x87\x7e\xfe\
\xf8\x27\xf0\xc3\xe5\x5e\xe4\xc1\xef\x0f\x92\xff\x00\x16\x7a\x1b\
\xbe\x77\x56\xda\xc2\x36\xda\xdb\xfb\x87\xb6\x3a\xc3\x69\x6f\xac\
\xc6\x17\x6f\xbd\x7c\xf9\x46\xc3\x63\x6b\xf7\x0e\x2e\xbe\xa2\x8f\
\x1a\x72\x35\x52\xcf\xe1\x46\x09\xe5\x91\x9a\xd7\x63\x7b\xf4\xd7\
\x40\x3f\xfc\x33\x87\xf2\xa1\xff\x00\xbd\x72\xfc\x31\xff\x00\xd2\
\x78\xeb\x1f\xfe\xc7\x7d\xfb\xaf\x75\xef\xf8\x67\x0f\xe5\x43\xff\
\x00\x7a\xe5\xf8\x63\xff\x00\xa4\xf1\xd6\x3f\xfd\x8e\xfb\xf7\x5e\
\xeb\x5d\x4f\xf8\x54\x77\xf2\xf3\xf8\x23\xf1\xa3\xf9\x55\xe7\xfb\
\x2b\xe3\xe7\xc3\xef\x8e\x3d\x2f\xd8\x71\xf7\xd7\x4d\xe1\x61\xde\
\xfd\x67\xd4\x5b\x2b\x66\x6e\xa8\x31\x39\x4a\x9d\xc0\xb9\x3c\x6c\
\x39\xcc\x0e\x22\x87\x20\x94\x39\x04\x85\x56\x68\x7c\x9e\x39\x00\
\x1a\x94\x95\x52\x3d\xd7\xba\xf9\xcd\x75\x57\x6c\xf6\x77\x46\x76\
\x0e\xda\xed\x7e\x9a\xdf\xdb\xb7\xab\xbb\x37\x66\xd5\x54\x57\x6d\
\x3d\xfb\xb1\x33\xd9\x1d\xb3\xbb\x36\xe5\x65\x66\x3e\xaf\x15\x55\
\x53\x86\xce\xe2\x67\xa6\xc8\x63\xe6\xa9\xc6\x57\xcf\x4e\xed\x1c\
\x8a\x5e\x19\x9d\x0d\xd5\x88\x3e\xeb\xdd\x5d\xff\x00\xf2\xcf\xfe\
\x6a\xbf\xcc\xc3\xb2\x7f\x98\xaf\xc1\x2d\x81\xbf\x3e\x7c\xfc\xb7\
\xdd\xbb\x27\x79\x7c\xba\xf8\xf5\xb6\x77\x6e\xd4\xdc\x1d\xef\xd8\
\x79\x8d\xbf\xb9\xb6\xd6\x6f\xb5\x36\xc6\x33\x39\xb7\xb3\xb8\x8c\
\x8e\x72\xa6\x83\x29\x86\xcd\x62\xea\xa5\xa6\xa9\xa7\x9a\x37\x49\
\x21\x91\x85\x81\xb1\x1e\xeb\xdd\x7d\x64\x7e\x46\xff\x00\xd9\x3d\
\x77\xc7\xfe\x21\x9e\xd0\xff\x00\xde\x23\x39\xef\xdd\x7b\xaf\x83\
\x6f\xbf\x75\xee\xac\x67\x17\xfc\xdf\x7f\x9a\x7e\x13\x1f\x8c\xc4\
\xe2\x3f\x98\x6f\xcc\x4c\x66\x33\x0d\x43\x43\x8c\xc4\xe3\xe8\x7e\
\x40\xf6\x55\x35\x16\x3b\x1d\x8c\xa6\x86\x8f\x1f\x45\x47\x4d\x16\
\xe0\x58\x60\xa5\xa3\xa5\x81\x23\x8d\x14\x05\x54\x50\x07\xbf\x75\
\xee\x88\x7e\xf8\xdf\x1b\xcb\xb3\x37\x96\xe8\xec\x3e\xc3\xdd\x19\
\xdd\xed\xbe\xf7\xbe\x7b\x29\xba\x37\x86\xf0\xdd\x19\x3a\xbc\xd6\
\xe3\xdc\xfb\x93\x37\x59\x2e\x43\x31\x9d\xce\x65\xeb\xe5\x9e\xb7\
\x27\x95\xc9\xd7\x4e\xf3\x4f\x3c\xae\xd2\x4b\x23\x96\x62\x49\xf7\
\xee\xbd\xd2\x5b\xdf\xba\xf7\x5f\x55\xff\x00\xf8\x47\xc7\xfd\xb9\
\xf2\x83\xff\x00\x16\x6f\xbb\xff\x00\xeb\x46\xcb\xf7\xee\xbd\xd5\
\xf5\xf7\xff\x00\xc1\x3f\x86\x1f\x2b\x37\x1e\x0f\x78\x7c\x97\xf8\
\xb3\xd0\xdd\xf3\xba\x76\xce\x11\xf6\xde\xde\xdc\x3d\xb1\xd6\x1b\
\x4b\x7d\x65\xf0\xbb\x7e\x4a\xe9\xf2\x6f\x86\xc6\x57\xee\x1c\x5d\
\x7d\x45\x1e\x35\xb2\x35\x52\xcf\xe1\x46\x09\xe5\x91\x9a\xd7\x63\
\x7f\x75\xee\xb4\x26\xff\x00\x85\x87\x7c\x3a\xf8\x9d\xf1\x3a\x97\
\xe0\x1a\xfc\x63\xf8\xdd\xd2\x9d\x00\xfb\xda\x6f\x92\x3f\xdf\x29\
\xba\x8b\xae\xf6\xd6\xc2\x97\x75\x26\x05\x7a\x48\xe0\x63\xdc\x1f\
\xdd\xca\x0a\x08\xf2\x89\x85\x6c\xbd\x61\xa5\x32\xab\x34\x46\xae\
\x5b\x1b\x35\x87\xba\xf7\x49\x5f\xf8\x44\xaf\xfd\x97\x67\xcb\x6f\
\xfc\x54\xa8\xff\x00\xf7\xf1\x75\xe7\xbf\x75\xee\xbe\x96\x3e\xfd\
\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\
\xd1\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\xf8\x95\
\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\xbd\xd0\x25\xf1\x7b\xf9\xcd\xff\
\x00\x33\x5f\x85\xdd\x43\x8a\xe8\x5f\x8c\x5f\x2b\x77\x57\x53\xf5\
\x26\x13\x31\x9d\xcf\x62\xb6\x6e\x2b\x66\xf5\x6e\x6a\x92\x8f\x2d\
\xb9\xab\x4e\x4b\x39\x57\x1e\x43\x75\xec\x4c\xf6\x69\xbe\xfe\xb9\
\x8c\xa6\x36\xa9\x68\x91\x98\xe8\x55\xb9\xbf\xba\xf7\x5f\x43\xaf\
\xf8\x4a\xcf\xce\xbf\x96\x3f\x3e\x3e\x1b\x7c\x84\xec\xaf\x97\x7d\
\xc7\x98\xee\x9d\xef\xb3\xfe\x4d\x56\x6c\x6d\xb7\x9f\xcd\x60\xf6\
\x86\x06\xa3\x15\xb5\x62\xea\xce\xb9\xcf\xa6\x1e\x2a\x6d\x9b\xb7\
\xb6\xe5\x04\xd0\xae\x5f\x35\x55\x36\xb9\x62\x79\xb5\x4a\x46\xbd\
\x21\x40\xf7\x5e\xea\x95\xff\x00\xe1\x71\xbf\xf1\xfd\xff\x00\x2e\
\x6f\xfc\x34\xbe\x4c\x7f\xee\xe3\xa4\xfd\xfb\xaf\x75\xa7\x9f\xc3\
\xbf\x9f\x9f\x2f\xbe\x00\xee\x9d\xe3\xbd\x7e\x20\x77\x56\x67\xa5\
\x37\x3e\xff\x00\xdb\xd4\x9b\x53\x77\xe5\xb0\xd8\x0d\x99\xb8\x25\
\xcd\x60\x28\x72\x71\x66\x29\x31\xf2\xc1\xbd\x36\xde\xe5\xa4\xa6\
\x58\x32\x30\xac\x82\x48\x23\x8a\x6f\xaa\x97\xd2\x4a\x9f\x75\xee\
\x8f\xff\x00\xfd\x04\x8f\xfc\xed\xff\x00\xef\x3d\xb7\xe7\xfe\x8b\
\x9e\x8a\xff\x00\xed\x59\xef\xdd\x7b\xaf\x7f\xd0\x48\xff\x00\xce\
\xdf\xfe\xf3\xdb\x7e\x7f\xe8\xb9\xe8\xaf\xfe\xd5\x9e\xfd\xd7\xba\
\x35\x9f\x06\x3f\x9c\xe7\xf3\x38\xf9\xd1\xf3\x27\xe3\x0f\xc3\x1f\
\x95\xbf\x2c\x37\x5f\x70\x7c\x66\xf9\x4d\xde\x3d\x6d\xd0\xdd\xfb\
\xd5\x59\x7d\x9b\xd5\xb8\x3c\x67\x62\xf5\x17\x67\x6e\xac\x6e\xd4\
\xdf\xdb\x2b\x21\x9a\xda\x1b\x17\x6e\xee\xbc\x4d\x16\xe5\xdb\x79\
\x2a\x8a\x49\x6a\x31\xb5\xf4\x75\x91\xc7\x2b\x18\xa6\x46\xe7\xdf\
\xba\xf7\x5b\xb3\x7c\x85\xff\x00\x84\xed\xff\x00\x26\x2d\x99\xd0\
\x3d\xe3\xbb\xf6\xd7\xc1\x7d\x91\x8c\xdc\x5b\x53\xa7\x7b\x33\x71\
\xe0\x32\x71\xf6\x1f\x77\xcf\x2e\x3b\x35\x83\xd9\x59\xbc\x9e\x2e\
\xba\x38\xaa\xfb\x3e\xa2\x9a\x59\x69\x2b\xa9\x63\x91\x44\x88\xe8\
\x4a\xfa\x94\x8b\x8f\x7e\xeb\xdd\x7c\x8a\xfd\xfb\xaf\x75\xf7\xb1\
\xe9\xdf\xf9\x94\x5d\x59\xff\x00\x88\xe3\x63\xff\x00\xef\x33\x8b\
\xf7\xee\xbd\xd0\x8f\xef\xdd\x7b\xaf\x8d\xc7\xfc\x28\xcf\xfe\xdf\
\x5b\xf3\xef\xff\x00\x12\x6e\xd0\xff\x00\xdf\x41\xd7\x3e\xfd\xd7\
\xba\xa4\xef\x7e\xeb\xdd\x6f\x69\xff\x00\x09\x5a\xfe\x54\x9f\xcb\
\xe3\xe7\xcf\xc3\x6f\x90\x9d\x91\xf2\xef\xe3\x5e\xdb\xee\x8d\xf1\
\xb3\xbe\x4d\x55\xec\x8d\xb7\xb8\x73\x3b\xaf\xb1\xf0\x35\x18\xbd\
\xa9\x1f\x56\x75\xd6\x7a\x3c\x34\x54\xdb\x37\x79\x6d\xba\x09\x61\
\x4c\xbe\x66\xaa\x7d\x72\xc4\xf3\x16\x98\x82\xfa\x55\x40\xf7\x5e\
\xeb\x56\xee\xe6\xc9\x65\x77\x5f\x77\x77\x26\x7f\x2d\xe4\x9e\xbe\
\xaf\xb5\xfb\x07\x1a\x8c\xa8\x44\x14\xd8\xad\xb7\xba\xb2\xbb\x67\
\x6f\xe2\x28\xef\xc4\x38\xdc\x16\xdf\xc3\xd3\x51\xd3\x44\x0e\x98\
\xe1\x81\x54\x7d\x3d\x92\x5c\x49\xdc\xc1\x9f\x07\x3d\x0b\xe0\x89\
\x99\x22\x55\x43\xa6\x9f\xcb\xa1\xeb\xe1\xcf\xc3\xad\xdf\xf3\x33\
\xb2\x77\x17\x53\x6c\x9d\xd1\x82\xda\x7b\xb3\x17\xb0\xf3\x3b\xd7\
\x0e\xfb\x86\x96\xb2\xaf\x1b\x99\x93\x0d\x3d\x34\x52\xe2\x6a\x25\
\xc7\x07\xa8\xc7\xac\xab\x52\x3f\xca\x34\xba\xc6\x79\x2a\x47\xb6\
\x13\x43\x96\x0d\x36\x95\x02\xb5\x35\xa7\xe7\x4f\xf0\xf4\xb6\x2b\
\x0b\xb9\xdd\x23\xb7\x83\x5c\xa4\x9a\x2d\x40\x26\x82\xb8\xaf\x13\
\xf2\xf3\xe9\xab\xb9\x7e\x1e\x7c\x87\xf8\xe7\x90\xa8\xa3\xee\x0e\
\xb1\xdc\xf8\x0a\x2a\x76\x97\xc1\xb9\xf1\xd4\x32\x66\xf6\x4e\x42\
\x38\x9b\xc6\xd5\x54\x3b\xa3\x1a\x93\xe3\xde\x99\x89\x1f\xe7\x4c\
\x32\x02\x40\x2a\x0f\x1e\xf5\x34\x17\x10\xd0\x98\xaa\x84\x71\x19\
\x07\xe6\x08\xeb\x56\xeb\x6f\x23\xb2\xf8\xd4\x99\x4d\x19\x48\xd2\
\xca\x7c\xc1\x07\x35\xe8\x08\xa7\x86\x89\x08\xd0\x23\x24\x2d\xce\
\xb7\x0c\xe0\x73\xf5\x0f\xca\x8e\x7e\xbc\x7b\x46\xce\x5b\xb4\x9e\
\x8c\x12\x08\xa3\xa9\x55\xcf\x4b\x4d\xb5\xb3\x37\xa6\xf3\x99\x29\
\xb6\x86\xd3\xdc\x1b\x95\xde\x46\x85\x06\x17\x15\x57\x59\x16\xb4\
\x1a\xda\x3f\xb8\x8a\x23\x4e\xac\xa9\xce\x92\xd7\xf7\x68\x60\x9a\
\x72\x56\x08\x5d\xcf\xc8\x13\xd5\xd9\xa3\x4c\x3c\x81\x7e\xdc\x74\
\x27\xc7\xf1\xa3\xbf\x1e\x31\x2b\xf5\x2e\xfb\x8e\x3b\xe8\x00\x60\
\xa7\x77\xd4\x05\xc1\x31\x86\x0c\x01\xfe\xbe\xd5\x3e\xd5\xbb\x2a\
\xd4\x6d\xb2\x9f\xcb\xa6\xc5\xcd\x99\x60\x1a\xe9\x00\x3f\xb3\xa4\
\x56\x57\x66\xe5\x36\xad\x5f\xd8\x6e\x7c\x1e\x63\x0b\x5e\x8e\xf1\
\x3d\x36\x6a\x86\xa6\x81\x8b\xc6\x42\xc8\x8a\x27\x8d\x16\x43\x1b\
\x1b\x1d\x2c\x6c\x78\xf6\x4d\x73\xf5\x70\x36\x8b\x88\x1a\x26\xf9\
\x82\x3f\xc3\xd1\x94\x09\x6c\xeb\xaa\x36\x56\x1f\x23\x5a\x7f\x97\
\xf6\xf5\x2a\x9e\x4a\x5a\x64\x01\x7c\x30\x0b\xdc\xf3\x1a\x5b\xe9\
\x71\xcd\x89\x50\x7f\xa9\xf6\x8c\xb1\x63\x56\x6a\x9e\x95\x05\x0b\
\x85\x5a\x75\x3e\x1a\xa8\xa5\x75\x58\x5c\x4c\x5d\xd5\x15\x61\x06\
\x62\xee\xe7\x4a\xa2\x88\xc3\x16\x72\xc6\xc0\x7d\x49\xf6\xd3\x2e\
\x70\x2a\x4f\x4e\x87\x2a\x38\x0e\x82\x0e\xdf\xa0\xab\xc7\x6e\x1a\
\x45\xad\xc7\xd4\xd0\x56\x25\x19\xa5\xab\xa5\xad\x82\x6a\x6a\xa8\
\x27\x86\x42\xc2\x19\xe9\xe6\x54\x96\x19\x52\x39\x01\x2a\xc0\x10\
\x08\xf6\x75\xb6\x55\x63\x92\x36\x14\x3a\xba\x24\xdd\x59\x4c\xb1\
\x49\x5c\x11\x4e\xb8\x74\x57\xcb\x1f\x90\x9f\x09\x77\xd6\x43\xbf\
\x7e\x2e\x76\x46\x57\xa9\x3b\x72\x8b\x6c\x64\xf6\x95\x36\xf1\xc3\
\xd1\xe2\x32\x35\x03\x6f\xee\x3a\xbc\x77\xf1\x7c\x7d\x56\x27\x3f\
\x8f\xcb\x60\x32\xb0\x54\x0a\x34\x28\xb5\x94\xb5\x09\x0c\x80\x4b\
\x18\x59\x15\x5c\x1e\x5b\x33\x09\x90\x57\x07\xfc\xdd\x05\xb7\x0d\
\x2d\x6d\x71\xdb\xc2\x94\xfd\xa3\xa3\x59\xff\x00\x41\x23\xff\x00\
\x3b\x7f\xfb\xcf\x6d\xf9\xff\x00\xa2\xe7\xa2\xbf\xfb\x56\x7b\x37\
\xe8\x31\xd7\xbf\xe8\x24\x7f\xe7\x6f\xff\x00\x79\xed\xbf\x3f\xf4\
\x5c\xf4\x57\xff\x00\x6a\xcf\x7e\xeb\xdd\x7b\xfe\x82\x47\xfe\x76\
\xff\x00\xf7\x9e\xdb\xf3\xff\x00\x45\xcf\x45\x7f\xf6\xac\xf7\xee\
\xbd\xd1\x72\xf9\x4f\xfc\xe4\x3f\x99\x6f\xcd\x9e\xa5\xaa\xe8\xbf\
\x94\x7f\x2a\x77\x4f\x6d\xf5\x45\x6e\x7f\x09\xba\x2a\xb6\x7e\x5b\
\x67\x75\x76\x12\x92\x6c\xee\xdc\x7a\x89\x30\xb5\xed\x90\xda\x7b\
\x1b\x01\x99\x06\x86\x4a\xa7\x61\x18\xa9\x11\x39\x20\xba\xb6\x95\
\xb7\xba\xf7\x4a\x9f\xe4\x73\xd0\x1d\x3d\xf2\x97\xf9\xab\x7c\x3f\
\xe8\x3e\xfe\xd9\x14\x5d\x91\xd4\x3d\x8d\xbc\x37\xb6\x37\x7a\xec\
\x9c\x96\x43\x35\x8b\xa2\xce\xd1\xe3\x3a\x97\xb0\x37\x06\x3e\x1a\
\x8a\xfd\xbd\x92\xc4\x66\x69\xd6\x97\x35\x88\xa6\xa8\x1e\x0a\x98\
\x8b\x34\x41\x58\x94\x2c\xa7\xdd\x7b\xaf\xa8\x6f\x5a\x7f\xc2\x7f\
\x7f\x93\xe7\x4f\x76\x3e\xc1\xed\xbe\xb7\xf8\x4d\xb2\xb6\xc7\x62\
\x75\x76\xf3\xdb\x5d\x85\xb0\xf7\x2d\x3e\xfe\xee\x7a\xe9\xf6\xf6\
\xf2\xd9\xf9\x7a\x4c\xfe\xda\xce\x41\x43\x96\xec\x9a\xfc\x55\x5c\
\xf8\x8c\xc5\x04\x35\x11\xc7\x53\x04\xd0\x99\x23\x5d\x48\xc0\x5b\
\xdf\xba\xf7\x56\x4f\xf2\x37\xfe\xc9\xeb\xbe\x3f\xf1\x0c\xf6\x87\
\xfe\xf1\x19\xcf\x7e\xeb\xdd\x7c\x1b\x7d\xfb\xaf\x75\xf5\xea\xe9\
\x6f\xf8\x4e\xaf\xf2\x5d\xdd\x1d\x39\xd4\xbb\x9b\x39\xf0\x53\x63\
\x57\xe6\xf7\x0f\x59\xec\x2c\xee\x62\xba\x4e\xc4\xef\x08\xde\xb7\
\x29\x96\xda\xb8\xaa\xfc\x85\x5c\x91\xd3\xf6\x7c\x34\xe8\xf5\x35\
\x73\xbb\xb0\x44\x54\xbb\x70\x00\xe3\xdf\xba\xf7\x5f\x2f\x8f\xe6\
\x69\xd5\xbd\x7f\xd2\x1f\xcc\x43\xe6\xe7\x4e\xf5\x46\xda\xa7\xd9\
\xbd\x67\xd6\x1f\x28\xfb\xb3\x62\xec\x1d\xa7\x49\x57\x91\xaf\xa5\
\xdb\x7b\x47\x6c\x6f\xfc\xe6\x23\x03\x85\xa7\xae\xcc\x56\x64\x32\
\xb5\x70\xe3\x71\xb4\xb1\xc4\xb2\x54\x4f\x34\xce\x16\xee\xec\xd7\
\x3e\xfd\xd7\xba\x23\x9e\xfd\xd7\xba\xb3\x2f\x8a\xbf\xce\x37\xf9\
\x95\x7c\x23\xea\x78\x7a\x37\xe2\xd7\xca\x7d\xd1\xd4\x7d\x55\x4f\
\xb8\xf3\x5b\xb6\x1d\xa1\x89\xd9\xfd\x5f\x9b\xa5\x8f\x70\xee\x21\
\x46\x33\x39\x11\x90\xdd\xbb\x1b\x70\x66\x75\x56\xfd\x84\x44\xc7\
\xf7\x3e\x14\x2a\x4a\x22\x96\x62\x7d\xd7\xba\xfa\x1a\x7f\xc2\x55\
\x3e\x78\x7c\xb6\xf9\xf5\xf1\x2f\xe4\x8f\x61\xfc\xbc\xee\x6c\xcf\
\x75\x6f\x1d\x97\xf2\x2a\x0d\x99\xb5\xf3\x79\xac\x16\xcf\xc0\xcf\
\x88\xdb\x4d\xd6\x9b\x3f\x36\xd8\xa8\x69\xf6\x6e\xdd\xdb\x94\x53\
\x42\xd9\x4c\x8c\xd3\x6b\x96\x29\x25\xd4\xe4\x6a\xd3\x60\x3d\xd7\
\xba\xa9\xaf\xf8\x5c\x87\xf9\x8f\xe5\xb9\xff\x00\x2d\x7e\x53\x7f\
\xd0\x9d\x07\xef\xdd\x7b\xa2\x8b\xff\x00\x08\x95\xff\x00\xb2\xec\
\xf9\x6d\xff\x00\x8a\x95\x1f\xfe\xfe\x2e\xbc\xf7\xee\xbd\xd7\xd2\
\xc7\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7f\xff\xd2\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x50\x2f\xca\xcf\xf8\x4d\x4f\xf2\xc1\xf9\
\x97\xf2\x17\xb4\x3e\x4e\xf7\x6e\xd7\xee\x7a\xfe\xd3\xed\xec\xe5\
\x26\xe0\xde\x35\x5b\x7b\xb7\xb2\xd8\x0c\x24\xb9\x1a\x3c\x2e\x2f\
\x03\x0b\x63\xb0\xf0\x63\xe6\x8e\x82\x1f\xe1\xf8\x88\x41\x40\xec\
\x35\x02\x45\xaf\x6f\x7e\xeb\xdd\x7c\xeb\x3f\x9f\xef\xc1\xbe\x83\
\xfe\x5d\xff\x00\xcc\x6f\x7a\xfc\x66\xf8\xd9\x8d\xdd\x18\xae\xaf\
\xc0\xf5\x9f\x55\x6e\x7a\x2a\x5d\xdf\xb9\xaa\x37\x66\x67\xf8\xc6\
\xed\xdb\x63\x29\x98\x95\xf2\xf5\x50\x53\xce\xd4\xf2\x54\x91\xa2\
\x32\x08\x4e\x6c\x6c\x40\x1e\xeb\xdd\x25\x3f\x97\x87\xf3\xc6\xf9\
\xe3\xfc\xaf\xba\xab\x7a\x74\xdf\xc5\x4c\xf7\x58\x62\x76\x5e\xfd\
\xec\x19\xfb\x37\x70\x47\xbd\xba\xdb\x19\xbc\xb2\x8f\xba\x2a\x36\
\xe6\x07\x6a\xcc\xf4\xb9\x2a\xba\xba\x69\x60\xa0\x6c\x4e\xdb\xa5\
\x02\x0b\x32\xac\x8a\xce\xa4\x17\x6b\xfb\xaf\x74\x19\xff\x00\x31\
\xdf\xe6\xd9\xf3\x07\xf9\xa8\xd7\xf5\x26\x4b\xe5\x9e\x63\xaf\xf2\
\xf5\x5d\x29\x45\xbc\xe8\x36\x3b\xec\x5d\x89\x41\xb2\x84\x50\x6f\
\xca\x8d\xb7\x53\xb8\x3f\x8a\x7d\x95\x4d\x4b\x64\x99\xdf\x6a\x51\
\x88\x75\x15\x58\x42\xbe\x91\x77\x62\x7d\xd7\xba\xac\xbf\x7e\xeb\
\xdd\x5e\x7f\xfc\x27\x97\xe0\x4f\xc7\x8f\xe6\x3f\xfc\xc2\x13\xe3\
\x8f\xc9\xcc\x5e\xeb\xcb\x75\xa4\x9d\x1f\xd9\x9b\xe9\x69\xb6\x6e\
\xea\xa9\xda\x19\x75\xdc\x7b\x5e\xaf\x6b\x45\x8a\x9d\xb2\xb4\x94\
\xd5\x33\x3d\x24\x70\xe5\x67\x0f\x08\x0a\x1d\x8a\x92\x6c\xba\x5b\
\xdd\x7b\xad\xea\xff\x00\xe8\x10\xdf\xe4\xdb\xff\x00\x3c\x5f\xc8\
\x0f\xfd\x1e\xd9\xcf\xfe\xb5\xfb\xf7\x5e\xe8\x0d\xf9\x35\xff\x00\
\x09\xec\xfe\x5c\x3f\xcb\x47\xe3\xcf\x75\xff\x00\x30\x9f\x8c\x3b\
\x6b\xb7\xb1\x7f\x23\x3e\x15\x75\x96\xf2\xf9\x35\xd1\xb9\x1d\xdf\
\xda\xf9\x4d\xd5\xb5\x28\x7b\x57\xa6\xf0\x55\xbb\xe3\x63\x55\xee\
\x5d\xb1\x57\x8f\x86\x9b\x71\x60\x69\xb7\x16\x1e\x9d\xea\xe8\x64\
\x74\x4a\xb8\x15\xa2\x66\x50\xc4\xfb\xf7\x5e\xeb\x55\x0d\xe7\xff\
\x00\x0a\xc6\xfe\x6f\x5b\xf3\x67\xee\xdd\x8d\xb8\xb7\x87\x42\xcf\
\x80\xde\xbb\x63\x3f\xb4\xb3\x90\xd3\xf4\x7e\x12\x9e\xa1\xf1\x1b\
\x93\x13\x57\x86\xc9\x2d\x3c\xeb\x93\x26\x1a\x8f\xb3\xad\x7d\x0f\
\x66\x0a\xd6\x24\x11\xc1\xf7\x5e\xeb\x5a\x6f\x7e\xeb\xdd\x6c\xd5\
\x85\xff\x00\x85\x6d\xff\x00\x38\x5c\x06\x1b\x0f\x81\xc6\xef\x1e\
\x81\x8b\x1d\x83\xc5\x63\xb0\xf4\x11\xb7\x45\xe0\x9d\xd6\x8f\x17\
\x47\x0d\x0d\x36\xb6\xfe\x24\x03\x48\x61\x80\x16\x20\x05\xd5\x7b\
\x00\x2c\x07\xba\xf7\x4e\x7f\xf4\x17\x8f\xf3\x92\xff\x00\x9e\xd7\
\xa0\x3f\xf4\x44\xe0\xbf\xfa\xe7\xef\xdd\x7b\xad\x96\xbe\x15\xff\
\x00\x24\xef\x83\x5f\xce\x8b\xe2\xf7\x51\x7f\x33\xff\x00\x9c\x38\
\x2e\xc7\xce\xfc\xaa\xf9\x75\x83\xc9\xef\x8e\xe2\xca\xf5\xaf\x60\
\xd7\xf5\xd6\xc7\xab\xcd\xed\xbd\xc9\x9b\xeb\x7c\x4b\x6d\xfd\x99\
\x8f\xa4\xad\xa4\xc1\xd3\xc7\xb5\xb6\x55\x02\x4a\x89\x2b\xf9\x6a\
\x16\x49\x4d\x8c\x84\x0f\x75\xee\xb4\xe0\xff\x00\x85\x04\x7c\x15\
\xf8\xff\x00\xfc\xba\xbf\x98\xa6\xe2\xf8\xd5\xf1\xa3\x19\xba\x71\
\x5d\x63\x8a\xea\x5e\xad\xdd\xd0\x52\xef\x0d\xcf\x53\xbb\x73\x07\
\x39\xba\xf1\x95\xf5\x79\x79\x8e\x5a\xae\x9e\x9e\x7f\xb6\x91\xe0\
\x4d\x11\x10\x42\x10\x6c\x6c\x40\x1e\xeb\xdd\x6e\x11\xff\x00\x08\
\x99\xff\x00\xb7\x7f\xfc\xab\xff\x00\xc5\xc4\xae\xff\x00\xdf\x2b\
\xd4\xfe\xfd\xd7\xba\xd1\xc3\xb0\x61\x96\x6e\xd0\xed\xa0\x8b\x33\
\x8f\xf4\xc3\xdb\x80\x05\xb8\x40\x47\x64\xee\x82\x40\x1f\xa4\x71\
\xec\x33\x29\x40\xe7\x51\x03\xfe\x2b\xa9\x0e\x2f\x15\x92\x35\x00\
\xd0\x28\xff\x00\x07\x47\x2b\xf9\x6d\x76\x2e\x4f\xa5\xfe\x6b\x74\
\x2e\xec\x8f\x21\x16\x27\x1b\x9a\xdd\xb0\x6c\x8d\xcb\x2d\x55\x4c\
\x90\x52\x36\xdf\xdd\xa8\xd8\xea\xb5\xaa\xf0\xb8\xf3\x2c\x73\xb4\
\x6e\x88\xf7\x4f\x28\x52\x47\x1e\xd8\xb7\xba\x88\x48\x52\x43\x54\
\x60\x57\xf6\xf0\xfe\x7d\x2f\x88\x4b\x6f\x3d\xb5\xcd\x4a\xbc\x72\
\x2b\x03\xe6\x28\x73\xfc\xbf\x97\x5b\xc3\xf6\x8f\x53\xed\x4e\xcd\
\xea\xed\xdf\x92\xdd\x1d\x81\x8c\xeb\xfd\x9c\x28\x5c\xbe\x7a\xac\
\xd3\xc9\x83\xa9\xa9\xc7\xcc\xf3\x78\x37\x06\x33\x24\xb1\xc1\x57\
\x48\x5e\x30\x02\x40\xad\x34\xcc\x7d\x24\x91\x6f\x62\xee\x5b\xb2\
\xb8\x86\x01\x34\xcc\x7c\x16\x3d\xa8\x7f\xd9\xe1\xd2\x5f\x71\x77\
\xad\xb2\xe3\x79\x8e\xdb\x6f\xb1\x47\xba\x8e\x9e\x24\xa2\xa0\x92\
\x73\xa4\x53\x0d\x41\xc4\x9f\xb3\xad\x7a\x37\x3f\xc7\xde\xa6\xed\
\x8d\xc1\x2d\x05\x27\x59\xec\xfd\xdb\x90\x35\xb5\x15\x18\xed\xc5\
\xb7\xf6\xec\x94\x55\xb9\x5a\x5c\x73\x1b\xee\x19\x63\xf0\xd0\xbd\
\x26\x16\x3a\x65\x12\xc8\x6b\x54\x47\x14\x77\xf2\x58\x72\x44\x93\
\x6d\xfb\x64\xe8\x5e\xea\xd1\x28\x38\x62\x87\xf9\x7f\x83\xa0\xc2\
\x5e\x4b\x0a\xd5\x26\x71\x5f\x2a\xd7\xa7\x2c\x45\x32\x6d\x6a\x34\
\xc4\x60\x9e\x9b\x15\x8d\xa1\x47\xa4\x8f\x15\x8d\xc6\xe2\xa8\xb1\
\x62\x48\xa4\x31\x1a\x98\x86\x25\x63\x8a\x65\x65\x43\xa1\x95\x8a\
\x32\x90\x6e\x7d\xae\x86\x31\x14\x60\x42\x02\x27\xa5\x29\xd7\x8b\
\x96\x1a\x9d\x89\x6f\x9f\x4e\x90\x65\xa4\x80\xbb\x2d\x4d\x53\xbb\
\xab\x2b\xb4\xb5\x72\x31\x24\xd8\x6b\xb1\x20\x06\x00\x0b\x5b\x81\
\xed\xc3\x19\x26\xa0\xe7\xfc\xbe\x7d\x50\xba\xd3\x8e\x7a\x68\xdc\
\x58\xfc\x26\xf4\xc7\xd5\x61\xb7\x7e\x37\x19\xb9\x31\x15\xaa\x63\
\x9a\x8b\x2f\x45\x4f\x50\xf4\x90\x98\xed\x6c\x75\x56\x83\x3c\x33\
\x99\x06\xa0\xd7\x07\x51\xb8\xfa\x7b\xa4\xd6\xb1\xdc\x21\x8e\xe6\
\x25\x92\x2f\x42\x2b\xfb\x3a\xb4\x73\xb4\x64\x14\x62\xad\xf2\xc7\
\x43\x0f\xc6\xdf\xe5\xff\x00\xb7\x3b\x46\x80\x67\x3a\xbb\xa2\xf6\
\x5b\x6d\x9a\x1c\x9c\x34\xf5\xbb\x9b\x77\x51\x41\x55\x88\x96\xb6\
\x9a\x68\x92\xae\x86\x04\xcd\x49\x34\xb9\x3a\x8a\x68\xcd\xe7\x8e\
\x25\x2a\x2c\x41\x3a\xb8\xf6\x4e\x76\x8d\xa2\xd5\x1b\xc0\xdb\x63\
\x2e\x78\x0a\x0a\xfe\xd3\xc3\xab\xcd\xbb\x30\x90\x25\xc6\xe4\xe8\
\xa7\x89\x15\x34\xfc\x87\x1e\x8f\xe7\x71\x6d\xfe\x8a\xf8\x4f\xd2\
\x5b\xf7\xb5\xb7\x36\xc3\xeb\xbd\xac\x9b\x23\x07\x2d\x62\x63\xf1\
\x5b\x43\x6f\x62\xe8\xf3\x5b\x91\xaf\x4d\x81\x82\x8e\x0f\xb0\x33\
\x57\xc9\x92\xc8\xe8\xf1\xa8\xb2\xe9\xe4\x81\x63\xec\x17\x71\x35\
\xda\xdc\xcb\x09\xb4\x58\x63\x4c\x9a\x28\xa9\x51\xc2\x87\xe6\x7d\
\x3a\x1e\xda\x6d\xdc\xb9\x69\xb2\x26\xef\xf5\xcd\x79\x77\x2d\x15\
\x03\x3f\x68\x72\x3c\xd0\x70\xd3\xc4\xea\xeb\x44\xde\xe9\xde\xf5\
\x7d\x91\xb8\xf2\x7b\xcb\x21\x52\xd5\x19\x3c\xfe\x67\x2b\x9c\xca\
\x6b\xf2\xdf\xef\xf3\x15\x73\x55\xcd\xe3\x33\x33\x4a\x61\x85\x5d\
\x63\x50\x49\x01\x54\x01\xc0\xf6\x53\x6a\xb2\xeb\x9a\x59\xcf\xea\
\x3b\x13\xfb\x7a\x2a\xbb\x68\x9e\x28\xa3\x84\xfc\x22\x80\xf4\x59\
\xb7\xad\xff\x00\xbb\x19\x63\xf8\xf1\xd3\x0b\xf1\xcf\xf9\x54\x3f\
\x8f\xf6\x1e\xcd\xad\xbf\xb7\x8f\xed\xff\x00\x27\x41\xab\xf2\x7e\
\x9a\x72\x4e\x68\x3f\xc2\x3a\xda\xbf\xfe\x13\x4d\xfc\x91\x7e\x07\
\xff\x00\x34\x3f\x8b\x5d\xfb\xda\xbf\x2b\x36\xef\x66\xe5\xb7\x9f\
\x5d\xf7\xf2\xf5\xf6\xdd\xaa\xd9\x3d\x91\x90\xd9\xb8\xe8\xf6\xc3\
\x75\xde\xd1\xdc\x6b\x4f\x53\x8d\xa2\xa0\x9d\x2a\x2b\x46\x57\x31\
\x50\xcd\x3b\x39\x26\x32\x8a\x02\xe9\x25\x8e\x3a\x0c\xf5\xb1\xff\
\x00\xfd\x02\x1b\xfc\x9b\x7f\xe7\x8b\xf9\x01\xff\x00\xa3\xdb\x39\
\xff\x00\xd6\xbf\x7e\xeb\xdd\x6b\x7b\xff\x00\x0a\x5a\xfe\x48\xff\
\x00\x04\x3f\x95\xdf\xc5\xff\x00\x8f\xfd\xa5\xf1\x4f\x6f\x76\x6e\
\x27\x78\xf6\x2f\x7d\xcd\xb0\x37\x1d\x56\xf6\xec\x8c\x86\xf2\xc7\
\xc9\xb6\x62\xeb\xdd\xd5\xb8\x8c\x14\xd8\xea\xda\x1a\x74\xa6\xad\
\x39\x4c\x55\x3b\x09\xd5\xc1\x08\x1d\x48\x6d\x40\xaf\xba\xf7\x55\
\x13\xff\x00\x09\xef\xf8\x1f\xf1\xf3\xf9\x8c\xff\x00\x30\xfc\x5f\
\xc6\xdf\x93\x38\xcd\xd5\x96\xeb\x2a\xee\x9b\xec\xfd\xe6\xf4\xbb\
\x3b\x74\x54\xed\x1c\xba\xe7\xf6\xac\x38\x59\x31\x33\x7f\x16\xa4\
\xa7\xa9\x98\xd2\xc6\x2b\x65\xd7\x10\x0a\x1c\x95\x24\xd9\x6c\x7d\
\xd7\xba\xdc\x43\xe6\xcf\xf2\x5a\xf8\x43\xfc\x94\x3e\x2e\x76\xe7\
\xf3\x45\xf8\x2f\x83\xec\x5c\x0f\xca\xef\x89\x38\x8c\x2e\xed\xe9\
\xfc\xb7\x66\xef\xea\xfe\xc8\xd8\xd4\x99\x5d\xe7\xba\xf0\x1d\x53\
\x9f\x6c\xfe\xca\xc8\x52\xd0\xd1\xe6\xe2\x97\x67\x6f\xdc\x8c\x70\
\xab\xca\x9e\x0a\x97\x8e\x61\x76\x8c\x03\xee\xbd\xd6\xb5\x5f\xf4\
\x17\x8f\xf3\x92\xff\x00\x9e\xd7\xa0\x3f\xf4\x44\xe0\xbf\xfa\xe7\
\xef\xdd\x7b\xa5\x36\xcb\xff\x00\x85\x53\xff\x00\x36\xbe\xe7\xde\
\x3b\x4f\xa7\xb7\xb6\xf0\xe8\xba\x8d\x99\xdb\x1b\x97\x05\xd6\x9b\
\xba\x0a\x0e\x93\xc2\xd0\xd7\xcd\xb6\x37\xde\x52\x97\x6b\x67\xa3\
\xa1\xad\x8f\x24\x64\xa3\xac\x7c\x56\x56\x51\x14\xa0\x13\x1b\xd9\
\xac\x6d\xef\xdd\x7b\xad\xb5\xbf\xe8\x10\xcf\xe4\xdd\x6b\x7f\x73\
\x3e\x40\xde\xd6\xd5\xfe\x9d\xb3\x77\xff\x00\x5f\xfe\x2d\x56\xbf\
\xfb\x0b\x7b\xf7\x5e\xeb\x52\x8d\xe7\xff\x00\x0a\xaa\xfe\x6d\x9d\
\x37\xbc\x37\x57\x50\xec\xbd\xdf\xd1\x50\x6c\xde\xaa\xdc\x99\xbe\
\xb7\xda\x70\x57\xf4\x9e\x1a\xb6\xb6\x2d\xb5\xb1\x72\x75\x3b\x5f\
\x05\x1d\x6d\x6c\x99\x35\x92\xae\xad\x71\x78\xb8\x84\xb2\x9b\x19\
\x1e\xed\x61\x7f\x7e\xeb\xdd\x6c\xd7\xf1\xb3\xfe\x13\xc5\xfc\xb7\
\x7f\x99\x17\xc7\xee\x97\xfe\x60\x3f\x26\x76\xd7\x6f\xe5\x3e\x44\
\xfc\xd1\xeb\x2d\x99\xf2\x73\xbc\xb2\x5b\x47\xb6\x32\x9b\x57\x6a\
\x57\xf6\xbf\x74\xe0\x68\x77\xf6\xfe\xac\xdb\x3b\x5e\x93\x1f\x35\
\x36\xdb\xdb\xf5\x5b\x9f\x39\x53\x25\x1e\x3e\x37\x91\x28\xe9\xd9\
\x21\x56\x65\x40\x4f\xba\xf7\x5a\x19\x7f\x39\xef\x8a\xdd\x41\xf0\
\x93\xf9\x9a\x7c\xa7\xf8\xb9\xd0\xb4\x19\xfc\x67\x52\xf5\x36\xe0\
\xd8\x38\xdd\xa1\x43\xba\x33\xd2\xee\x7c\xec\x10\xe7\xfa\x8b\xaf\
\xb7\x86\x5b\xef\xb3\x93\xd3\xd2\xcd\x5b\xe4\xcf\x6e\x1a\xa7\x8b\
\x52\x6a\x8a\x16\x48\xc9\x6d\x1a\x8f\xba\xf7\x55\x7f\xef\xdd\x7b\
\xab\x79\xfe\x5d\xdf\xce\xf7\xe7\x6f\xf2\xbc\xeb\x3d\xf3\xd4\xbf\
\x14\xf3\xbd\x65\x88\xda\x3d\x87\xbe\x97\xb1\x77\x1a\x6f\x6e\xb7\
\xc6\xef\x2c\x94\x9b\x8d\x76\xfe\x2f\x6d\x6b\xa4\xc8\x55\xd5\xd3\
\x49\x4d\x42\x71\x98\x68\x07\x86\xcc\xa2\x45\x2c\xa4\x17\x6b\xfb\
\xaf\x75\xb4\x07\xf2\xa9\x91\xbf\xe1\x54\x8f\xdd\x90\xff\x00\x36\
\xaf\xf7\xf7\xaf\xc2\x45\xd8\x32\xf4\x2f\xfa\x0a\xb7\x49\x7f\x0f\
\x3f\x20\x0e\xf0\x4e\xcd\x1b\xb3\xf8\x28\xc9\x9d\xd7\xf7\x83\xa7\
\x70\x1f\xc3\xfc\xbe\x2f\xe1\xfe\x1a\x9d\x1a\xfe\xe9\xf4\xfb\xaf\
\x75\xb4\x27\xf2\xee\xfe\x48\x1f\x04\xbf\x95\xe7\x67\x6f\x8e\xdc\
\xf8\xa7\x82\xec\xec\x4e\xef\xec\x2d\x87\xfe\x8e\x77\x1b\xef\x7e\
\xc8\xc8\xef\x2c\x64\x9b\x6f\xfb\xc1\x89\xdc\xc5\x29\x31\xd5\x74\
\x74\xd1\xd3\xd7\x1c\xa6\x12\x9c\xf9\xae\xcc\xb1\xab\x28\x00\x3b\
\x5f\xdd\x7b\xab\x7b\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5f\xff\xd3\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\x27\
\x1f\xf8\x57\x17\xfd\xbe\x77\xb4\x3f\xf1\x09\xf4\x1f\xfe\xf1\x29\
\xef\xdd\x7b\xa1\xa7\xfe\x13\xfb\xff\x00\x09\xf5\xf8\xd5\xfc\xdd\
\x3e\x31\x77\x1f\x77\xf7\x3f\x76\x77\x97\x5a\x6e\x4e\xb7\xef\x8a\
\xbe\xaa\xc6\xe1\xfa\xc0\x6c\x15\xc1\xd6\xe0\xe9\xfa\xfb\x63\xee\
\xe8\xb2\x75\xcf\xba\xf6\xae\xe1\xaf\x7c\xac\x95\xfb\xa2\x78\x98\
\x46\xf1\x42\xb0\xc3\x1d\x95\x99\x98\x8f\x75\xee\x8b\x87\xfc\x28\
\x6f\xf9\x2e\xf4\x37\xf2\x7a\xcf\xfc\x56\xc3\xf4\x8f\x6b\xf6\xe7\
\x68\x2f\x7c\xe1\xbb\x77\x25\xb9\x5f\xb5\x06\xcd\x2d\x86\x7e\xbd\
\xae\xeb\xda\x5c\x48\xc1\x49\xb4\x76\xf6\xde\x05\x6b\xd7\x77\xd4\
\x7d\xca\xd4\x24\xa4\x18\x63\x28\xc3\x53\x01\xee\xbd\xd6\xb7\x7e\
\xfd\xd7\xba\xb1\x3f\xe5\x7f\xfc\xc8\x3b\x3f\xf9\x58\xfc\x9d\x5f\
\x94\x9d\x47\xb0\xf6\x0f\x62\xee\xd5\xeb\xcd\xdd\xd7\x23\x6f\x76\
\x38\xdc\x07\x6e\x8c\x6e\xef\x97\x0f\x3d\x5d\x78\x3b\x67\x2f\x84\
\xc9\x8a\xfa\x57\xc2\xc6\x23\xb4\xfe\x32\xae\xe1\x94\xdc\x11\xee\
\xbd\xd6\xc5\xdf\xf4\x1b\x4f\xcf\x4f\xfb\xc4\xdf\x88\x9f\xf2\x47\
\x72\xff\x00\xf6\xcb\xf7\xee\xbd\xd2\xdf\xad\x3f\xe1\x4c\xdf\x2b\
\xbf\x9a\xf7\x60\xec\xaf\xe5\x99\xdb\xfd\x01\xf1\xe3\xae\xba\xab\
\xe7\xb6\xe6\xc3\x7c\x4d\xec\x5d\xfb\xd6\xe3\xb2\x13\xb0\x36\x66\
\xcb\xef\x4a\xe8\x7a\xf7\x71\xee\x6d\x94\xdb\xa3\x79\x6e\x1d\xb9\
\xfd\xe9\xc2\xe2\xb3\xb2\xd4\x50\xfd\xf5\x0d\x55\x21\xa9\x8d\x04\
\xb1\xb2\x5c\x7b\xf7\x5e\xe8\xfb\xf7\x1f\xfc\x23\x2f\xe0\xbf\x5a\
\xf5\x0f\x6a\xf6\x2e\x3f\xe5\x47\xcb\x1a\xec\x86\xc1\xeb\x6d\xf5\
\xbd\x71\xf4\x55\x87\xa7\xcd\x1d\x5d\x76\xd6\xda\xf9\x5c\xe5\x1d\
\x35\x62\xc1\xd7\x54\xf3\xbd\x24\xf5\x14\x2a\xb2\xaa\x49\x1b\xb2\
\x12\x15\xd4\xd9\x87\xba\xf7\x5f\x39\x0f\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5f\x42\x2f\x86\x7f\xf0\x90\x3f\x84\xdf\x25\xbe\x22\x7c\x5f\
\xf9\x11\xb9\x3e\x4f\x7c\xa6\xc1\xee\x4e\xf3\xf8\xff\x00\xd4\x5d\
\xb7\xb8\xb0\xb8\x31\xd4\xb1\xe0\xf1\x19\xde\xc2\xd8\x78\x2d\xd7\
\x97\xc5\xe1\x52\xbf\x61\x64\x6b\xc6\x23\x1f\x5f\x95\x92\x1a\x63\
\x3c\xf2\xcc\xd0\xa2\xb3\xb6\xa2\x40\xf7\x5e\xe8\xb6\xf7\x3f\xf3\
\xf5\xf9\x17\xfc\x86\xfb\x3f\x77\x7f\x28\xff\x00\x8e\xdd\x37\xd2\
\xbd\xc9\xd2\xff\x00\x0a\x6b\xa9\xba\xff\x00\x62\x76\x67\x75\x26\
\xfa\xff\x00\x4a\x1b\xaf\x1f\xba\xb1\xd4\x5d\xa7\x5d\x59\xbb\x4e\
\xc7\xdd\xbb\x63\x6a\x1a\xca\x5c\xce\xfd\xa9\xa6\x87\xec\xe8\x29\
\x93\xed\x60\x8b\x52\xeb\xd4\xc7\xdd\x7b\xa3\x65\xf1\xd7\xf9\x5b\
\xf5\x27\xfc\x2a\x17\xad\x69\x7f\x9a\xc7\xcb\x4e\xc3\xec\x6f\x8f\
\x9d\xc1\xbb\xb2\xf9\x6e\x92\xad\xeb\x9f\x8e\xbf\xdd\x95\xeb\x5a\
\x6c\x0f\x4d\x4b\x1e\x1b\x07\x96\xa5\x1d\x97\x84\xde\xfb\xa3\xf8\
\xbe\x56\x0c\x83\x3d\x5e\xba\xf6\x87\x5a\x8f\x1a\x20\xb8\xf7\xee\
\xbd\xd6\xcc\xbf\xca\x6f\xf9\x4f\x74\xef\xf2\x8a\xe9\x7e\xc6\xe9\
\x2e\x98\xec\x8e\xcb\xec\xcc\x0f\x64\xf6\x84\xbd\xa9\x94\xcb\x76\
\x79\xda\xe7\x2f\x41\x97\x97\x6a\x6d\xcd\xa4\x71\xd8\xff\x00\xee\
\xa6\x0b\x01\x45\xfc\x38\x51\x6d\xa8\xa5\xfd\xc8\x9e\x5f\x2c\x8d\
\xea\xd3\xa4\x0f\x75\xee\xbe\x58\x1b\xfa\x26\x7e\xce\xed\x94\x51\
\x65\x4e\xde\xed\xa3\x24\x9a\x7d\x11\x85\xec\x5d\xce\xcc\xce\x47\
\x00\xdb\xe8\x3e\xa4\xfb\x04\x38\xa9\x93\xba\x99\x39\xf2\x19\xea\
\x50\x46\xa4\x51\xd0\x67\x4a\xff\x00\x83\xa8\xd8\x4a\xfa\x9c\x36\
\x77\x07\x95\xdb\xff\x00\x79\x53\x9d\xc5\xe5\xf1\x19\x0c\x02\x43\
\x08\x8e\x56\xcd\xd2\x56\xc3\x53\x40\xaa\x97\x95\xa5\x65\xac\x8d\
\x02\xa8\x07\x59\x3e\xd2\xa1\x5f\x15\x3c\x2a\xbc\x9a\x85\x16\x94\
\xa9\xf2\xfd\xbd\x3a\x75\x15\x6d\x44\x2a\xd3\x8f\x1e\xb6\xa7\xed\
\xee\xda\xee\x6e\xfd\xaf\xea\xed\x9f\x9d\xdb\xd9\x8c\x4c\xf1\x6d\
\xcd\x9b\x8d\xdb\xdd\x49\x45\x5c\x6b\xe3\x9b\x79\x65\x31\xb0\x35\
\x45\x7e\x46\x28\xf4\x43\x55\x9f\xad\xaa\x9d\x9b\xd6\x34\x53\x45\
\x62\x15\x4d\xcf\xb9\xbe\xd2\x1f\xa7\xb5\x49\x26\x5d\x04\x20\x24\
\x71\xa1\xa6\x45\x7e\xde\xa3\xf6\x00\xcd\x73\x3b\x4b\xe2\x3b\x31\
\xee\x3c\x4d\x3a\x1e\xfe\x45\xe2\x70\xbf\x0d\xba\xa7\x0f\xd0\x58\
\x49\xe0\xaa\xef\x6e\xdb\xc0\xd1\x6e\x6e\xf8\xde\x91\x3a\x1a\xfd\
\xb1\xb3\xe6\xbc\xb8\xee\xb4\xc0\xd6\xc6\xc4\xd1\x62\xb2\x13\xa9\
\xfb\xe0\xa1\x4d\x4a\x45\x76\x25\x48\x1e\xd3\xc0\xcf\x7d\x33\x4a\
\x7f\xb0\x4e\x03\xe7\xea\x7a\x6a\x36\xf1\x9b\x5f\xe0\x1c\x07\x55\
\xdb\x80\xc6\xd5\xe7\x71\x7b\x87\x33\x0d\x5d\x3d\x25\x36\x16\x0a\
\x0a\x83\x0c\xd2\x78\xc4\xd1\xd6\xd7\xc5\x8d\xa4\xa5\xa5\x17\xb2\
\xb0\xf2\x79\x18\xfd\x34\x83\xed\x4e\x99\x18\x12\x0e\x05\x3a\x78\
\xb0\xaf\x0e\x3f\xcb\xa4\xed\x6d\x61\xa5\x90\x33\x4f\x18\x48\x6b\
\x05\x2c\xe4\x92\xe9\x29\x92\x46\xa6\x45\x46\x5f\xab\x34\xfa\x74\
\x1f\xa1\xbf\xfa\xde\xf4\xa1\x81\xa9\x3d\x6f\xac\x29\x5c\xf4\x75\
\x5f\x6b\x23\x3e\x89\x75\xbd\x3c\x8e\xda\x9b\x58\x25\xa4\xa7\x63\
\xf5\xb2\x83\x74\xbf\xe3\x8f\xc7\xb5\x11\xbb\x6a\x23\xd7\xad\x56\
\x82\xa4\xe3\xab\x43\xfe\x5d\xbd\xe1\xb9\xf6\x7e\xee\x3d\x7b\x9c\
\xc9\x19\xfa\xd3\x77\xe5\xe1\xc4\xd0\xd2\x54\xd4\x29\x5d\xb3\xbd\
\xf2\x74\xd2\x55\xe2\xf2\x14\x51\x91\x78\xf1\xfb\x87\xed\xda\x9e\
\x6d\x2c\x10\xce\x55\x88\xd5\xcf\xb6\xe7\x88\x2a\xea\x07\xbb\xa4\
\x37\xd0\x2b\x27\x8a\x3f\xb4\x1f\xcc\x74\x47\x3f\xe1\x46\xdb\x9e\
\x83\x71\xaf\x52\x6d\x1d\xbf\x4f\x92\xab\xc9\xed\x0c\xa4\xb5\x7b\
\xde\xb6\x8b\x70\x56\xff\x00\x04\xa5\x8b\x2d\x47\xe4\xdb\xf1\x65\
\x30\xb4\xf3\xcb\x86\xab\xa8\x12\x24\x88\x8d\x3a\xc7\x53\x4d\x27\
\x2a\x0a\xbf\xb0\xaf\x31\x23\x8b\x44\x98\x2f\xe9\x86\xa1\x3f\x6f\
\x0e\x96\xf2\xea\xbf\x88\xca\x58\x69\x22\xa0\x7f\x84\x8f\x9f\x5a\
\xa2\xee\x3a\x37\xa6\xa6\x8f\x50\x12\x49\x39\x65\x40\xa6\xfa\x4a\
\xe9\x6e\x49\xb0\x23\xfd\xe3\xd8\x42\x3d\x2e\xc4\xd6\x9d\x0b\x19\
\x1e\x38\xa8\xd9\x6a\xf4\x10\x6f\x48\xaa\x06\xd5\xcb\x17\x84\xc6\
\xaa\x94\xc4\xb1\x65\x20\x8f\xbb\x84\x70\x07\x37\x3e\xcc\x2d\xf1\
\x3c\x79\xaf\x1f\xf0\x74\x4d\x7c\x8d\xf4\x97\x0c\x57\x18\xff\x00\
\x08\xeb\xe8\x43\xff\x00\x08\x94\xff\x00\xb2\x15\xf9\x71\xff\x00\
\x8b\x67\x0f\xfe\xf9\xee\xbf\xf6\x6f\xd0\x5f\xa3\xbf\xff\x00\x0a\
\x1c\xfe\x77\xdf\x20\x3f\x93\xce\x4f\xe2\x9d\x1f\x48\xf5\x1f\x4e\
\xf6\x7c\x1d\xf7\x43\xdc\x35\x5b\x96\x4e\xd4\xfe\xfa\x99\x70\xd2\
\xf5\xd4\xfd\x6f\x16\x26\x3c\x1a\x6d\x1d\xc9\xb7\x53\xc7\x5e\xbb\
\xce\xa0\xd4\x1a\x83\x29\x06\x18\xc2\x01\x76\x3e\xfd\xd7\xba\xd1\
\x6f\xf9\xb3\x7f\xc2\x80\x3e\x47\x7f\x37\x7e\x9f\xeb\x3e\x9c\xee\
\x9e\x95\xe9\x1e\xb3\xc2\xf5\x87\x64\xc9\xd9\x98\x9c\xb7\x57\xae\
\xfa\x19\x5c\x86\x52\x4d\xaf\x98\xda\xdf\xc3\xb2\x1f\xde\xbd\xd7\
\xb8\x29\x46\x3c\x52\x66\xa4\x94\xf8\x91\x24\x32\x22\x7a\xac\x08\
\x3e\xeb\xdd\x12\x1f\xe5\x8b\xfc\xc6\x3b\x37\xf9\x5b\xfc\xa1\xa3\
\xf9\x51\xd4\xbb\x17\x61\xf6\x26\xef\xa2\xd8\x9b\xbf\x60\xc7\xb7\
\x7b\x18\x6e\x03\xb7\x1b\x1f\xbc\x63\xa0\x8e\xb2\xb9\xbf\xbb\x59\
\x7c\x26\x50\x56\xd2\x7f\x0f\x4f\x15\xa7\x08\x43\x30\x60\x6e\x2d\
\xee\xbd\xd5\xbf\xfc\xed\xff\x00\x85\x54\xfc\xbe\xf9\xf1\xf1\x33\
\xb9\x7e\x22\x76\x37\xc7\x4f\x8d\xbb\x37\x65\xf7\x56\x17\x09\x84\
\xce\xee\x6d\x94\xbd\x9e\x37\x3e\x26\x9f\x07\xbb\xb6\xf6\xf0\x82\
\x5c\x4f\xf1\xdd\xf5\x96\xc4\xf9\xa6\xad\xdb\xb1\x44\xfe\x6a\x79\
\x17\xc4\xed\x60\x1a\xc4\x7b\xaf\x75\xab\xa7\xbf\x75\xee\x95\x5b\
\x17\x76\x56\x6c\x2d\xef\xb3\xb7\xce\x3a\x9a\x96\xb7\x21\xb2\xf7\
\x56\xde\xdd\x94\x34\x75\xc2\x53\x45\x57\x59\xb7\x32\xf4\x79\x8a\
\x5a\x6a\xc1\x0c\x91\x4c\x69\x67\x9e\x8d\x52\x4d\x0c\xad\xa0\x9b\
\x10\x79\xf7\xee\xbd\xd6\xe3\x3f\xf4\x1b\x4f\xcf\x2d\x44\xff\x00\
\xb2\x99\xf1\x1b\x45\xcd\x96\xdd\xc9\xab\x4d\xf8\x05\xff\x00\xd2\
\x4d\x89\x03\xf3\xa7\xfd\x87\xbf\x75\xee\xb4\xe5\xdf\x3b\xae\xb3\
\x7d\xef\x5d\xe1\xbe\x32\x14\xd4\xb4\x55\xfb\xcb\x74\xee\x0d\xd7\
\x5d\x47\x42\x25\x14\x54\x95\x9b\x8b\x2d\x57\x97\xa9\xa6\xa3\x13\
\xc9\x2c\xc2\x96\x09\xab\x19\x63\xd6\xcc\xda\x00\xb9\x27\x9f\x7e\
\xeb\xdd\x6d\x49\xf1\x87\xfe\x15\xdd\xf3\x47\xe2\xcf\xc7\x2e\x8b\
\xf8\xd7\xb3\xfe\x32\xfc\x5e\xdc\x1b\x5b\xa1\xfa\xa7\x62\xf5\x2e\
\xdf\xcf\x6e\x34\xed\x6f\xe3\xf9\x9c\x3e\xc2\xdb\xb4\x1b\x6f\x1d\
\x94\xcc\x8c\x5f\x60\x50\x63\xbf\x8a\x56\xd2\x63\xd2\x49\xfc\x10\
\xc5\x11\x95\x98\xaa\xa8\x20\x0f\x75\xee\xb5\xf1\xf9\xed\xf3\x1f\
\x7b\x7f\x30\x1f\x96\xfd\xc9\xf2\xff\x00\xb1\xb6\xae\xd4\xd9\x3b\
\xd3\xba\x32\x7b\x6b\x27\x9c\xda\xfb\x20\x65\x86\xd6\xc4\xcb\xb6\
\x36\x46\xd8\xd8\xb4\x91\xe2\xbf\x8e\x64\x32\x99\x52\xb5\x38\xfd\
\xaf\x0c\xd2\x99\xaa\x24\x26\x79\x1c\x8b\x2d\x94\x7b\xaf\x74\x50\
\x3d\xfb\xaf\x75\xb6\x3f\xfc\x27\xeb\xfe\x13\xfd\xf1\xb3\xf9\xbb\
\x7c\x72\xee\xde\xe3\xee\x8e\xea\xef\x0e\xb3\xdc\x3d\x61\xdd\x91\
\xf5\x9e\x2b\x13\xd6\x03\x61\x2e\x1a\xbb\x0c\xfb\x17\x6c\xee\x91\
\x91\xc8\x36\xeb\xda\xdb\x86\xb9\xf2\x6d\x5d\x9b\x96\x3b\x46\xf1\
\x44\xb1\x46\xbc\x33\x31\x23\xdd\x7b\xab\x34\xf9\x4f\x10\xff\x00\
\x84\x78\xff\x00\x72\x67\xf8\x46\x4f\xca\x16\xf9\xfb\xfd\xe0\x8b\
\xb2\xc7\xca\x9e\x46\xc7\x1f\x1a\xff\x00\x83\x3e\xcf\x3b\x0f\xfd\
\x12\x7f\xa3\xe2\xc7\x72\x1e\xf1\xca\x7f\x14\xfb\xf3\x51\xa7\xec\
\x29\x3c\x36\xbc\xbe\xfd\xd7\xba\xb3\x3f\xf8\x4f\xd7\xfc\x28\x0b\
\xe4\xa7\xf3\x76\xf9\x21\xdd\x7d\x33\xdd\x1d\x2b\xd1\xdd\x69\xb7\
\x7a\xcb\xa4\x47\x67\x62\xf2\xdd\x5f\xfd\xfd\x5c\xd5\x76\x68\xef\
\xcd\xab\xb5\x57\x1d\x90\x5d\xd7\xba\xb7\x0d\x0b\xe2\xda\x87\x3d\
\x2c\xa4\xc6\x91\x4a\xb2\xc4\x9e\xa6\x56\x20\x7b\xaf\x75\xb6\x57\
\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\
\xff\xd4\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\x27\x1f\xf8\x57\x17\xfd\xbe\
\x77\xb4\x3f\xf1\x09\xf4\x1f\xfe\xf1\x29\xef\xdd\x7b\xa8\x3f\xc9\
\x4b\xfe\x14\x45\x51\xfc\x9e\xbe\x3e\x76\x9f\x44\xc1\xf1\x3e\x9b\
\xbe\xcf\x65\x77\x2d\x4f\x6d\x1d\xd1\x2f\x72\x4d\xd7\x0f\x89\x15\
\x3b\x27\x68\xec\xef\xe0\x07\x12\xbd\x6f\xbd\x92\xb5\x62\xfe\xea\
\x8a\x85\xa8\x13\x42\x49\xa8\x64\x28\x74\x06\x3e\xeb\xdd\x00\xff\
\x00\xcf\x0b\xf9\xdb\x4d\xfc\xe5\xf3\x5f\x1c\xb3\x13\xfc\x71\xa7\
\xf8\xfa\xdd\x01\x8a\xec\xec\x67\x8a\x1e\xd0\x9b\xb2\x9b\x75\x7f\
\xa4\x6a\xcd\x91\x55\xe4\x69\x24\xd8\xdb\x21\x31\x09\x86\x1b\x36\
\xca\xa1\x2a\x0c\xc6\xa8\x92\xca\x11\x41\xf7\x5e\xea\x86\xfd\xfb\
\xaf\x75\x6a\xbf\xc9\xcb\xf9\x69\xd3\xff\x00\x35\xdf\x98\x69\xf1\
\x4e\xa7\xb8\x65\xe8\xf8\xdf\xab\x37\xd7\x64\x0d\xed\x0e\xc8\x5e\
\xc0\x90\xc9\xb3\xa5\xc1\xc1\x1e\x1c\x6d\xf7\xdd\x1b\x41\x0a\xd7\
\xbe\x68\x33\x4e\x6b\x07\x8d\x62\x36\x46\x2c\x2d\xee\xbd\xd6\xd6\
\x7f\xf4\x03\x76\x3f\xfe\xf6\x47\x59\xff\x00\xa4\xb1\x0f\xff\x00\
\x6f\xef\x7e\xeb\xdd\x19\x3f\x86\xff\x00\xf0\x8f\x5a\x4f\x89\x3f\
\x2c\x7e\x38\x7c\xa0\x8b\xe7\xd5\x5e\xf8\x7f\x8f\xfd\xd3\xd7\x7d\
\xbd\xfd\xcd\x3f\x1c\x20\xdb\xc3\x74\x8d\x85\xb9\xb1\xfb\x8f\xfb\
\xbe\x73\xa7\xba\x73\x9f\xc2\x17\x2c\x68\x3c\x0d\x53\xf6\x75\x06\
\x15\x72\xc1\x18\x80\x3d\xfb\xaf\x75\xb8\xf7\x6b\xec\x6f\xf4\x9f\
\xd5\xbd\x95\xd6\xa7\x26\xd8\x4f\xf4\x87\xb0\x37\x8e\xc6\xfe\x32\
\x94\x8b\x5e\xd8\x8f\xef\x6e\xdd\xc8\xe0\x3f\x89\xad\x0b\xcd\x4c\
\xb5\xad\x41\xfc\x43\xca\x22\x32\x46\x24\x29\xa7\x52\xde\xe3\xdd\
\x7b\xad\x13\x57\xfe\x10\xdd\x43\xa4\x6a\xfe\x64\x75\x7a\xac\x35\
\x69\xf8\xb1\x0e\x9b\xfe\x6d\x7e\xfe\xbd\xaf\xef\xdd\x7b\xae\xcf\
\xfc\x21\xba\x82\xc6\xdf\xcc\x8e\xb2\xff\x00\x8b\xfc\x58\x86\xd7\
\xfc\x5f\xfe\x33\xf7\xbf\x75\xee\xb7\x6e\xf8\x9d\xd1\x5f\xec\xaf\
\xfc\x5f\xf8\xf1\xf1\xb8\x6e\x89\x37\xb8\xe8\x5e\x95\xeb\x3e\x9f\
\x1b\xca\x5c\x4c\x78\x19\x77\x50\xeb\xad\x9f\x88\xda\x63\x70\xc9\
\x84\x8a\xb7\x25\x16\x21\xf3\x1f\xc2\xbe\xe0\xd3\x2d\x44\xeb\x09\
\x93\x40\x91\xc0\xd4\x7d\xd7\xba\xd5\x97\xf9\x8a\xff\x00\xc2\x4c\
\x29\x3e\x7d\xfc\xd4\xef\xdf\x98\x12\xfc\xe6\xa9\xeb\x07\xef\x0d\
\xcf\x89\xdc\x67\x61\x27\xc7\xb8\x77\x70\xdb\x7f\xc2\xf6\x8e\xdd\
\xda\xdf\x66\x37\x19\xee\x2d\xb7\xfc\x50\x4a\x30\x02\x60\xff\x00\
\x65\x01\x5f\x2e\x9b\x1d\x3a\x9b\xdd\x7b\xab\xdf\xfe\x51\x1f\xcb\
\x85\x3f\x95\x6f\xc3\x8c\x3f\xc4\xb8\xfb\x76\x4e\xed\x4c\x47\x60\
\xef\xcd\xf4\xbb\xe6\x4d\x96\x9b\x04\xca\x37\xad\x75\x2d\x60\xc5\
\x8d\xbc\x9b\x97\x76\xf8\xc6\x3c\x52\xd8\xca\x6b\x5c\xca\x58\x9d\
\x28\x00\x1e\xfd\xd7\xba\xad\x2f\xe7\x71\xff\x00\x0a\x21\xac\xfe\
\x4f\x5f\x21\xfa\xa3\xa2\xe1\xf8\xa1\x07\x7e\x41\xd9\x7d\x33\x07\
\x6c\xbe\xe7\x97\xb9\x1f\xae\x1f\x11\x25\x46\xf7\xdd\x9b\x3d\x70\
\x31\xe2\x53\xad\xb7\xb7\xdf\x08\xd7\x6b\x1a\x86\xa8\x33\xc3\x7f\
\x38\x41\x1f\xa0\xb1\xf7\x5e\xeb\xe7\x0f\xbc\xbb\x1b\x2f\xb9\x33\
\xd9\x1c\xec\x34\x14\x98\x45\xdc\xb9\x5c\xee\xf2\xad\xc3\x86\x92\
\xb0\xd2\x57\xef\x2d\xc9\x9a\xdd\x32\xd3\x54\x4c\xeb\x0b\x49\x3d\
\x1c\x59\x78\xe1\x2c\x54\x17\x58\xc3\xd9\x75\x69\x04\x12\xd8\xa3\
\x94\x47\xae\x9a\x64\x7e\x67\xf9\xf4\x36\x8e\xf6\x5a\x27\x68\xad\
\x05\x0f\xe4\x3a\x3c\x7f\x02\x7a\xe6\xbb\x78\x6e\x8c\xb7\x6d\x6e\
\x46\x49\xf0\xdb\x3e\x64\xc7\xed\x6a\x17\x81\x04\x15\x5b\x9e\x44\
\x12\xcd\x92\x8f\x58\x2e\xcb\x84\x80\x8d\x24\x5c\x09\xa4\x1f\x91\
\xec\x41\xcb\x7b\x15\xb7\xd4\x35\xf3\xc5\x51\x19\xa2\xd7\xf8\x8f\
\x9f\xe5\xfe\x1e\x90\xee\x3b\x9c\xe0\x08\x75\xe5\x86\x69\xe9\xd6\
\xdf\xdf\xcb\x0b\xa8\x29\xf2\x75\x5b\xff\x00\xe5\xcf\x68\x4a\xf5\
\x78\xed\x8f\x1e\x56\x87\x68\x56\x65\x9c\x34\x49\x90\xc7\xe2\x9e\
\xb7\x76\xee\xc6\x92\x70\x51\xa5\xa1\xc7\x22\xd2\xc1\x27\xd2\x37\
\x66\x20\xf1\x6f\x62\x3d\xd6\xe1\xb5\x2d\xb2\x9c\x53\x3f\xe4\x1d\
\x11\x5c\x4b\x50\x11\x78\x11\x9e\xaa\x47\xbb\x7b\x33\x70\xf7\xbf\
\x68\x76\x37\x62\x94\x9f\x21\x92\xde\xb9\x5c\xce\x6e\x95\x64\x06\
\x78\xf1\xbb\x6a\x91\x9a\x9f\x19\x14\xaa\x5c\xac\x54\x54\x58\x88\
\x63\x00\x6a\xb5\xdb\x8f\xaf\xb5\xb6\xd6\xed\xe1\xf8\x50\x82\x68\
\xa4\x9f\xcb\x24\xf5\x66\x96\x2b\x48\xa2\x32\x38\x01\x98\x28\xfb\
\x4f\xa7\x41\x04\x35\x4e\xb1\x24\x71\x48\x52\x3f\x1c\x68\x62\x46\
\x2a\x8c\xa8\x06\x95\x64\x16\x05\x54\x8b\x81\x6e\x3d\xb6\x0b\x91\
\x50\x71\xd2\xa3\xe9\xd3\x95\x16\x2e\xb7\x73\x49\x16\x0f\x16\x89\
\x26\x46\xbe\xa6\x18\x20\x8d\xc8\xf4\xc8\xa0\xd4\x34\x83\xf2\x24\
\x8e\x28\xcb\xa7\xe6\xe0\x1f\x6a\x2d\x20\x7b\xb9\xa2\xb7\x52\x43\
\xb9\xa7\x49\xaf\x2e\x92\xca\xda\x7b\xb7\x15\x48\xc5\x4f\x49\xb9\
\x6a\xa7\x7a\x61\x4d\x33\x85\xc9\xd1\xc2\x25\x92\x31\x70\xff\x00\
\x71\x48\xef\x0c\x9a\x56\x42\xa5\x8e\xb8\x99\x4d\xcf\x3c\xfe\x3d\
\xf8\xa9\xd4\x63\xd1\x49\x01\xa7\xe6\x3a\xbf\x8b\x14\x91\x09\x01\
\x05\x18\x02\x3e\xc3\x9e\x9e\xf1\xd9\xec\x9d\x03\xd1\xe4\x71\x59\
\x5a\xcc\x7d\x6d\x2c\xb4\x59\x0a\x0a\xaa\x4a\xa7\x8a\x5a\x6a\xdc\
\x7c\xcb\x57\x8e\x9e\x26\x53\xa3\xc9\x47\x54\x81\x90\x90\x40\x61\
\xed\x43\x28\x75\x2a\x7c\xfa\x4c\xce\xce\x6a\x7a\x09\xfe\x46\xcb\
\x91\xec\xde\xa7\xec\xfc\x86\x5e\x4f\xe2\xdb\x83\x2f\x4b\x51\xba\
\xeb\x2a\xa6\x91\x94\xd4\x66\xa8\xea\x85\x75\x4d\x65\xd8\xdf\x58\
\x71\x23\x05\xfd\x3a\x89\xd2\x00\xf6\x55\xbb\xdb\xac\xbb\x35\xe4\
\x6b\xfc\x15\x1f\x91\xaf\x4b\x76\xc6\xf0\x2f\x2d\xd4\x53\xc3\x2d\
\x4f\xdb\xd5\x13\x6e\x98\xe4\x5a\x7a\x07\x91\x1e\x21\x2b\x4a\x53\
\x57\x04\xfa\x10\x92\x41\xe4\x7b\x8b\x6d\x4a\xb3\x39\x04\x50\x0f\
\xf5\x0e\x86\x97\x01\x82\xa1\x22\x9d\x04\x1b\xee\xff\x00\xdd\x0c\
\xcd\xc7\x1e\x2a\x6b\x1f\xeb\xfe\x5b\x05\xbf\xdb\x8f\x66\x36\xdf\
\xdb\xc7\xfe\xaf\x2e\x89\xb7\x2f\xf7\x06\xe3\xf2\xff\x00\x08\xea\
\xeb\xff\x00\x92\x7f\xfc\x28\x6a\xa3\xf9\x3c\x74\x47\x6d\x74\xac\
\x1f\x14\xa9\xbb\xf0\xf6\x8f\x6d\xaf\x68\x9d\xcb\x2f\x71\x4d\xd7\
\x0f\x87\x03\x67\x6d\xed\xa6\x70\x67\x16\xbd\x71\xbd\x92\xbd\x57\
\xf8\x00\xa8\x5a\x81\x34\x26\xf3\x14\x28\x74\x86\xf6\x73\xd0\x3f\
\xab\xaa\xa3\xc6\x7f\xd0\x66\x22\x4c\xcd\x7c\xc3\xf9\x7c\x9f\xe5\
\xf4\x46\x32\x1a\x7a\x38\xcf\xc9\x6f\xf4\xb2\x3e\x4b\x5a\xa9\xa6\
\x96\x49\xdb\xa4\x46\xcf\xfe\xe3\xff\x00\xa0\xed\x2a\xaa\x2b\xfe\
\xfb\xf8\xb9\x24\xc7\xe0\x01\xbd\xd7\xba\x99\xff\x00\x40\x37\x63\
\xff\x00\xef\x64\x75\x9f\xfa\x4b\x10\xff\x00\xf6\xfe\xf7\xee\xbd\
\xd7\xbf\xe8\x06\xec\x7f\xfd\xec\x8e\xb3\xff\x00\x49\x62\x1f\xfe\
\xdf\xde\xfd\xd7\xba\xf7\xfd\x00\xdd\x8f\xff\x00\xbd\x91\xd6\x7f\
\xe9\x2c\x43\xff\x00\xdb\xfb\xdf\xba\xf7\x5e\xff\x00\xa0\x1b\xb1\
\xff\x00\xf7\xb2\x3a\xcf\xfd\x25\x88\x7f\xfb\x7f\x7b\xf7\x5e\xe9\
\x1d\xd8\x9f\xf0\x89\xbc\x6e\xc1\xeb\xed\xf9\xbe\xdf\xf9\x8b\x56\
\x64\x86\xca\xd9\x7b\xab\x76\x8c\x77\xfb\x2c\x10\xd1\x8a\xf7\xdb\
\x98\x2a\xfc\xc2\x51\x35\x58\xef\x6a\xb6\xa6\x4a\xa7\xa3\x11\xb4\
\x82\x29\x0a\x06\x2c\x15\x88\xb1\xf7\x5e\xeb\x42\x8f\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5b\xbc\x7c\x3b\xff\x00\x84\x77\xe3\xfe\x57\xfc\
\x50\xf8\xdf\xf2\x6c\xfc\xfc\xaa\xd9\x2f\xdf\xdd\x29\xd7\x1d\xbb\
\x2e\xce\x4f\x8d\xf1\xee\x08\xf6\xb4\x9b\xff\x00\x6b\xe3\xb7\x2b\
\x60\x13\x38\xfd\xd5\x84\x6c\xb8\xc4\x8c\x88\x80\xd4\x9a\x4a\x7f\
\x31\x42\xc2\x35\x04\x0f\x7e\xeb\xdd\x19\x0f\xfa\x01\xbb\x1f\xff\
\x00\x7b\x23\xac\xff\x00\xd2\x58\x87\xff\x00\xb7\xf7\xbf\x75\xee\
\xbd\xff\x00\x40\x37\x63\xff\x00\xef\x64\x75\x9f\xfa\x4b\x10\xff\
\x00\xf6\xfe\xf7\xee\xbd\xd6\xc9\xdf\xc9\x37\xf9\x42\xc5\xfc\x9d\
\xfa\x3b\xb7\x7a\x62\x1e\xf9\x97\xbf\x53\xb4\xfb\x62\x2e\xcf\xfe\
\xf0\x4b\xd7\x49\xd6\xe7\x09\xe2\xd9\xf8\x1d\xa9\xfc\x1f\xf8\x62\
\x6f\x3d\xeb\xf7\xe5\xbf\x82\x79\xfc\xff\x00\x71\x17\xf9\xc0\x9e\
\x3f\x49\x66\xf7\x5e\xeb\x5a\xaf\xf8\x5c\x87\xf9\x8f\xe5\xb9\xff\
\x00\x2d\x7e\x53\x7f\xd0\x9d\x07\xef\xdd\x7b\xa2\x8b\xff\x00\x08\
\x95\xff\x00\xb2\xec\xf9\x6d\xff\x00\x8a\x95\x1f\xfe\xfe\x2e\xbc\
\xf7\xee\xbd\xd7\xd2\xc7\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7f\xff\xd5\xdf\xe3\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x6a\xaf\xf3\x9f\xfe\
\x15\x73\xf1\x5f\xe0\x8f\xcb\x3e\xec\xf8\x91\xbf\x3e\x31\x7c\x82\
\xde\x7b\xb3\xa4\xb7\x2d\x0e\xda\xcc\xee\x9d\xa7\x94\xeb\x88\x76\
\xf6\x6a\xa2\xbf\x6e\x61\x77\x24\x75\x58\xc8\x72\xfb\x8a\x93\x23\
\x1d\x3a\xd3\x66\xd1\x2d\x2c\x6a\xda\x90\x9b\x01\x6f\x7e\xeb\xdd\
\x68\x31\xfc\xeb\xbf\x98\x5f\x5e\x7f\x33\xef\x9d\xfb\xb3\xe5\x97\
\x57\xec\x3d\xe9\xd6\xfb\x57\x71\x75\xf7\x5b\xed\x08\xb6\xc6\xfd\
\xa9\xc1\xd5\x6e\x08\x6b\xb6\x56\x0b\xf8\x45\x6d\x64\x92\x6d\xea\
\xba\xec\x6a\xd2\x55\xb8\x0d\x12\x89\x5d\xec\x09\x6b\x5f\x48\xf7\
\x5e\xe8\xcd\x7f\x29\x3f\xf8\x4f\x7f\x7e\xff\x00\x37\x6e\x8d\xec\
\x5e\xf3\xea\x4e\xf9\xe9\xbe\xac\xc3\xf5\xc7\x6b\xd4\xf5\x3e\x47\
\x01\xd8\xb8\xfd\xef\x57\x97\xae\xc9\x52\xed\x0d\xad\xbc\x1b\x31\
\x4b\x2e\xda\xc2\x64\x68\x53\x1b\x2d\x2e\xea\x8a\x14\x56\x7f\x29\
\x96\x19\x09\x55\x5d\x05\xfd\xd7\xba\x06\x7f\x9b\xff\x00\xf2\x58\
\xee\x4f\xe4\xed\x94\xe8\x5c\x4f\x6f\x77\x17\x57\xf6\xcd\x47\x7e\
\x63\xbb\x13\x23\x84\xff\x00\x46\xd4\x5b\xb6\x8c\x60\x22\xeb\xaa\
\xad\x9f\x4d\x5c\x33\x1f\xde\x8c\x4e\x30\x4b\xfc\x4c\xef\x28\x4d\
\x39\x80\xb9\x06\x09\x43\x85\xf4\x17\xf7\x5e\xe9\x25\xfc\xa2\xff\
\x00\x94\x37\x6c\xff\x00\x37\xde\xcf\xed\xae\xad\xea\x4e\xd6\xeb\
\x8e\xa9\xcb\x75\x26\xc1\xc5\xef\xfc\x9e\x43\xb1\xe8\xf7\x3d\x5d\
\x0e\x5e\x83\x29\xb8\xa9\xf6\xea\x51\x63\xd7\x6c\xe3\x72\x53\xc7\
\x53\x04\xf5\x02\x46\x69\x55\x57\x4d\x80\xb9\x26\xde\xeb\xdd\x6c\
\xa7\xd0\x7f\xcb\x4b\xb2\x7f\xe1\x2b\xfb\xf1\x7f\x9a\x67\xca\x3e\
\xc1\xd9\x1f\x26\x3a\xc6\x1c\x3e\x43\xe3\xa1\xeb\x5e\x82\x83\x3b\
\x8a\xdf\x63\x70\x76\xfb\xd2\xd6\x62\xf7\x11\xaa\xec\x4c\x7e\x03\
\x6f\xb6\x17\x13\x16\xcd\x9d\x6a\x23\x13\x89\xd9\xe6\x8f\x40\x20\
\x35\xbd\xd7\xba\x3b\xbf\xf4\x1b\x7f\xc2\x9f\xfb\xc3\xbf\x94\x9f\
\xf9\xf8\xea\x6f\xfe\xca\xfd\xfb\xaf\x74\x3d\xfc\x57\xff\x00\x85\
\x77\xfc\x4c\xf9\x5d\xf2\x5b\xa1\x3e\x32\xed\x1f\x8a\x9f\x23\x76\
\xee\xe6\xef\xde\xdb\xd8\x7d\x47\x84\xdc\x39\xec\xb7\x58\xc9\x84\
\xc0\xe4\xf7\xee\xe2\xa1\xdb\x94\x59\x9c\xb4\x54\x1b\x9a\x7a\xe9\
\x71\xb8\xda\x8a\xf5\x96\xa1\x61\x46\x98\xc2\xad\xa1\x59\xec\xad\
\xee\xbd\xd6\xd4\xfd\x97\xbd\xe8\xfa\xcb\xae\x3b\x03\xb2\x32\x34\
\x35\x99\x4c\x7f\x5f\x6c\x9d\xd7\xbd\xeb\xb1\x98\xf6\x81\x72\x19\
\x1a\x3d\xa7\x82\xaf\xcf\x55\x50\xd0\xb5\x54\x90\xd3\x2d\x65\x5c\
\x14\x0d\x1c\x46\x47\x48\xc3\xb0\xd4\x40\xb9\xf7\xee\xbd\xd6\x9b\
\x43\xfe\x16\xe1\xf0\xb7\xc6\x09\xf8\x73\xf2\x84\x4b\xa4\x12\x83\
\x39\xd5\x06\x30\xf6\xe5\x44\x9f\xde\x70\xc5\x41\xfc\xe9\x04\xff\
\x00\x4f\x7e\xeb\xdd\x6e\x79\xb5\x33\xf0\x6e\xcd\xaf\xb6\xf7\x4d\
\x2d\x3c\xf4\x94\xdb\x97\x01\x87\xcf\xd3\xd2\xd4\x98\xcd\x4d\x34\
\x19\x9c\x75\x3e\x46\x1a\x7a\x83\x0b\x3c\x46\x78\x63\xa9\x0a\xfa\
\x58\xae\xa0\x6c\x48\xf7\xee\xbd\xd6\xa5\xbf\x23\xbf\xe1\x60\x9f\
\x11\xbe\x36\x7c\x83\xef\x2f\x8f\x1b\x9f\xe2\x7f\xc9\x2c\xe6\xe2\
\xe8\xbe\xdc\xec\x4e\xa2\xcd\x67\x30\xd9\x6e\xae\x4c\x46\x6f\x29\
\xd7\x5b\xaf\x2b\xb4\xab\xb3\x38\xa8\xeb\x37\x44\x55\x71\x63\x32\
\x95\x58\x97\x9e\x9d\x66\x55\x98\x40\xeb\xe4\x55\x7d\x4a\xbe\xeb\
\xdd\x03\x1f\xf4\x1b\x7f\xc2\x9f\xfb\xc3\xbf\x94\x9f\xf9\xf8\xea\
\x6f\xfe\xca\xfd\xfb\xaf\x75\xb2\x4f\xf2\xc0\xfe\x62\x9d\x7f\xfc\
\xd1\xbe\x2b\x63\x3e\x56\xf5\x9f\x5f\x6f\x4e\xb3\xda\xb9\x5d\xf3\
\xbc\xf6\x34\x1b\x67\x7e\x54\xe0\xaa\xf3\xe2\xaf\x66\x56\x53\x52\
\x55\x64\x1a\x6d\xbd\x5b\x5f\x8f\xfb\x4a\xc6\xaa\x05\x17\x5e\xb5\
\x2a\xc0\x8b\x58\x9f\x75\xee\xb4\x4d\xff\x00\x85\xb3\x7f\xdb\xc0\
\x7e\x2a\xff\x00\xe2\x9d\x50\x7f\xef\xeb\xed\x9f\x7e\xeb\xdd\x6b\
\x37\x4d\x43\x59\x2d\x35\x29\x0a\x5a\x47\xa4\xa4\xb3\x3b\xdc\xb3\
\xb5\x34\x41\x4b\x31\x2c\x4d\xc9\x1e\xc9\x7c\x61\xa8\xd1\x6a\x41\
\xe8\x65\x14\x6c\xe8\xb4\x14\xc0\xff\x00\x07\x57\xa7\xf1\x4f\x0e\
\xdb\x67\x61\xe4\xb1\x14\xd7\x5a\x2d\xb6\x71\xbb\x66\x89\x62\x78\
\x24\xa5\xc8\xe7\x61\xa0\x4c\xa6\xeb\xc9\xc1\x34\x5e\x99\x66\xaa\
\xcf\x64\xfe\xd9\x9f\x83\x6a\x75\x07\x91\xee\x47\xd9\xa2\x11\xdb\
\x3a\x57\xb5\x08\x5f\xf6\xd4\xab\x1f\xda\x69\xf9\x74\x1e\xbf\x7f\
\xd5\x4d\x44\x6a\x60\x4f\xe5\x5a\x0f\xe5\xd6\xd9\x1f\x20\x1a\x4f\
\x8a\xdf\xca\x4f\x3f\x43\x87\x8f\x25\x89\xcd\x7f\xa2\x9c\x06\x22\
\xaa\xa2\x0a\x68\xa8\x72\x50\x6e\x2e\xcc\xc8\xe3\xc6\x5e\xab\x25\
\x0a\x99\x51\x1c\xa6\x45\xe1\x9c\x8b\xb3\x2d\xbf\x27\xd9\x41\x7f\
\x1e\xf9\x98\x9c\x6a\x3f\xb0\x74\x80\x65\xf1\xc3\xaa\x4a\xd9\x3b\
\x3f\x33\x80\xeb\x5d\xc1\x54\xbb\x76\x5a\xac\xfe\x7f\x6c\xd5\x3c\
\x6e\x6a\xe9\x7f\x62\x88\x63\x8c\x98\xec\x72\xc6\x15\xa6\x8f\x52\
\x7a\xdd\x7f\x51\x63\xf4\xf7\x24\xd9\x6d\xd2\x5b\xec\xf7\x6a\xb0\
\x16\xba\x96\x32\x6b\x51\x80\x46\x07\xfb\x1d\x03\x2f\xf7\x34\xbc\
\xde\x2d\x18\xdc\x81\x69\x04\xa0\x70\x39\x20\xe4\xfa\x7d\x9d\x16\
\x4a\x9c\x5d\x5e\x0b\x25\x51\x87\xc9\x7d\xbc\x35\x54\xf0\x52\xd6\
\x88\x69\x64\xa8\x96\x28\xa9\x2b\x69\xe3\xa9\xa7\x55\x9e\xa9\x12\
\x79\x64\x45\x7b\x39\x60\x08\x6b\x8b\x0b\x7b\x0a\x5c\x44\xd6\x92\
\x34\x52\x00\x18\x00\x71\xf3\x00\xf4\x3e\xb2\xba\x4b\xe8\x05\xc4\
\x66\xaa\x58\x8f\xd8\x69\xd1\x87\xeb\x5e\xb4\xcb\xe1\x73\x07\x74\
\x53\x34\x74\xd9\x48\x31\x54\x59\x3a\xaa\x4c\xe4\x52\x36\x2a\x6c\
\xa6\x5a\x0d\x34\x30\xc5\x24\x36\xa9\xa4\x7c\x6e\x01\x41\x79\x23\
\xfd\x33\xcb\x66\x53\xcf\xb1\x3e\xcb\xb4\xdc\xc1\x70\x97\x5d\xab\
\x22\xc5\x5e\xee\x1a\x9f\x87\x0e\x04\x2e\x6a\x38\x57\xa0\x7e\xfd\
\xbe\x5a\x5c\xdb\xc9\x62\x75\x34\x4f\x29\x5a\xad\x2b\xa5\x3c\xe8\
\x78\x82\xf8\xa1\xe2\x07\x1e\xa0\x65\x3a\xa7\x3b\x95\xc7\xf6\x3e\
\x6a\x5c\x76\x36\x2c\x94\x1b\x92\x7c\xa6\xd4\xad\xc7\x55\x54\xd5\
\x3e\x4e\x86\x0a\x68\xe5\xae\xc7\x32\x4b\x4b\x04\x2b\x43\x33\xcd\
\x28\x89\x94\x92\xee\xbf\xec\x7d\xb9\x36\xd1\x3c\xb1\x6e\x73\x14\
\x8f\x5f\x89\xa9\x0a\x9a\x93\x41\x90\x3e\x47\x3f\x9f\x49\xe1\xde\
\xed\xed\x9f\x68\x89\x66\x73\x17\x87\xa1\xf5\x00\x29\x53\xda\x4d\
\x2a\x6a\xbf\xe0\xe8\xb2\x51\xd6\x46\xd0\xbf\x86\x49\xe4\x48\x2a\
\x27\x85\xc4\xe3\xd6\xb2\x23\xde\x44\x37\x03\xd1\x19\x6d\x23\xfa\
\x01\x6f\x61\xe5\x1d\xa3\xa1\x79\x34\x38\xe1\xd3\x76\x4a\x35\xc9\
\x60\xb7\x2e\x26\xa7\xca\x29\xeb\xb1\x99\x5a\x67\x79\x1d\x5b\xc9\
\x05\x45\x0c\x85\xbc\x3a\x6c\x52\x28\xcf\xa4\x03\xcf\x1e\xda\xb8\
\x4d\x76\xf7\x09\xe4\x51\x87\xf2\x3d\x39\x0b\xe9\x9a\x06\xf2\x0e\
\x3f\xc3\xd5\x19\xef\xf5\x09\x4f\x8c\xd2\x3d\x2b\x3d\x5c\x42\xe4\
\x7d\x13\xd1\xfd\x3e\x96\x5f\xaf\xb8\x43\x6e\x14\x69\x54\xf1\x1d\
\x49\x9b\x8d\x3c\x38\x48\xf5\xff\x00\x27\x40\x2e\xfc\xe7\x67\xe5\
\xed\xc0\x10\xd2\xdc\x7f\x8f\xdd\xc1\x7f\xf1\x1e\xcf\x6d\xbf\xb7\
\x8f\xfd\x5e\x5d\x06\xf7\x2f\xf7\x06\xe3\xf2\xff\x00\x08\xea\xd5\
\xff\x00\x94\x87\xfc\x27\xe3\xbe\xff\x00\x9b\xc7\x4c\x76\x67\x74\
\x75\x1f\x7b\xf4\xef\x56\x62\xba\xc7\xb3\xc7\x57\xe4\xf0\x7d\x8b\
\x8f\xde\xd5\x79\x5c\x86\x40\xed\x4c\x16\xeb\xfe\x2b\x47\x2e\xda\
\xc2\xe4\x68\xd3\x1e\xd4\xd9\xe8\xe1\x55\x77\xf2\x99\x22\x90\x90\
\xab\xa4\xb1\xcf\x40\xfe\xb7\xb5\xff\x00\x84\xf6\xff\x00\x25\x0e\
\xee\xfe\x4e\xd4\x9f\x2a\xa9\x7b\x87\xb8\xfa\xaf\xb6\x23\xef\xda\
\x9e\x9d\xa8\xdb\xa3\xad\x71\xfb\xba\x8d\xf0\x4d\xd7\x11\x76\x4c\
\x79\x63\x9a\x97\x74\x63\xf1\xa2\x65\xc9\x0d\xeb\x4d\xf6\xeb\x04\
\x6d\xa3\xed\xe5\x2e\xc7\x52\x81\xee\xbd\xd1\xe3\xfe\x6e\x3f\xcd\
\xbb\xaa\x3f\x94\x2f\x50\xf5\x7f\x70\xf6\xdf\x56\x76\x27\x6a\xe1\
\xbb\x4b\xb2\x66\xeb\x5c\x6e\x2f\xae\x6a\xf6\xd5\x26\x47\x17\x92\
\x87\x6c\x65\xf7\x41\xc8\x57\xb6\xe6\xc9\x63\x69\xde\x8d\xe9\x71\
\x0f\x18\x11\xb3\x3e\xb6\x17\xb0\xf7\xee\xbd\xd5\x06\x7f\xd0\x6d\
\xff\x00\x0a\x7f\xef\x0e\xfe\x52\x7f\xe7\xe3\xa9\xbf\xfb\x2b\xf7\
\xee\xbd\xd1\xba\xf8\x1b\xff\x00\x0a\xaf\xf8\xb3\xf3\xe7\xe5\xc7\
\x4b\xfc\x43\xd8\x3f\x19\x7e\x40\x6c\x9d\xdb\xdd\x79\xbc\xe6\x13\
\x0d\xba\xb7\x76\x53\xae\x67\xdb\xb8\x79\xf0\x7b\x43\x70\xef\x09\
\xe7\xca\x43\x87\xdc\x55\x99\x29\x21\x96\x8b\x6e\xcb\x12\xf8\xa3\
\x66\x12\x3a\xf1\x6b\x91\xee\xbd\xd6\xc5\xbf\x26\xfb\xd3\x09\xf1\
\x87\xe3\x9f\x7b\x7c\x8f\xdc\x98\x2c\xc6\xe7\xdb\xdd\x0f\xd4\x7d\
\x85\xdb\xd9\xcd\xb9\xb7\x9e\x86\x3c\xf6\x7b\x13\xd7\x9b\x5b\x29\
\xba\xb2\x18\x8c\x34\x99\x3a\x8a\x4c\x72\x64\xf2\x34\xb8\xb6\x8a\
\x03\x3c\xb1\xc2\x24\x61\xad\x82\xdc\xfb\xf7\x5e\xeb\x4d\xfe\xce\
\xff\x00\x85\xa2\x7c\x31\xdf\x9d\x69\xd8\x5b\x1e\x9b\xe2\x1f\xc9\
\xea\x3a\xbd\xe7\xb1\x77\x66\xd4\xa7\xaa\x9f\x35\xd5\x42\x9e\x96\
\xa7\x71\x60\x32\x18\x88\x67\x99\xe3\xdc\xb3\x48\x20\x86\x5a\xc0\
\xcc\x56\x37\x60\xa0\x90\xa4\xf0\x7d\xd7\xba\xf9\xcc\x7b\xf7\x5e\
\xeb\x73\x3d\x95\xff\x00\x08\xb8\xf9\x91\xbe\x36\x6e\xd0\xde\xb8\
\xef\x97\xff\x00\x18\xe9\xf1\xdb\xc3\x6b\xed\xed\xd3\x47\x05\x4e\
\x1b\xb5\x7e\xe6\x9a\x97\x70\xe2\x28\xf2\xd0\xc1\x37\x8f\x6b\xb4\
\x6d\x2c\x11\xd6\x05\x24\x10\x18\x8b\xf1\x7b\x0f\x75\xee\xac\xfb\
\x60\x7f\xc2\x9d\xfe\x32\xff\x00\x2a\xed\x91\xb5\x3f\x96\xa7\x68\
\xfc\x6f\xef\x8e\xc7\xec\x8f\x81\x7b\x7f\x15\xf1\x23\x7d\xf6\x1e\
\xc3\xca\xf5\xec\x3b\x23\x7d\x6e\xee\x83\xa2\x87\xad\xb7\x16\xf0\
\xd9\xf4\xf9\xfc\xee\x37\x3b\x4d\xb5\xf7\x1e\x5b\x6f\x4b\x57\x8f\
\x8a\xb6\x08\xaa\xe3\xa4\x96\x35\x99\x44\x81\x87\xbf\x75\xee\x95\
\xff\x00\xf4\x1b\x7f\xc2\x9f\xfb\xc3\xbf\x94\x9f\xf9\xf8\xea\x6f\
\xfe\xca\xfd\xfb\xaf\x75\xb1\xef\xf2\xb6\xfe\x64\x3d\x79\xfc\xd4\
\x3e\x2e\xaf\xca\x6e\xb1\xeb\xbd\xed\xd6\x3b\x5d\xfb\x17\x78\x75\
\xd2\x6d\xbd\xfd\x55\x81\xab\xce\xbd\x6e\xcf\x8f\x11\x2d\x4e\x4d\
\x66\xdb\xb5\xd5\xf4\x1f\x65\x58\xb9\x84\x08\xa5\xc4\x8a\xf1\xb8\
\x22\xda\x59\xbd\xd7\xba\x23\xff\x00\xcd\xbf\xfe\x14\x0f\xd0\x9f\
\xca\x1b\xb9\xfa\xcb\xa5\xfb\x73\xa2\x3b\x8b\xb4\xf2\xbd\x9d\xd6\
\x0d\xd9\xf8\xcc\xe7\x5d\x64\x36\x4d\x26\x2f\x1f\x8f\x1b\xaf\x39\
\xb5\x3f\x85\x56\x45\xb9\x73\x58\xea\xc7\xc8\x2d\x4e\x06\x49\x99\
\x91\x3c\x42\x39\x23\x00\xb3\x6a\x0b\xee\xbd\xd6\x8b\x1f\xf0\xa1\
\x2f\xe7\x75\xd2\x1f\xce\x26\x0f\x8a\xb1\xf4\xf7\x4d\xf6\xaf\x53\
\xcb\xd0\x32\xf7\x1b\xee\x19\x3b\x2a\xbf\x68\xd5\xc7\x9d\x8f\xb2\
\x13\xad\x17\x14\x98\x68\xf6\xbe\x4b\x26\xd1\x3e\x35\xb6\x4d\x41\
\xa8\x69\xdd\x43\x09\xe3\x08\x3d\x2c\x7d\xfb\xaf\x74\x7c\x7f\xe1\
\x12\xbf\xf6\x5d\x9f\x2d\xbf\xf1\x52\xa3\xff\x00\xdf\xc5\xd7\x9e\
\xfd\xd7\xba\xfa\x58\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\
\xee\xbd\xef\xdd\x7b\xaf\xff\xd6\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\xf1\xff\x00\x9b\x87\
\xfc\x26\x4f\xf9\x97\xfc\xd6\xfe\x63\x9f\x2a\xbe\x51\xf4\xd1\xf8\
\xf4\x9d\x61\xdc\x1b\xeb\x0f\xb8\x36\x7f\xf7\xb7\xb5\xb2\x78\x3d\
\xc4\x71\xd4\x3b\x1f\x6a\xed\xe9\x4e\x53\x13\x06\xca\xc9\x47\x43\
\x51\xf7\xd8\x69\x7d\x02\x69\x06\x8b\x1b\xf3\xef\xdd\x7b\xad\x43\
\xfe\x7c\x7c\x0e\xef\x3f\xe5\xc1\xf2\x27\x31\xf1\x83\xe4\x4b\xec\
\x99\x3b\x33\x07\xb6\x36\xae\xec\xae\x3b\x03\x71\x4f\xba\x36\xe8\
\xc5\xef\x0c\x6f\xf1\x4c\x4a\xc7\x94\xa9\xc5\x61\xa7\x35\x89\x4f\
\xc4\xd1\xb5\x3a\xe8\x6f\xa1\x65\x21\x8f\xba\xf7\x5b\x30\xff\x00\
\xc2\x6e\xff\x00\x9e\xa7\xc1\x8f\xe5\x61\xf1\x37\xbc\x3a\x77\xe5\
\x0f\xfa\x66\x6d\xed\xd8\x3f\x22\x2b\x3b\x2f\x05\x1f\x5c\x75\xed\
\x06\xed\xc4\x7f\x75\xa7\xeb\x5d\x81\xb5\xe1\x7a\xbc\x8d\x56\xea\
\xc1\xbc\x19\x2f\xe2\xdb\x72\xa8\x3c\x1e\x22\x16\x2f\x1b\x07\x6d\
\x6c\x13\xdd\x7b\xa3\x77\xfc\xcc\x36\xf5\x7f\xfc\x2a\xf7\x29\xd4\
\x3b\xaf\xf9\x55\xf8\xe3\xc6\x7c\x24\xc7\xef\x3d\xbd\xdd\xa3\xe4\
\xc1\x6e\x9e\x98\xd7\xf7\xc5\x4e\xda\xc9\x6c\x03\xb3\x06\x25\x77\
\xea\x6e\x28\xbe\xdf\xaa\x33\x1f\xc4\x0b\x9a\x53\x46\x7e\xdb\x89\
\x3c\xfe\x8f\x75\xee\x8f\xe7\xfc\x26\xc7\xf9\x1f\x7c\xdd\xfe\x55\
\x7f\x21\xfe\x45\x76\x4f\xca\x41\xd3\xc7\x6b\x76\x7f\x4c\x61\x36\
\x3e\xda\x93\xad\xfb\x02\xb7\x77\x64\x7f\x8f\xd0\x6f\x8c\x7e\x7a\
\x54\xae\xa2\xaa\xdb\x18\x31\x4b\x44\x31\xd4\xd2\x1f\x2f\x91\x8f\
\x93\x4a\x85\x37\x25\x7d\xd7\xba\xb4\xdf\xf8\x50\x5f\xf2\xff\x00\
\xf9\x03\xfc\xca\xbf\x97\xf3\x7c\x6b\xf8\xd6\x9b\x1d\xfb\x1e\x5e\
\xee\xeb\x4d\xf6\xff\x00\xe9\x03\x73\x4f\xb5\x30\x29\xb7\x76\xb5\
\x36\xe7\x87\x2a\xeb\x93\xa7\xc4\xe6\x5d\xeb\x92\x5c\xb4\x05\x22\
\xf1\x0d\x69\xac\x86\xba\x85\x6f\x75\xee\xb4\x70\xff\x00\xa0\x3b\
\x7f\x9b\xe7\xfa\xbf\x8a\xff\x00\xfa\x3a\xf3\x1f\xfd\xaf\x3d\xfb\
\xaf\x74\x33\x7c\x75\xff\x00\x84\xeb\x7f\x30\xff\x00\xe5\x89\xdf\
\x1d\x3f\xfc\xc5\x3e\x4a\x1e\x85\x7f\x8f\x7f\x08\xbb\x17\x69\x7c\
\xa1\xee\xc5\xd8\x1d\xa1\x5f\xb9\x77\xc9\xea\xee\x96\xcc\xd2\x6f\
\xcd\xef\xfd\xcf\xdb\x95\x9b\x3f\x09\x4b\x9f\xdc\xc3\x6f\x61\x6a\
\x3e\xc6\x89\xeb\x29\x56\xaa\xa7\x44\x5e\x54\xd5\xa8\x7b\xaf\x75\
\x7e\xbd\xdf\xff\x00\x0a\xe0\xfe\x52\xfd\x8b\xd2\xbd\xc1\xd7\xf8\
\x31\xf2\x7e\x2c\xde\xf9\xea\xce\xc2\xda\x18\x67\xae\xe9\x9c\x44\
\x34\x63\x2d\xb9\x36\x8e\x63\x0d\x8e\x15\x53\x47\xd8\x13\x34\x30\
\x35\x65\x6a\x06\x7d\x24\x28\x37\x3c\x0f\x7e\xeb\xdd\x7c\xbf\xbd\
\xfb\xaf\x75\xf5\x26\xd8\x7f\xf0\xaf\x5f\xe5\x19\xb5\xb6\x2e\xca\
\xdb\x55\x83\xe5\x24\xd5\x9b\x7b\x68\x6d\xac\x25\x63\xc1\xd2\xb8\
\x73\x13\x55\xe2\xf0\xb4\x34\x55\x22\x36\x6e\xc3\x4d\x4a\x26\x81\
\x85\xfe\x86\xdc\x12\x2c\x7d\xfb\xaf\x75\xae\xaf\x7a\xff\x00\xc2\
\x6c\xff\x00\x98\xef\xf3\x0e\xee\xae\xd9\xf9\xef\xf1\xed\xfa\x04\
\x74\x2f\xcd\x3e\xc6\xde\x7f\x2a\x3a\x4f\xfb\xf7\xda\x19\x2d\xb3\
\xbe\x7f\xd1\x2f\x7d\xee\x1c\x87\x67\xf5\xd1\xde\xbb\x66\x9f\x66\
\xe6\x20\xdb\x5b\xb9\xb6\x8e\xe6\xa3\x39\x3c\x72\xd5\xd5\x0a\x0a\
\xd3\x24\x1e\x59\x0c\x7a\xcf\xba\xf7\x41\x4f\xfd\x01\xdb\xfc\xdf\
\x3f\xd5\xfc\x57\xff\x00\xd1\xd7\x98\xff\x00\xed\x79\xef\xdd\x7b\
\xab\xd6\xf8\x07\xfc\xca\x3e\x38\xff\x00\xc2\x6e\xfe\x3c\x63\x7f\
\x96\x4f\xf3\x19\x4e\xc0\x7f\x92\xdb\x5b\x75\xee\x8e\xe2\xca\x1e\
\x83\xda\xf4\xbd\x9f\xd7\xbf\xdd\x0e\xdb\xaa\x87\x2d\xb4\xfe\xdb\
\x75\x64\xb3\x5b\x36\xaa\x6c\xaf\xda\x50\x3f\xdd\x40\x68\x94\x42\
\xd6\x01\xda\xf7\x1e\xeb\xdd\x6b\x53\xff\x00\x0a\x45\xfe\x67\xbf\
\x19\x3f\x9a\x7f\xca\xbe\x8d\xee\x3f\x8b\x83\xb1\x06\xd0\xeb\xef\
\x8f\x94\xdd\x69\xb8\x47\x64\x6d\x3a\x5d\xa3\x94\x1b\x92\x2e\xc7\
\xdf\x7b\xa5\xbe\xc6\x8a\x97\x39\x9d\x4a\x9a\x0f\xe1\x9b\x8a\x9f\
\xf7\x4c\x88\x7c\x9a\x97\x4f\x17\x3e\xeb\xdd\x57\xde\x02\x98\x0d\
\xcd\xb3\xaa\xbe\xc6\x3a\x4a\x19\xf2\x5b\x32\xa9\xe2\x26\x3f\xb1\
\x58\xa6\x93\x16\xf5\x29\x1e\xa2\xe8\x29\x52\x4d\x6a\x41\xbe\x91\
\xc3\x7b\x25\x55\x41\x7b\x02\x91\xda\x5d\x7e\xc2\x2a\x2b\xf9\x74\
\x38\x55\x65\xb7\x62\xb5\xd5\xa3\xfc\x9f\xcb\xab\x95\xf8\xb0\xd3\
\x6e\x0e\xab\xa4\x79\xe4\x8c\xcd\xb9\x3b\x63\x79\xa3\xcb\x1e\x91\
\x18\x5c\xae\xf9\x14\x85\xd0\x25\x91\x02\x44\xc0\xad\xb8\xb0\x1f\
\x8f\x72\xb6\xc5\x11\x93\x6a\x9a\x65\x02\x86\x59\x4f\xdb\xdc\x7a\
\x05\x6e\x4e\x52\xe8\x25\x3b\x84\x69\xfe\x0e\xb6\xe7\xfe\x68\xa9\
\x8d\x3f\x1a\x3a\xcb\x68\x67\xb2\x75\xb4\x1b\x63\x72\x76\xc7\x55\
\x6d\xbd\xc3\x25\x06\x3e\xa3\x31\x59\x90\xa4\xc6\x51\x43\x57\x8f\
\xc7\xc1\x88\xa5\x8e\x7a\x8c\xa4\xd9\x1c\xad\x04\x31\xa4\x28\xac\
\x59\x9c\x7b\x0d\xed\x8b\x1a\x5d\x99\x65\x04\xc6\x8a\x58\x81\xe8\
\x33\xd3\x2e\xae\xf1\x48\x91\x9f\xd4\x60\x40\x35\xa6\x48\xea\xb0\
\x70\x5f\x17\xba\x13\x71\xf5\xac\xbf\x24\x7e\x6c\xf7\x4f\x73\xf5\
\xad\x57\x60\xed\xfe\xc7\xdc\x1f\x1a\xba\x57\xa8\x77\x46\xe5\xd8\
\xf8\xcc\x5e\xd0\xea\xfa\xd5\xc6\xd4\xaf\x61\x67\x36\xe5\x2d\x45\
\x4c\x1b\xe7\x71\xd6\x48\x9f\x72\xb5\x68\x21\xa0\x57\x08\x19\x4a\
\x30\xf6\x87\x98\xb9\xb2\x56\xb9\x6b\xd9\xee\xda\x18\x6b\xa6\x35\
\x52\x45\x7d\x00\xa1\x00\xb1\xe3\xd3\x36\xb6\x36\x3b\x35\xaa\xc5\
\x2c\x08\xf2\x9c\xb1\x60\x0d\x49\xf2\x15\x1f\xe6\xf5\xe9\xab\xa3\
\x3e\x1a\x6e\xbd\xd3\xb5\xb1\xdb\xc7\x78\x61\x77\x6e\x4b\x6f\x64\
\x6b\x69\x33\x1d\x65\x5d\xd8\x74\x6b\x4b\xd9\xd0\xed\x9a\x1f\x32\
\x9d\xad\xd9\x8d\x04\x7f\xc2\x37\x44\x98\x4a\xd9\x40\xa2\xcd\x52\
\xb1\x8b\x33\x8f\x68\x65\x6d\x2c\x08\xf6\x7d\xcb\xfc\xc7\x67\xb9\
\xd8\x5b\xdc\xdf\x9f\x12\x85\x4a\x39\xc3\x30\x1e\x4f\xeb\x43\xc7\
\xd7\x1e\x9d\x23\xbc\xb7\x99\x02\xbe\xcf\x29\x4b\x79\x91\x83\x27\
\xf0\x96\xe3\xa7\xd3\xe5\xe9\x9e\x8d\x6c\xbf\x13\x3b\x03\x78\x2c\
\x7b\x5f\x6a\x55\x63\xb6\xf6\xe3\xdc\x33\xd3\xe2\x30\x9b\x83\x33\
\x8c\xfe\x2f\x87\xc0\xd7\xd6\x4b\x1c\x71\xe5\xeb\xb1\x02\x58\x63\
\xc9\xc5\x8f\x4b\xc8\x29\xd9\xe3\x49\x4a\x85\x2c\x07\x3e\xc5\x57\
\x9c\xdd\x19\xb3\x9d\x6d\x9d\x3c\x7d\x3d\xb5\x15\x15\xff\x00\x2f\
\xcb\xa2\x3b\x7e\x5c\x63\x73\x00\xb8\x0d\xe1\x6a\xcd\x30\x69\xf6\
\xf4\x4a\x6a\xbe\x39\xf4\x96\x63\x70\x74\x4d\x2f\x57\x77\x6f\xca\
\xcd\xcd\xda\x7d\x85\x8c\xae\xc8\x76\x16\xf3\xc9\xe6\x6a\x2a\x73\
\xdd\x44\xa7\x7b\x55\xec\xdc\x1e\xeb\xff\x00\x65\xe7\x19\xb6\x6a\
\x7a\xb7\x75\xf5\x9e\x52\x7a\x45\x6a\x9a\x4a\x4a\x98\xf2\x94\xd8\
\xe9\x5a\x40\xe6\x54\x27\xdc\x3c\x3d\xc2\x76\xde\x62\x81\x37\x29\
\x9a\xe3\xc4\x68\xcb\x0f\x81\x64\x19\xf0\xca\xf0\x35\xf9\x0a\x7c\
\xfa\x13\xb4\x5b\x19\x73\xb6\x7d\x0a\x14\x27\x4d\x47\x93\x7c\xcf\
\xc5\x5f\x9d\x4e\x7a\x20\x3d\x81\xb2\xbb\x27\xaf\x3b\x4b\xb6\xba\
\xe7\xb5\xb6\xee\x1b\x6e\xef\x6d\x85\xd8\x59\xfd\xb5\x9a\x5d\xb7\
\x24\xcd\xb7\xb3\x33\x52\xbc\x72\x41\x9e\xc0\xc1\x55\x24\xd5\x74\
\xd8\xec\xd5\x2c\xa9\x54\xb1\x48\xe4\xc4\x65\x31\x8e\x17\xdc\x9b\
\xb7\xdc\x49\x7f\x6e\x2e\xa4\x8c\x2b\xb3\x1a\xd3\x81\x3e\x64\x7a\
\x67\xa5\x12\x2a\xdb\x18\xed\xd5\xc9\x55\x41\x42\x78\xd3\xc8\x1f\
\xb3\x87\x41\xa5\x60\x9f\x5e\x46\x38\x62\x92\x36\x6a\x5f\x13\xca\
\xaf\x1b\x19\xcc\x90\xc9\x0a\x47\xe2\x67\x02\x28\x82\xcb\x72\xc6\
\xc7\x8f\xa1\xf6\xa6\x48\xaa\x0a\xd3\x24\x1e\xb4\xb2\x15\x2a\x4e\
\x4d\x47\x54\x9d\xd9\x94\x92\x52\x84\x82\x53\x79\x28\xb3\x15\xf4\
\xb2\x1b\x71\xae\x39\x5d\x5a\xdf\xeb\x95\x3e\xe0\x8b\x55\x09\x7b\
\x7b\x19\x19\x0c\x47\xf3\x3d\x4a\x97\x84\x3d\xb5\xab\x8e\x04\x0f\
\xf0\x74\xe3\xf1\xcf\xe2\x9f\x6a\x7c\xe8\xee\xad\x87\xf1\x2f\xa3\
\x9b\x6b\x47\xda\xfd\xc5\x53\x97\xa2\xda\x4d\xbd\xb3\x4f\xb7\x36\
\xb2\xbe\xd8\xc2\x64\xb7\x86\x54\xe5\x73\x70\xd0\xe4\xe6\xa3\x03\
\x0b\x81\x9f\xc2\x12\x9e\x57\x96\x7d\x11\x85\xbb\x0f\x67\x56\xea\
\x04\xf1\x90\x45\x3f\xd8\xe8\x3f\xb9\xff\x00\xb8\x37\x14\xf9\x7f\
\x84\x75\xb7\xf7\xf2\xda\xf9\x19\xd7\x5f\xf0\x95\xde\xb1\xdf\xdf\
\x12\x7f\x9a\x2f\xf7\x86\x4e\xdb\xf9\x19\xbe\xd3\xe4\x67\x5e\xff\
\x00\xb2\xdf\x89\x4e\xdb\xda\xa3\xae\x93\x6f\xe2\xfa\xcc\x7f\x1c\
\xce\xe5\xab\x36\x2c\x98\xfd\xc2\x77\x2e\xcb\xae\xbd\x22\x53\xcc\
\xab\x4d\xe2\x90\xc9\x79\x34\xa9\xb7\x40\xee\xac\x6b\xfe\x83\x12\
\xfe\x50\x7f\xf1\xcb\xe5\x4f\xfe\x89\x4c\x2f\xff\x00\x6c\x4f\x7e\
\xeb\xdd\x57\x27\xf3\x25\xf9\x11\xd7\x9f\xf0\xaa\x3e\xb3\xd8\x1f\
\x13\xbf\x95\xcf\xf1\xf8\xfb\x63\xe3\x7e\xfa\x97\xe4\x47\x62\x7f\
\xb3\x21\x8a\x4e\xa4\xda\xc7\xaf\x27\xc0\x64\xfa\xd9\x7f\x81\x67\
\x31\x35\x9b\xea\x4c\x8e\x7f\xfb\xc9\xbb\xa8\xed\x48\xf4\xf0\xa9\
\xa7\xf2\x49\xe4\xba\x69\x6f\x75\xee\xa9\xbf\xfe\x80\xed\xfe\x6f\
\x9f\xea\xfe\x2b\xff\x00\xe8\xeb\xcc\x7f\xf6\xbc\xf7\xee\xbd\xd1\
\x96\xf8\x7b\xfc\x92\x3e\x69\x7f\x23\xdf\x92\x5d\x5b\xfc\xd4\xbe\
\x6e\x37\x52\xb7\xc5\xaf\x88\x39\x5c\xb6\xee\xed\xb5\xe9\xbd\xf1\
\x5f\xd8\x5d\x94\x71\x7b\xdf\x6c\xe6\xfa\x97\x02\x36\xbe\xcf\xad\
\xdb\x5b\x62\x97\x33\x37\xf7\xbf\xb0\x31\xdf\x70\x1e\xbe\x9c\x43\
\x47\xe5\x9a\xed\xe3\xd0\xde\xeb\xdd\x5b\x57\xce\xbf\xf8\x55\x5f\
\xf2\xaf\xf9\x19\xf0\xa3\xe5\xc7\x41\x6c\x2f\xf6\x65\xa2\xdf\x5d\
\xd1\xf1\xb7\xba\xba\xbb\x65\x9c\xdf\x4f\x62\x28\x30\xed\xbb\x37\
\xd7\x5e\x6e\x0d\xb5\xb7\x53\x2d\x5f\x1e\xfe\xa9\x6a\x0c\x5b\x65\
\xf2\x50\xfd\xcc\xe2\x39\x0c\x30\x6b\x75\x47\x60\x11\xbd\xd7\xba\
\xf9\xbe\x6c\xfd\xaf\x94\xdf\x1b\xbb\x6b\x6c\xac\x27\xda\x8c\xd6\
\xf0\xdc\x78\x4d\xaf\x88\x35\xb3\x8a\x5a\x21\x94\xdc\x19\x3a\x5c\
\x4d\x07\xdd\xd4\x95\x71\x4f\x4b\xf7\x75\x69\xe4\x92\xc7\x42\x5c\
\xd8\xdb\xdf\xba\xf7\x5b\x42\x9f\xf8\x47\x67\xf3\x7b\x0c\x54\x4d\
\xf1\x55\x80\x24\x07\x1d\xd7\x9b\xd2\xc0\x1b\x06\x01\xba\xe8\x3d\
\x8f\xf8\x80\x7f\xc3\xdf\xba\xf7\x5b\x44\x6d\x1f\xf8\x56\x3f\xf2\
\xa6\xe9\x6d\xa7\xb6\x3a\x77\x78\x47\xf2\x69\xb7\x77\x53\xed\xdc\
\x27\x5a\x6e\x93\x8a\xe9\xdc\x4d\x5e\x30\xee\x3d\x89\x8c\xa6\xda\
\xf9\xcf\xe1\xd5\x72\xef\xea\x59\x2a\xa8\x7f\x89\xe2\xa5\xf0\xc8\
\xd1\xc6\x5e\x3b\x31\x55\xbd\x87\xba\xf7\x5a\xeb\x7c\x84\xff\x00\
\x84\xe5\xff\x00\x31\x2f\xe6\x5b\xde\x9d\xbd\xfc\xc2\xfe\x37\xb7\
\x42\x2f\xc7\xdf\x9b\x5d\x8d\xbb\xfe\x51\xf4\x9a\xef\xee\xd0\xc8\
\x6d\xad\xf2\x3a\xaf\xbb\xb3\x95\xbd\x83\xb1\x3f\xbe\x5b\x6e\x93\
\x67\x66\x69\xb6\xf6\xe9\x3b\x6b\x3b\x4c\x6b\xe8\x52\xae\xa9\x68\
\xea\x8b\xc3\xe5\x7d\x1a\x8f\xba\xf7\x40\xf7\xfd\x01\xdb\xfc\xdf\
\x3f\xd5\xfc\x57\xff\x00\xd1\xd7\x98\xff\x00\xed\x79\xef\xdd\x7b\
\xad\xe4\xbf\xe1\x3e\xdf\x00\x7e\x40\x7f\x2d\x6f\xe5\xfb\x0f\xc6\
\xaf\x92\x89\xb2\x13\xb1\xe0\xee\xbe\xcc\xdf\x43\xfb\x81\xb9\x67\
\xdd\x78\x16\xdb\xdb\xa6\x2d\xb7\x1e\x29\xce\x52\x7c\x4e\x19\xd6\
\xb5\xe4\xc5\x4c\x5e\x2f\x11\xd0\x9a\x09\x6d\x4c\x55\x7d\xd7\xba\
\xa9\xbf\xf8\x52\x47\xf2\x33\xf9\xc7\xfc\xd4\x7e\x50\x74\x27\x6b\
\xfc\x5d\x1d\x36\x36\x77\x5c\x74\x24\x9d\x79\xb8\x64\xec\x7e\xc1\
\xae\xda\x59\x5f\xef\x2b\x76\x16\xeb\xdc\x85\x28\xe8\x29\x76\xbe\
\x71\x6a\x31\xe7\x17\x99\xa7\x2b\x37\x90\x13\x20\x91\x4a\xae\x95\
\x2f\xee\xbd\xd6\xba\x3f\xf4\x07\x6f\xf3\x7c\xff\x00\x57\xf1\x5f\
\xff\x00\x47\x5e\x63\xff\x00\xb5\xe7\xbf\x75\xee\xb6\x2c\xff\x00\
\x84\xdc\x7f\x23\x2f\x9c\x9f\xca\xbb\xe5\x1f\x7c\xf6\xcf\xca\x25\
\xe9\xb3\xb3\xbb\x1b\xa0\x87\x5d\xed\xf9\x3a\xe3\xb0\xab\xb7\x6e\
\x57\xfb\xcc\x3b\x13\x68\xee\x55\x4a\xcc\x7d\x56\xd6\xc1\xad\x3e\
\x3c\x62\xf0\x95\x05\xa6\xf2\x92\x24\xf1\xa8\x56\xd4\xc5\x3d\xd7\
\xba\xdc\x9b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7f\xff\xd7\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x53\x3f\xc8\xaf\xf8\x50\x1f\xf2\
\x9c\xf8\xa1\xdd\x7d\x83\xf1\xe3\xbe\x3e\x50\x3e\xc9\xed\xde\xad\
\xcb\x53\x60\xf7\xc6\xd6\x1d\x43\xdd\xbb\x85\x70\xf9\x3a\xbc\x56\
\x3f\x35\x05\x30\xcc\xed\x9e\xbb\xcc\x60\xab\xf5\x63\xb2\x90\x39\
\x6a\x7a\x99\x51\x4b\xe9\x24\x30\x60\x3d\xd7\xba\xf9\xb8\x7f\xc2\
\x8a\xfe\x61\xfc\x76\xf9\xd3\xfc\xcd\x77\xd7\xc8\x3f\x8b\x9b\xff\
\x00\xfd\x25\xf5\x2e\x6b\xab\x3a\x87\x6f\x63\xf7\x4f\xf7\x6f\x75\
\x6d\x4f\x3e\x67\x6d\x6d\x54\xa0\xcd\xd1\x7f\x08\xde\x58\x5c\x06\
\x72\x33\x43\x57\xe8\x2e\xf4\xcb\x1b\xb5\xf4\x16\x02\xe7\xdd\x7b\
\xa2\xc7\xf0\x93\xf9\x3c\xff\x00\x30\xdf\xe6\x29\xd7\x7b\xab\xb5\
\xbe\x20\xf4\x28\xed\x5d\x87\xb2\xf7\xa4\xbd\x7b\xb8\xf3\x8d\xd8\
\xdd\x5d\xb3\x05\x06\xee\x83\x07\x87\xdc\x93\x62\x96\x87\x7d\xef\
\x3d\xb5\x90\xab\x31\x61\xb3\xf4\x73\x19\x61\x8a\x48\x47\x98\x2e\
\xbd\x41\x80\xf7\x5e\xeb\x7e\x6f\xf8\x4a\xb7\xf2\xca\xf9\xb1\xfc\
\xb7\xf6\xb7\xcd\x5c\x67\xcc\x8e\x9c\x5e\xa4\xaa\xed\x7d\xc3\xd1\
\x95\xbb\x02\x31\xbe\xba\xfb\x7a\x9c\xf5\x3e\xd0\xc6\x76\x84\x3b\
\x8e\x5d\x5b\x0b\x74\x6e\x68\xb1\xc9\x8e\x93\x71\xd1\x28\xfb\x96\
\x85\xa5\x32\x9d\x00\x84\x63\xef\xdd\x7b\xad\x80\x3e\x6f\xff\x00\
\x31\x7f\x87\xff\x00\xcb\x97\x68\x6c\x9d\xf9\xf3\x0b\xb5\xdb\xaa\
\x36\xb7\x62\x6e\x5a\xcd\xa1\xb4\x72\x4b\xb3\x77\xd6\xf4\x39\x4c\
\xfd\x06\x2a\x5c\xd5\x5d\x11\xa3\xd8\x9b\x6f\x72\xd7\x51\xac\x58\
\xe8\x59\xfc\xb3\xc7\x1c\x44\xd9\x43\x6a\x20\x7b\xf7\x5e\xea\xb6\
\xbf\xe8\x28\x9f\xe4\x81\xff\x00\x79\x95\x27\xfe\x88\x8f\x91\x5f\
\xfd\xaa\x7d\xfb\xaf\x75\xef\xfa\x0a\x27\xf9\x20\x7f\xde\x65\x49\
\xff\x00\xa2\x23\xe4\x57\xff\x00\x6a\x9f\x7e\xeb\xdd\x16\x8f\x99\
\x9f\xcf\x27\xf9\x61\x7f\x30\x4f\x89\x9f\x23\xfe\x0e\x7c\x4e\xf9\
\x22\xdd\x9d\xf2\x73\xe5\xaf\x4c\x76\x0f\xc7\xbe\x80\xeb\x86\xea\
\xce\xdf\xd9\xe3\x7d\xf6\xf7\x6b\xed\xca\xed\x9b\xb0\x76\x9f\xf7\
\xa7\x7c\xec\x4d\xb5\xb3\xb6\xf1\xce\xee\x4c\xb5\x3d\x3f\xde\x64\
\xf2\x14\x74\x54\xfe\x4d\x72\xca\x88\x09\xf7\xee\xbd\xd6\x90\x9b\
\xa7\xfe\x13\x39\xfc\xe9\x76\x5e\xd7\xdc\x9b\xcb\x72\x7c\x41\x4c\
\x7e\xdd\xda\x58\x0c\xce\xe7\xcf\x57\x8e\xef\xf8\xff\x00\x56\xd4\
\x58\x5c\x06\x36\xa7\x2d\x94\xaa\x5a\x4a\x2e\xd0\xa8\xac\xaa\x7a\
\x7a\x1a\x49\x18\x47\x14\x6f\x23\x91\xa5\x54\xb1\x03\xdf\xba\xf7\
\x54\x37\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xed\xef\xfc\xa7\xff\x00\
\xed\xd8\x3f\xcb\xcb\xff\x00\x14\xb3\xe3\x3f\xfe\xf9\xed\xa3\xef\
\xdd\x7b\xab\x01\xf7\xee\xbd\xd7\xcf\x8f\xfe\x14\x65\xfc\x90\xff\
\x00\x99\xaf\xcf\x0f\xe6\x61\xba\xbb\xfb\xe2\xdf\xc7\x25\xec\xae\
\xa6\xc8\x74\xff\x00\x52\xed\x8a\x2d\xd4\x7b\x4b\xa8\x36\xa0\x9f\
\x37\xb6\xf1\x35\xf4\xb9\xaa\x2f\xe1\x1b\xcf\x7d\xed\xec\xdc\x6d\
\x45\x51\x2a\x8d\x6d\x4d\xe2\x70\x41\x46\x6e\x6d\xee\xbd\xd6\x9e\
\x7f\x37\x3f\x97\xc7\xcb\x5f\xe5\xd5\xd8\x1b\x53\xab\xbe\x5f\xf5\
\x6a\xf5\x4e\xf8\xde\xfb\x36\x3d\xff\x00\xb6\x70\xcb\xbc\x36\x46\
\xf3\x19\x1d\xa9\x26\x6f\x2d\xb7\x57\x25\xfc\x43\x62\x6e\x3d\xcb\
\x8d\xa5\x6f\xe2\xf8\x3a\x98\x8c\x33\x4d\x1c\xe3\xc7\xab\x46\x96\
\x56\x3e\xeb\xdd\x08\x18\xe9\xd6\xab\x19\x45\x2c\x68\x18\xc7\x43\
\x46\xb2\x42\x49\xd0\xcc\x29\x21\xb8\x03\xf0\x25\x0b\xc9\xfa\xfb\
\x0c\x12\x75\x13\x5c\xd4\xff\x00\x87\xa9\x16\x33\x58\xd1\x87\xc5\
\xa4\x7f\x83\xab\x8b\xe8\xfc\x86\x13\x1b\xd1\x38\xfa\xdd\xa5\x91\
\x85\xa9\xa4\xc8\x64\xf3\xb4\xb0\x51\x03\x0b\x61\x72\xa2\xa6\x9b\
\x27\x90\xc1\x45\x1c\x96\x74\xa8\xc6\xcf\x49\x21\x43\xfd\xa4\x2a\
\x79\xe7\xdc\xe9\xcb\x02\xd2\x4d\x9e\xdc\xdb\x30\x31\x48\x4e\x3f\
\x85\x8f\xc4\xb4\xf9\x1a\x9f\xb0\xf5\x19\x6f\x6d\x70\xb7\xd2\x78\
\xc8\x56\x40\x05\x7e\x60\x70\x3f\x98\xeb\x6a\xaf\xe6\x73\xb9\xaa\
\xf7\xdf\xc1\x1e\x9d\xec\xdd\xa8\x95\x6b\x49\x26\xe2\xea\x5d\xf9\
\x0d\x72\x4b\xa6\xa7\x0c\x93\x6d\xd8\x67\xc7\xd7\x54\x4f\x4e\xdf\
\xb3\x2a\xe4\xc2\x23\xb2\x30\x65\x66\x36\xe7\xd8\x63\x69\x85\x57\
\x76\xb8\xb3\x92\xbd\xcb\x22\x75\x76\x90\x08\x96\x55\xe1\x83\xd1\
\xc2\xeb\x8c\xaf\xc7\xdf\x91\xbd\x0f\xd6\x5b\xaf\x0d\x89\xdb\xd9\
\x5c\xa4\x98\x21\x90\xa8\x07\x14\x45\x1e\xdf\xdd\xb9\xf8\x28\x8f\
\x65\x61\xaa\x69\x6a\x61\x2d\x2e\x37\x35\x5b\x4a\xef\x35\x3c\xb1\
\xda\x79\x34\x4c\x58\x8f\x71\x47\x32\x58\x41\x3a\x4b\xb3\x6e\xf0\
\xbe\xa8\xa6\xd4\xad\x5a\x1c\x1c\x32\xb0\xe2\x08\xe8\x73\x07\x28\
\x37\x30\x47\x0d\xef\xd4\x27\xee\xf3\x43\x45\x3d\xd5\xa7\x0f\x91\
\xe8\x42\xdd\xbd\x51\xbd\x77\x36\xd1\xc2\xec\xdd\xbf\x51\x48\xbb\
\x5f\x6c\x0a\xe8\xf1\xbf\x73\x9d\xc8\x4b\x93\xac\xc4\x4b\x21\xaa\
\xa3\xc1\x3c\x53\xa9\x14\xb4\x18\xc2\x0a\x52\xd3\x42\xcb\x4f\x1a\
\xe9\x54\x55\x03\xd9\x7c\x7e\x34\x16\x76\xf6\x36\x83\x4d\xa4\x4b\
\x45\xee\x35\xa7\x1c\xfa\xe7\xa3\x3b\x4d\xb3\x67\xd8\xe5\x60\x4b\
\xb8\x14\xd2\x18\x57\x4f\xd8\x7c\xff\x00\x3e\xb1\xf5\x8f\x43\xef\
\x9e\xbe\xcd\xe3\xf7\x2a\xee\x2c\x6e\x3a\x9a\x9a\xa2\x9a\xb2\x6c\
\x49\x15\x39\x88\x32\x49\xe2\x3a\xe2\xaa\xa4\x99\xa3\x86\x09\xe1\
\x0d\xa4\x35\xc3\x2b\x0b\x83\xc5\x8b\x96\xb2\x5f\x40\xe9\x28\x94\
\xd0\x66\x95\xff\x00\x08\xe9\xcb\xc9\xb6\x9d\xc1\x1a\x01\x68\x7c\
\x42\x30\xc0\x05\x23\xec\xe9\xfb\x03\xb6\x3a\x77\xa8\xf2\xb4\x79\
\x2c\x56\xc0\xc3\x62\xe0\xdb\x3f\x75\x96\xa5\xcb\xc1\x0d\x64\x79\
\x1c\x05\x1d\x34\xd3\xe4\x5e\x93\x1b\x5f\x05\xea\x66\xa0\xa7\x9d\
\xe4\x7a\x7a\x0d\x4e\x8d\x23\x95\x54\x62\xc7\xda\x0b\x7b\x2d\xbe\
\x1d\xc3\xf7\x92\x58\x29\xbb\x69\x4b\xf1\x34\xf1\x0f\xe2\x00\x9a\
\x03\xf6\xf4\x93\xfa\x87\x61\x2c\x0d\x75\x04\x85\x66\x19\x2c\x4d\
\x7f\x97\xf8\x69\xd6\xa6\x5f\x2e\x77\xeb\xf6\x57\xc9\xbe\xf4\xdf\
\xef\x82\xc8\xed\x98\xb7\x5e\xfc\xac\xc9\xd1\xe1\x33\x3c\x65\xa8\
\xe8\x3e\xd2\x8e\x9e\x89\xb2\x11\x59\x4d\x34\xf5\xb4\xd0\x2c\xe2\
\x16\x01\xe1\x12\xe8\x70\x18\x11\xef\x24\x36\x78\x3c\x3d\xaa\xc6\
\x84\x35\x52\xa4\x8e\x15\x39\x3f\xb0\xe3\xa8\xda\xf2\xb1\xcf\x32\
\x39\xf8\x18\xaf\x0a\x70\xf3\xa7\x45\x42\x79\x2a\x4d\x6c\xc6\x9d\
\x29\xca\x9a\x75\xf1\xf9\x2e\xbe\x5a\xb0\xcd\xa5\x26\x71\xc8\x84\
\x27\x03\xf2\x09\xf6\x60\x47\x0a\x74\xcd\x6a\x99\x3e\x7d\x53\xa7\
\xc8\x2c\x1e\xdc\xa4\xcc\xe7\x32\x3b\x73\x71\x31\x11\xe7\xa5\x8b\
\x2f\xb2\x73\xbe\x6a\x5d\xcb\xb7\xb2\xd2\x49\x27\xdd\x47\x02\x48\
\x9e\x1c\xb6\x2c\xbb\x6b\x49\xe3\x6b\x84\x60\x0f\xf5\xf7\x10\xee\
\xf6\x76\x36\xf7\xd3\xcd\x69\x28\xd4\xce\x75\xc6\x41\x0e\xa6\xb9\
\xf9\x15\xf4\x23\xa1\xf5\x8d\xdd\xcc\xd0\x45\x1d\xc5\x58\x2a\x8d\
\x2c\x32\xa4\x79\x7d\x87\xd7\xa3\x23\xfc\x9f\xbe\x46\xf4\xdf\xc4\
\x6f\xe6\x51\xf1\x6b\xe4\x8f\xc8\x3d\xde\x76\x1f\x4c\x75\x86\x67\
\x7d\x55\xef\x7d\xe5\xfc\x13\x3b\xb8\xff\x00\x83\x43\x9f\xeb\x6d\
\xdd\xb6\x70\xee\xd8\x4d\xb1\x8e\xcb\xe7\xeb\x56\xab\x3b\x97\xa7\
\x80\x8a\x6a\x69\x9a\x31\x26\xb2\xba\x54\x9f\x68\xe0\xd3\xf5\x11\
\x91\xc7\xfd\x8e\xb7\xb9\x11\xf4\x13\x9a\xe3\x1f\xe1\x1d\x5d\xaf\
\xf3\xb3\xe8\xce\xd1\xff\x00\x85\x15\xf7\xb7\x51\x7c\x96\xfe\x50\
\x1b\x67\xfd\x9a\xde\x95\xe8\xde\xa4\x93\xa3\x7b\x3f\x79\x3e\x57\
\x11\xd3\x3f\xdd\xae\xd1\x3b\xcb\x70\x6f\xdf\xee\xc1\xc2\x77\xb5\
\x77\x5a\x67\xf2\xa7\xfb\xa7\xbb\x31\xf5\x62\xaa\x8a\x9a\xa6\x8e\
\xd3\xf8\xcc\xa2\x44\x64\x06\xdd\x03\xfa\xd5\x6f\xe7\x3f\xf2\xbe\
\xf9\xbd\xfc\xb7\x24\xeb\x48\xbe\x64\x74\xd7\xfa\x25\x6e\xde\x8f\
\x75\xc9\xd7\xda\x77\xcf\x5e\xef\x54\xcf\x2e\xc8\x6d\xbe\x9b\x98\
\x79\x36\x16\xe9\xdc\xc9\x8f\x7c\x69\xdd\x34\x17\x5a\x93\x09\x90\
\x54\x02\x9a\xac\xd6\xf7\x5e\xea\xde\xff\x00\xe1\x2d\xff\x00\xcc\
\x33\xe2\x2f\xf2\xe9\xf9\x55\xf2\x37\xb2\x7e\x60\x76\xa9\xea\x8d\
\x9d\xbe\xfe\x3e\x53\x6c\x8d\xab\x96\x1b\x37\x7c\xef\x3f\xe2\x9b\
\x9a\x3e\xc7\xda\x79\xe7\xc6\xfd\x96\xc4\xdb\x9b\x97\x21\x48\x46\
\x2b\x1b\x34\xbe\x59\xa2\x8e\x13\xa3\x4e\xbd\x45\x54\xfb\xaf\x75\
\xbb\xef\xfd\x05\x13\xfc\x90\x3f\xef\x32\xa4\xff\x00\xd1\x11\xf2\
\x2b\xff\x00\xb5\x4f\xbf\x75\xee\xaa\xc7\xf9\xd9\x7f\x3f\xaf\xe5\
\x43\xf2\xe7\xf9\x5b\xfc\xb9\xf8\xe9\xd0\x1f\x27\x9f\x7c\xf7\x07\
\x67\x6d\x1d\x9b\x8b\xd9\x3b\x4c\xf5\x17\x75\xed\xef\xe3\x35\xd8\
\xae\xd5\xd8\x7b\x96\xba\x1f\xe3\x3b\x9f\xaf\x30\xd8\x1a\x11\x06\
\x1f\x09\x53\x2e\xaa\x8a\x98\x95\xbc\x7a\x54\x97\x65\x53\xee\xbd\
\xd7\xce\x73\xa8\x7a\xa3\x7e\xf7\xbf\x6a\xf5\xc7\x4a\x75\x66\x09\
\xb7\x3f\x65\xf6\xd6\xf8\xda\xfd\x73\xb0\x36\xe2\x56\xe3\xf1\xad\
\x9e\xde\x3b\xcb\x33\x47\xb7\xf6\xe6\x21\x72\x39\x6a\xaa\x1c\x5d\
\x09\xc8\x65\xab\xe2\x8b\xcb\x51\x34\x50\x47\xab\x53\xba\xa8\x24\
\x7b\xaf\x75\xb0\x37\x4d\x7f\xc2\x66\x3f\x9d\x5e\xcf\xee\x1e\xa7\
\xdd\x79\xdf\x87\xa9\x4b\x84\xdb\x3d\x9b\xb0\xb3\xd9\x8a\xc5\xef\
\x1f\x8f\xb5\x02\x93\x15\x88\xdd\x78\x9a\xfc\x8d\x59\x82\x97\xb4\
\x67\xaa\x95\x29\x68\xe9\xde\x46\x58\xe3\x79\x0a\xa9\xd2\xac\xd6\
\x07\xdd\x7b\xaf\xad\x6f\xbf\x75\xee\xbe\x49\xdd\xc7\xff\x00\x09\
\x99\xfe\x75\x7b\xb7\xb7\x3b\x5f\x75\xe0\xfe\x1d\xad\x5e\x17\x71\
\xf6\x56\xfd\xcf\x61\xea\x7f\xd3\x8f\xc7\xc8\x0d\x66\x2f\x2b\xba\
\xb2\xd5\xf8\xfa\xa4\x82\xab\xb4\xa0\xa9\x89\x6a\xe9\x27\x47\x55\
\x91\x23\x90\x06\x1a\x95\x4d\xc0\xf7\x5e\xeb\xe9\xaf\xfc\xb5\xfa\
\x8f\xb0\x7a\x0b\xf9\x7d\x7c\x2d\xe9\x1e\xd8\xc0\xae\xd7\xec\xee\
\xa6\xf8\xc9\xd3\x1d\x7d\xbf\xf6\xe2\xe4\xb1\x99\x95\xc1\x6e\xed\
\xa9\xb0\xf0\x98\x6c\xf6\x29\x72\xd8\x5a\xba\xfc\x46\x48\x50\xe4\
\xa9\x24\x8f\xcd\x4d\x3c\xb0\x49\xa7\x52\x3b\x29\x07\xdf\xba\xf7\
\x45\x2b\xe4\xaf\xf3\xf7\xfe\x54\x9f\x10\xbb\xc3\x7f\x7c\x71\xf9\
\x05\xf2\x71\xf6\x2f\x70\xf5\x8d\x66\x2b\x1f\xbd\x76\xa2\xf5\x1f\
\x75\x6e\x35\xc3\xd5\xe6\xf6\xfe\x27\x74\xe3\x61\x19\xbd\xad\xd7\
\xb9\x9c\x0d\x71\x9f\x07\x9c\xa5\x98\x9a\x7a\x99\x42\x79\x74\x31\
\x0e\xac\xa3\xdd\x7b\xa3\xcb\xf0\xe7\xe6\xbf\xc6\xbf\x9f\x3d\x3c\
\x3b\xef\xe2\xa7\x61\x1e\xcd\xea\xb6\xdd\x59\xdd\x96\x37\x2b\x6d\
\x9d\xd9\xb4\x9b\xfb\xc9\xb6\xd6\x86\x4c\xc6\x3d\xb1\x1b\xcf\x09\
\xb7\xf3\x4b\xf6\xd1\xe4\xa0\x61\x21\xa7\x11\x48\xb2\x02\xac\x79\
\xb7\xba\xf7\x46\xab\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xff\xd0\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7c\xad\xbf\x9e\x7f\xf2\xa1\xfe\x65\x3d\
\xf5\xfc\xd9\x3e\x6a\xf6\xef\x4d\x7c\x21\xf9\x1f\xd9\x5d\x63\xbd\
\xbb\x23\x03\x91\xda\x3b\xe7\x68\x75\xa6\x77\x33\xb6\xb7\x1e\x3e\
\x9b\xae\x76\x56\x32\x6a\xdc\x46\x52\x92\x09\x29\xab\x69\x92\xbe\
\x82\x68\x8b\x23\x1b\x3c\x6c\xa6\xc4\x11\xef\xdd\x7b\xaa\x9c\xff\
\x00\x86\x43\xfe\x6e\xff\x00\xf7\xae\x8f\x96\x5f\xfa\x28\x77\x2f\
\xff\x00\x52\xfb\xf7\x5e\xeb\x73\x7f\xf8\x4d\xa7\x6b\x75\xa7\xf2\
\x84\xf8\x9f\xde\x3d\x1f\xfc\xcf\xf7\xce\xda\xf8\x25\xdc\x3d\x95\
\xf2\x1e\xb3\xb5\x76\x1f\x5a\x7c\x97\xc9\x45\xd5\xfb\xc7\x76\x75\
\xac\xdd\x6d\xb0\x36\x8d\x3e\xfa\xc1\xe1\xf7\x0f\xdb\x4f\x90\xdb\
\x55\x1b\xa3\x6c\x64\xb1\xe9\x53\x1e\xa4\x35\x54\x13\x21\xb1\x4e\
\x7d\xd7\xba\xdb\x57\xe3\x57\xcd\x7f\x89\x5f\x31\xe9\xf7\x7d\x5f\
\xc5\x7f\x90\xdd\x55\xdf\x94\xdb\x02\x7c\x2d\x36\xf5\x9f\xac\x37\
\x6e\x37\x74\xc7\xb6\x27\xdc\x71\xe4\xa6\xc1\x45\x98\x6c\x7c\x92\
\x0a\x36\xcb\x47\x87\xaa\x30\x6a\xff\x00\x39\xf6\xf2\x5b\xf4\x9f\
\x7e\xeb\xdd\x6a\x71\xff\x00\x0b\x73\xff\x00\xb2\x3c\xf8\x61\xff\
\x00\x8b\x2b\xba\xbf\xf7\xd7\x65\xfd\xfb\xaf\x75\xf3\xdc\xf8\xff\
\x00\xf1\xaf\xbf\x3e\x55\xef\xff\x00\xf4\x57\xf1\xbf\xa8\xf7\xd7\
\x75\xf6\x3f\xf0\x4c\x9e\xe5\xfe\xe5\xf5\xe6\x06\xaf\x71\xee\x1f\
\xe0\x18\x66\xa6\x4c\xae\x5b\xf8\x75\x12\x3c\xdf\x63\x42\xf5\xb0\
\xac\x8f\x6b\x2b\x48\xa3\xea\x47\xbf\x75\xee\x8e\xf7\xfc\x32\x1f\
\xf3\x77\xff\x00\xbd\x74\x7c\xb2\xff\x00\xd1\x43\xb9\x7f\xfa\x97\
\xdf\xba\xf7\x47\x2f\xf9\x75\xff\x00\x2c\x8f\xe6\x13\xf1\x2f\xe7\
\x97\xc3\xdf\x93\xbf\x25\x7e\x1c\x7c\x80\xe9\x3f\x8f\x9d\x07\xf2\
\x37\xa9\x3b\x67\xba\xbb\x83\xb1\x3a\xf7\x31\xb6\xb6\x17\x58\x75\
\x96\xc6\xde\x78\x9d\xc1\xbc\xf7\xe6\xf3\xdc\x39\x18\xa1\xa0\xc2\
\x6d\x8d\xad\x81\xa1\x9e\xb2\xb6\xaa\x56\x09\x0d\x3c\x2c\xc6\xf6\
\xb1\xf7\x5e\xeb\xe8\x5f\xf2\x3b\xf9\xcf\x7f\x29\xfd\xd3\xf1\xe7\
\xbe\x76\xce\x03\xf9\x84\x7c\x55\xca\x67\x77\x0f\x4b\xf6\x96\x13\
\x0b\x8c\xa3\xed\x9d\xb9\x3d\x5e\x47\x2b\x95\xd8\xd9\xda\x1c\x75\
\x05\x24\x11\xd4\x34\xb5\x15\x55\x95\x73\xa4\x71\xc6\x81\x9d\xdd\
\x82\xa8\x24\x81\xef\xdd\x7b\xaf\x8d\xcf\xbf\x75\xee\xbd\xef\xdd\
\x7b\xaf\xb7\xbf\xf2\x9f\xff\x00\xb7\x60\xff\x00\x2f\x2f\xfc\x52\
\xcf\x8c\xff\x00\xfb\xe7\xb6\x8f\xbf\x75\xee\xb1\x76\xdf\xf3\x5f\
\xfe\x5a\xfd\x0b\xd8\xdb\xab\xa8\x7b\x9f\xe6\xe7\xc7\x3e\xb3\xec\
\xfd\x8f\x5b\x06\x3b\x77\xec\x5d\xe3\xd9\x38\x2c\x2e\xe5\xdb\xb5\
\xf5\x54\x14\x99\x4a\x7a\x4c\xae\x32\xae\x74\x9e\x92\x79\xb1\xd5\
\xf0\xcc\xaa\xc2\xe6\x39\x54\xfe\x7d\xfb\xaf\x74\x1c\xff\x00\xc3\
\xde\x7f\x28\x8f\xfb\xd8\xbf\xc4\xdf\xfd\x1b\xdb\x6b\xff\x00\xaa\
\xbd\xfb\xaf\x75\xa6\x4f\xfc\x29\x2b\xaa\xbb\x2b\xf9\xbe\x7c\xb0\
\xe8\xde\xee\xfe\x57\xfb\x1b\x72\xfc\xed\xe9\xfe\xb5\xf8\xf3\x49\
\xd5\x5b\xf7\xb2\xfe\x34\x63\x65\xec\xfd\x9d\xb4\xfb\x2a\x1e\xc9\
\xdf\xdb\xba\x7d\x8d\x9c\xcc\xed\xff\x00\xb8\xa7\xc7\xee\x5a\x7d\
\xaf\xb9\xb1\xb5\xef\x4d\x26\x97\x14\xb5\xd0\xb8\xb8\x7e\x3d\xd7\
\xba\xd6\x0f\x19\x4b\x97\xc3\x39\xa3\xad\xa1\xa8\xa2\xad\xa0\x92\
\x4c\x26\x67\x1d\x56\xa6\x2a\xcc\x5e\x63\x16\x64\xa0\xc9\xd0\xd5\
\xd3\x9b\xbc\x55\x38\xdc\x85\x1c\xb0\x4c\x07\xe8\x95\x08\xf6\x15\
\x90\xf7\x38\xad\x18\x1e\xa4\x48\x55\xd4\x46\x74\xd4\x69\x1f\xe0\
\xea\xc3\xfa\x03\x76\x45\x8c\xd9\x99\x0d\xb6\xc2\x38\x5a\x87\x3b\
\x89\xdd\xeb\x4c\x19\xb5\xd7\x62\xab\x20\x93\x1d\x9d\x82\x26\xb9\
\x2e\xb0\x89\x11\x8a\x00\x0e\x82\x6f\xec\x6d\xc8\xfb\xc9\x16\xf7\
\xf6\x4e\xdf\xab\x0c\xcb\x2a\x8f\x55\xa6\x97\xfd\x9c\x7a\x0e\x73\
\x46\xdb\xfa\x96\xb7\x88\x87\xc2\x92\x32\x8d\x9f\xc5\xc4\x75\xb4\
\x1f\xc5\xce\xcc\xa1\xf9\x43\xfc\xb0\x3b\xb7\xe3\x24\xb9\x15\xae\
\xed\x2f\x8e\xd8\x47\xcb\xe1\x31\x2b\x53\x1d\x2d\x6e\x6b\xaf\xf1\
\xb9\x24\xdc\x9b\x57\x34\x9e\x4b\x9a\x8a\x0c\x70\x5a\x8a\x69\xc0\
\xd6\xf7\x45\x04\xfa\x87\xb1\x6e\xe4\xb1\xd9\x6f\xf6\x7b\x84\x59\
\x82\x7a\x37\xe6\xd8\x3f\xb7\xa0\x65\xa9\x69\x2d\x24\x81\x85\x24\
\x42\x57\xfc\xdd\x5b\x87\xc0\x6e\xec\xeb\xbf\x90\xff\x00\x1c\xb6\
\x2d\x76\xdc\xaa\xc3\xae\xec\xd8\x98\x6c\x76\xc8\xec\x4d\xaf\x47\
\x4d\x47\x8f\xcb\x60\xb7\x16\xdf\xa6\x4a\x21\x51\x5b\x8b\x80\x2d\
\x40\xa1\xcb\x50\xc7\x1c\xd4\xd5\x2c\x08\x99\x1b\xeb\x7b\x8f\x70\
\xef\x32\x58\xcf\xb6\xef\x57\x71\x5c\x54\xa1\x72\xc8\x6b\x51\x46\
\x35\x1f\x2f\x3e\x1d\x49\xfb\x56\xe2\xf2\x59\x45\x25\xb9\xa5\x14\
\x03\xe5\x91\x8e\x03\xa3\x15\xda\xdb\xf3\x23\xb2\xa9\xb6\xc6\x23\
\x69\xd2\xfd\xee\xe8\xdc\x19\x7a\x45\xc4\xd3\x07\x51\x13\xc7\x4d\
\x5b\x4f\x1d\x45\x3d\x5c\x56\x69\x66\x83\x23\x1c\x8f\x17\xa4\x0d\
\x3c\xb5\xfd\x3e\xd3\x59\x5b\xfd\x6f\x8c\xcf\x28\x8e\xda\x30\x0b\
\x1a\x67\xec\x1d\x37\x7d\x7c\x63\x31\xab\xc5\xe2\x4d\x21\x20\x0f\
\xf2\x93\xf2\xe8\x55\xc2\x52\xe4\xe9\xf1\xd3\x54\xee\x29\xe1\x6c\
\xf6\x59\xd2\xb3\x2d\x49\x45\x53\x53\x57\x8a\xc4\xca\x23\x09\x1e\
\x27\x0c\xd5\x2a\x8f\xf6\x34\xaa\x2e\x5c\xa8\x32\x4a\xcc\xdf\x4b\
\x7b\x67\x42\xa3\x3b\x2b\x31\x52\x71\x5f\x4e\xbc\x8c\xcc\x62\xaa\
\x01\xa0\x7e\xd3\xf6\xf4\x81\xec\x8d\xd5\xb4\xba\xe3\x67\x6e\x7e\
\xc5\xdd\x75\x14\x34\x58\x3d\x9f\x87\xaf\xdc\x15\x35\x15\xef\x4f\
\x0c\x4d\x53\x8b\xa7\x92\xa6\x8a\x9e\x98\xd4\xb2\xc5\x25\x75\x45\
\x5c\x68\x90\xa7\xd5\xa4\x60\x3f\xc7\xdb\x42\x26\xbd\xb9\xb7\xb5\
\x83\x32\x4a\xe1\x40\xf5\x24\xd3\xa5\xc2\xee\x74\x82\x52\x58\x88\
\xd5\x49\x39\xe0\x07\xaf\x5a\x39\xef\x7d\xdf\x57\xbc\x37\x5e\xf7\
\xdd\x59\x16\x53\x96\xdc\x99\x8c\xee\xef\xc9\x20\x43\x19\x8e\x6d\
\xc1\x5f\x5d\x92\x88\x34\x61\x99\x61\xf4\xbd\x88\xb9\x0a\x57\xfa\
\x7b\xc9\x88\xad\xd6\xd6\xd2\x0b\x18\xf0\x61\x89\x45\x3e\xc1\x4f\
\xf0\xf5\x12\xcb\x21\xb9\x79\x66\xad\x5d\xdc\x9f\xb7\x3f\xe6\xe8\
\x06\xa7\xdf\x14\x84\xd4\x28\x99\x24\x9a\x8e\x8b\x0d\xe4\xb4\x8a\
\xf4\xe2\x4c\x94\xcb\x18\x89\xe5\x1e\xaf\xbb\x42\x4d\xc7\xd2\xd6\
\xf6\x5f\x25\xec\x0a\x59\x55\xaa\x54\x0a\xfc\xaa\x69\x4f\xb7\xab\
\xc5\x04\x8b\x97\xad\x09\x3f\xcb\xa2\x0d\xf3\x53\x03\x4f\x47\xbb\
\xa8\xb7\x05\x2c\x4b\x19\xcf\xe2\xa9\x6a\x2b\x59\x23\xd2\xad\x59\
\x47\x51\x25\x09\x91\xa4\xfd\x2f\x2c\xf0\x85\x24\x7e\x00\xf7\x1e\
\x73\x74\x29\x1e\xeb\x04\xca\x73\x2c\x79\xfb\x54\xd0\xff\x00\x2a\
\x74\x33\xe5\xf9\x0b\x58\x4c\x84\x62\x37\xc7\xd8\xdc\x3f\x9f\x45\
\x13\x69\xf4\xf7\x69\xfc\x82\xcc\xe3\xba\x6f\xa4\x36\x16\xe8\xed\
\x2e\xd5\xde\xd2\x4f\x49\xb4\x7a\xfb\x65\xe2\xea\x33\x7b\xa3\x71\
\x4f\x8a\x86\x4c\xd6\x4d\x71\x38\xaa\x60\xd3\xd5\x1c\x7e\x22\x82\
\x7a\x99\x74\x8f\x44\x31\x33\x1e\x07\xb2\x28\x4d\x6e\x23\x06\x98\
\xf3\xfc\xba\x5b\xb9\x11\xf4\x33\x81\xf2\xff\x00\x08\xeb\x79\x2f\
\xf8\x4d\x8f\x67\x75\xe7\xf2\x82\xf8\xc1\xdf\x9d\x35\xfc\xd0\x77\
\x9e\xde\xf8\x23\xdb\x1d\xa1\xdf\x49\xd9\xbd\x7b\xd7\x9f\x26\x32\
\x11\x75\x7e\xeb\xde\x1d\x78\x9d\x7b\xb4\xf6\xa9\xde\x78\x0c\x4e\
\xe1\xfb\x69\xf2\x3b\x78\xee\x4c\x25\x6d\x0f\xdc\x47\xa9\x3e\xe6\
\x96\x54\x36\x2b\xec\xd7\xa0\x7f\x45\xe3\xfe\x14\xcf\x4b\x51\xfc\
\xe3\x32\x3f\x0e\xeb\x7f\x95\x7c\x4f\xf3\xee\x97\xa0\xe8\xbb\xc2\
\x97\xbb\x67\xf8\xbc\xad\xda\x91\xf5\x55\x47\x63\x4f\xd5\x92\xf5\
\xf4\x5b\xdd\xf6\xf0\xa8\x4c\x23\xef\x58\xf6\x66\x64\xe3\x84\x86\
\xf5\x03\x15\x53\xf4\xf1\x8d\x5e\xeb\xdd\x69\xa9\xf2\x3f\xf9\x7c\
\xfc\xdd\xf8\x81\xb6\x30\x1b\xd3\xe5\x0f\xc5\xbe\xe8\xe8\x8d\xa7\
\xba\x73\xcd\xb5\xf6\xee\xe0\xec\xcd\x93\x95\xda\xf8\xbc\xce\xe1\
\x5c\x7d\x4e\x59\xb0\xf4\x15\x59\x08\xa3\x49\xeb\xff\x00\x86\xd1\
\x4d\x3f\x8c\x72\x63\x89\x8f\xf6\x4f\xbf\x75\xee\x82\x6e\x81\xf8\
\xe1\xdf\x3f\x2a\x3b\x02\x2e\xa9\xf8\xe3\xd4\xdb\xe7\xba\x7b\x22\
\x6c\x3e\x53\x70\x45\xb2\xba\xf7\x05\x57\xb8\xb7\x14\x98\x4c\x2a\
\xc2\xf9\x5c\xa2\xe3\xa8\x91\xe6\x34\x74\x0b\x51\x1f\x91\xed\x65\
\xd6\xa3\xea\x47\xbf\x75\xee\x8c\xcf\x6f\x7f\x2a\x4f\xe6\x4b\xd0\
\x3d\x71\xba\x3b\x7f\xba\xbe\x12\xfc\x8b\xeb\x0e\xaf\xd9\x34\xb4\
\x95\xdb\xbb\x7e\x6f\x2e\xb6\xce\xe1\x36\xce\xdd\xa3\xae\xc9\x51\
\x61\xe8\xea\x72\xb9\x4a\xb8\x12\x9e\x92\x1a\x9c\xa6\x46\x0a\x74\
\x66\x20\x19\x65\x55\xfa\x91\xef\xdd\x7b\xa4\xd7\xf2\xcf\xde\xfb\
\x37\xac\xff\x00\x98\x9f\xc1\x8e\xc4\xec\x4d\xcf\x86\xd9\x3b\x0b\
\x62\xfc\xb4\xf8\xfd\xbb\x77\x9e\xf0\xdc\x75\x62\x83\x01\xb5\xb6\
\xbe\xdf\xed\x1d\xb1\x94\xce\xee\x0c\xd5\x73\x2b\x2d\x1e\x2f\x13\
\x8d\xa5\x92\x79\xe5\x20\x84\x89\x09\xfc\x7b\xf7\x5e\xeb\xeb\x9a\
\x7f\x9d\xe7\xf2\x88\x1c\x7f\xc3\x8b\xfc\x4d\xe3\xfa\x76\xf6\xd9\
\x3f\xef\x22\xaa\xc7\xdf\xba\xf7\x5d\x1f\xe7\x7b\xfc\xa2\x00\x24\
\xff\x00\x31\x6f\x89\xdc\x73\xc7\x6e\xed\xb2\x7f\xd8\x01\x52\x49\
\xf7\xee\xbd\xd5\x9e\x62\x32\xd8\xcc\xfe\x27\x19\x9d\xc2\xd7\x53\
\x64\xf0\xf9\xac\x75\x16\x5b\x13\x92\xa3\x95\x67\xa3\xc8\x63\x32\
\x34\xd1\x56\x50\x57\x52\x4c\x84\xa4\xd4\xd5\x74\xb3\x24\x91\xb0\
\xe1\x95\x81\x1e\xfd\xd7\xba\xaf\x2d\xfd\xfc\xdf\xff\x00\x95\xe7\
\x56\x6f\x8d\xdf\xd6\x9d\x8d\xf3\xc3\xe3\x36\xca\xdf\xfb\x07\x71\
\xe6\x36\x86\xf4\xda\x1b\x8b\xb4\x36\xfe\x37\x3b\xb6\x77\x46\xdf\
\xae\x9b\x1b\x9b\xc1\x66\x28\x27\xa8\x59\xa8\xf2\x58\xbc\x85\x3c\
\x90\xcf\x13\x0d\x51\xc8\x8c\xa7\x90\x7d\xfb\xaf\x75\xf3\xa9\xfe\
\x72\x9f\x02\xfe\x65\xff\x00\x30\x3f\xe6\x5b\xf2\x93\xe6\x0f\xc2\
\x2f\x8d\x5d\xbf\xf2\x9f\xe2\xdf\x75\x6e\x0d\x89\x96\xea\x6e\xfb\
\xe9\x4d\x99\x97\xde\xfd\x61\xd8\x38\xfd\xb7\xd4\xbb\x03\x63\xee\
\x2a\xad\xab\xba\x71\x94\xef\x41\x97\x87\x07\xbc\xf6\xbe\x4b\x17\
\x52\xd1\x33\x2c\x75\xb4\x33\x47\x72\x52\xfe\xfd\xd7\xba\xdd\x13\
\xfe\x12\xe7\xf1\xc7\xbe\xfe\x2c\xff\x00\x2b\xba\x6e\xab\xf9\x1f\
\xd4\x3b\xf7\xa4\xfb\x1a\x1f\x90\xbd\xbd\x9f\x3b\x2f\xb1\xf6\xfd\
\x5e\xda\xdc\x2d\x82\xcb\x41\xb4\x97\x19\x98\x5c\x65\x72\xa5\x48\
\xc7\x57\xc9\x49\x32\xc5\x23\x2a\x89\x0c\x4c\x56\xeb\x62\x7d\xd7\
\xba\xb6\xbf\x91\xdf\xcc\x1f\xe1\x0f\xc4\x0d\xd1\x81\xd9\x5f\x28\
\x7e\x52\x74\xbf\x44\x6e\xdd\xd1\x80\x3b\xa7\x6e\xed\xee\xcc\xde\
\xd8\xad\xaf\x94\xcc\x6d\xd5\xc8\xd5\x62\x4e\x66\x82\x97\x21\x2c\
\x6f\x3d\x07\xf1\x3a\x19\xa0\x12\x0e\x0c\x91\x38\x1f\xa4\xdb\xdd\
\x7b\xa2\xf1\xff\x00\x0f\x79\xfc\xa2\x3f\xef\x62\xff\x00\x13\x7f\
\xf4\x6f\x6d\xaf\xfe\xaa\xf7\xee\xbd\xd1\x87\xf8\xe3\xfc\xc2\x3e\
\x10\xfc\xbe\xdd\x39\xed\x93\xf1\x7f\xe5\x2f\x4b\x77\xbe\xed\xda\
\xf8\x01\xba\x77\x0e\xde\xeb\x3d\xef\x8a\xdd\x19\x5c\x3e\xdc\x39\
\x1a\x4c\x4f\xf1\x9a\xfa\x5c\x7c\xb2\x49\x06\x3c\x64\xeb\xe0\x80\
\xc8\x78\x12\x4a\x83\xfb\x43\xdf\xba\xf7\x47\x17\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7f\xff\xd1\xdf\
\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x02\x5b\x97\xe4\xbf\xc7\x1d\x99\x9d\xc9\x6d\x7d\xe1\xf2\x03\
\xa4\xb6\xa6\xe6\xc3\x4c\x94\xf9\x7d\xbb\xb9\x7b\x5b\x62\x60\xb3\
\xb8\xaa\x89\x21\x8e\xa2\x38\x32\x58\x8c\xa6\x7a\x97\x21\x43\x33\
\xd3\xcc\x92\x05\x96\x35\x62\x8e\x18\x0b\x10\x7d\xfb\xaf\x74\x21\
\xec\xcd\xf7\xb1\xfb\x1b\x07\x16\xe7\xeb\xdd\xe5\xb5\x37\xe6\xda\
\x9e\xa2\xaa\x92\x0d\xc3\xb3\x37\x0e\x23\x74\x60\xe6\xab\xa2\x94\
\xc1\x5b\x4b\x16\x5b\x09\x59\x5d\x41\x25\x45\x24\xc0\xa4\xa8\x24\
\x2d\x1b\x0b\x30\x07\xdf\xba\xf7\x5f\x3b\x5f\xf8\x59\x5f\x48\xf7\
\x47\x68\xfc\xf6\xf8\xc7\x94\xeb\x3e\x9f\xed\x3e\xc4\xc6\x63\xfe\
\x21\xe3\xa8\x2b\xf2\xbb\x1b\xaf\x37\x76\xec\xc6\x51\xd7\xff\x00\
\xa6\x6e\xd8\xa8\xfe\x1f\x53\x92\xc0\x61\xeb\xe8\xe1\xaf\x8e\x9e\
\x74\x91\xa0\x67\x12\xa4\x72\xa3\x15\x0a\xea\x4f\xba\xf7\x47\x87\
\xfe\x11\x5b\xd4\xfd\xa5\xd5\x9b\x3b\xf9\x84\xd3\xf6\x77\x58\xf6\
\x17\x5c\x54\x65\xf7\x3f\xc6\xe9\x71\x2b\xbf\x76\x46\xe6\xd9\xed\
\x96\x8a\x8f\x15\xdc\xeb\x54\x71\x8d\xb8\x71\x78\xe1\x91\xfb\x16\
\xa9\x8f\xcc\x21\x2e\x61\xf3\x21\x7d\x3e\x45\xd5\xee\xbd\xd0\xc9\
\xff\x00\x0b\x39\xeb\x1e\xca\xed\x1f\x89\x7f\x0f\x31\x7d\x67\xd7\
\x7b\xef\xb1\x72\x58\xef\x91\x7b\xa2\xbb\x21\x41\xb1\x36\x86\xe1\
\xdd\xd5\x94\x14\x4d\xd6\x99\x48\x12\xae\xba\x9f\x6f\xe3\xb2\x12\
\xd2\x53\xbc\xce\x11\x5e\x40\xaa\xcd\xc0\x24\xdf\xdf\xba\xf7\x54\
\x5b\xff\x00\x09\x29\xe8\x3e\xf7\xeb\x5f\xe6\xd1\x4d\xb8\x7b\x13\
\xa5\x7b\x73\x60\xed\xe6\xf8\xd5\xdc\xf8\xf3\x9d\xde\x7d\x6f\xbc\
\xf6\xbe\x17\xef\x6a\x6b\x36\x53\xd3\x51\xbe\x53\x37\x85\xa1\xa1\
\x15\x15\x1e\x06\x31\xa1\x93\x53\x95\xe0\x12\x3d\xfb\xaf\x75\xf4\
\xe0\xdd\x5b\xbb\x6a\x6c\x4c\x06\x43\x75\xef\x7d\xcf\xb7\xb6\x6e\
\xd7\xc4\xa4\x32\x65\x77\x26\xea\xcd\x63\x76\xf6\x03\x19\x1d\x45\
\x44\x34\x90\x3e\x43\x31\x97\xa9\xa3\xc7\x51\x24\xf5\x75\x11\xc4\
\x86\x49\x14\x34\x8e\xaa\x2e\x48\x07\xdd\x7b\xaa\x7f\xfe\x6f\x9f\
\x27\xfe\x35\x6e\x9f\xe5\x63\xfc\xc3\x76\xee\xd8\xf9\x15\xd1\x39\
\xfd\xc1\x99\xf8\x77\xdf\xf8\xfc\x46\x13\x0b\xdb\xfd\x7d\x92\xcb\
\xe5\xab\xea\xba\xdf\x3f\x0d\x36\x3b\x19\x8e\xa3\xdc\x53\x56\x57\
\xd7\xd6\xca\xe2\x28\x60\x89\x1e\x59\xa4\x60\x88\xac\xcc\x01\xf7\
\x5e\xeb\xe3\x51\xef\xdd\x7b\xaf\x7b\xf7\x5e\xe8\xc2\x45\xf1\x23\
\xe5\x6c\xd0\xc5\x51\x0f\xc6\x4f\x90\x92\xd3\xd4\x43\x15\x4c\x13\
\xc5\xd2\xfd\x91\x24\x33\x53\xcf\x1a\xcd\x04\xf1\x4a\xbb\x6c\xa4\
\x90\xcd\x0b\x87\x47\x04\xab\x29\x04\x1b\x1f\x7e\xeb\xdd\x7d\xa0\
\x7f\x95\x9e\x2f\x2b\x83\xfe\x5a\x5f\x00\x70\xd9\xdc\x56\x53\x05\
\x9a\xc5\x7c\x38\xf8\xdf\x8e\xcb\x61\x73\x98\xea\xdc\x3e\x67\x13\
\x91\xa3\xea\x4d\xa7\x4f\x59\x8e\xca\xe2\x72\x50\x53\x64\x31\xb9\
\x1a\x2a\x88\xda\x39\xa0\x9e\x38\xe5\x8a\x45\x2a\xea\x18\x11\xef\
\xdd\x7b\xaf\x95\x5f\xfc\x28\xcf\xfe\xdf\x5b\xf3\xef\xff\x00\x12\
\x6e\xd1\xff\x00\xdf\x43\xd7\x5e\xfd\xd7\xba\xaa\xdd\x9b\xf1\xf3\
\xbf\x3b\x17\x07\x1e\xe7\xeb\xee\x90\xed\xfd\xf7\xb6\xa6\xa9\xa9\
\xa2\x87\x70\xec\xde\xb5\xde\x7b\x9f\x07\x2d\x65\x1b\x2a\xd5\xd2\
\x47\x96\xc2\x61\x6b\xa8\x1e\xa6\x95\x9c\x09\x23\x12\x17\x42\x46\
\xa0\x2f\xef\xdd\x7b\xaf\xa2\x4f\xfc\x24\x3b\x71\xed\xef\x8b\xdf\
\x07\xfe\x48\xed\x0f\x93\x1b\x83\x09\xf1\xdf\x76\x6e\x2f\x95\x95\
\xdb\x93\x6f\xed\x4e\xf4\xcb\xe3\xfa\x93\x72\xe6\xf6\xf1\xea\x2e\
\xb0\xc6\x0d\xc1\x88\xc0\x6f\xea\x8d\xbf\x95\xc8\xe0\xdf\x25\x43\
\x3d\x32\xd6\x43\x0b\xd3\xb4\xf4\xf2\x46\x1c\xbc\x6e\xab\xee\xbd\
\xd6\x92\xfd\x87\x2c\x55\x1d\x9b\xda\x95\x34\xf2\xc5\x2c\x15\x1d\
\xaf\xda\xd5\x34\xd5\x11\x4a\xb2\x41\x55\x4f\x53\xd8\x7b\x9a\x78\
\x2a\xa9\xe6\x8c\xb4\x73\xd3\xd4\xc3\x22\xbc\x72\x21\x64\x91\x18\
\x32\x92\x08\x3e\xc1\xf2\x71\x7c\xf9\xf5\x27\x27\xf6\x71\xd3\xf8\
\x47\xf8\x07\x56\x3f\xfc\xb6\xfe\x12\xf6\xb7\xce\x8f\x91\x7b\x6f\
\xab\x76\x35\x45\x46\xd4\xd8\xb8\x6c\x26\x3f\x74\x76\xd7\x6a\xa5\
\x1b\xd6\xd1\x6c\x5d\xa5\xfe\x6a\xa6\x91\xe2\x70\x94\xb5\x3b\x87\
\x72\x80\xd4\xf8\xda\x72\xe3\xc8\xe4\xbb\x0d\x28\x7d\xa5\xb3\x9a\
\x4b\x6b\x95\xb8\xb6\x94\xad\xca\x31\xfb\x29\xe9\xf3\x07\x81\x07\
\xad\xdd\xb4\x5f\x4a\x23\xb9\x8b\x55\xbb\x2d\x3e\x75\xff\x00\x57\
\x9f\x5b\xcc\xfc\x79\xfe\x5e\x1d\x25\xf1\x4f\x78\xee\x2a\xae\x8d\
\xd7\x16\x33\x79\x6c\x2c\x4e\xcc\xc9\xd3\xef\x0f\xb4\xce\xee\x5a\
\x6a\xac\x6c\xb5\x4d\x94\xcd\x2e\x72\x50\x95\x93\xe1\xf7\x66\x3e\
\x6f\x15\x6e\x2d\x55\x20\x49\x42\xcb\x1b\x0b\x5b\xd8\xb6\x3d\xe3\
\x72\xdd\x4d\xa4\x52\x39\xa4\x0e\x4e\xa1\xc3\x41\xfc\x04\x7a\x83\
\x90\x7a\x05\x4f\x65\x69\x64\xb3\xcb\xa2\x9e\x20\x18\xf3\xa8\xe0\
\x7e\x5f\x3e\x8b\xae\xeb\xfe\x59\x1b\x2b\xa0\xaa\x7b\x0b\xbb\x7e\
\x3d\xed\xde\xd5\xdc\xdd\xdf\xbb\x28\x26\xc2\x75\xee\xdb\xd9\x5b\
\xcd\xb6\xb6\x27\x63\xe7\x32\x6e\x56\x2c\xee\x53\x28\x6a\xe9\x63\
\xc9\x6d\xdc\x34\x96\x96\x11\x59\x1d\x43\xc1\xa8\xa6\x97\x43\xc1\
\x8e\xf7\x7b\x71\x7b\x69\xa4\xd9\xac\xd7\x41\x74\xad\x40\xcf\xa3\
\x31\xf2\xa7\xcb\x3d\x26\xda\xcd\xbc\x77\x29\xe2\x5c\x18\x6d\x81\
\xab\x71\xc8\x1c\x54\x0f\x9f\xcf\xac\x9d\x7f\xd9\x9d\xe1\xf1\xff\
\x00\x79\xe6\x29\xbe\x42\x6e\x3d\x89\xf2\x37\xb2\x28\xe0\xc0\x4f\
\x97\xce\xed\x5a\xa8\x12\xab\xad\x56\xb3\x12\x63\xae\xd8\x74\xd2\
\x51\x19\xa2\x19\x1c\x75\x66\xb9\x26\xa9\x92\x9e\x16\x99\xa5\xb6\
\x85\x16\x3e\xc3\x52\x72\xff\x00\x30\x47\xb6\xc7\x25\xa2\x2d\xc4\
\x20\x92\xe8\xb8\x6d\x5c\x6a\x07\xe2\x00\x70\xe8\x5d\x6d\x73\xb1\
\x6e\x33\xc8\xcf\x23\x5b\x49\x5d\x28\xcc\x35\x29\x51\xeb\xfc\x24\
\x9e\x3d\x18\x9c\xe7\xcc\x7a\xec\xb5\x33\x8d\x91\xb6\x28\xa8\x62\
\x94\x37\x8b\x31\xb8\xf2\x0b\x5d\x20\xff\x00\x32\x35\xc7\x8d\xc7\
\xaa\x40\xe9\xa8\xc8\x2e\xf2\xdc\x14\x17\x1c\xfb\x07\x4b\xb9\xb4\
\x7e\x24\x4c\x85\x64\x1c\x41\x04\x10\x7d\x08\xf2\xe8\x53\x07\x2d\
\xab\x69\x79\x6e\x83\x21\x15\x1a\x38\x11\xe5\x9e\xa9\x27\xe5\x36\
\x17\xbc\xfe\x50\xef\xed\xb7\x55\x90\xec\x9d\xe3\x9b\xda\xc6\x59\
\xaa\x29\xf6\xb6\x4b\x21\x4f\x85\xeb\x3d\xb5\x90\xc5\x54\x4f\x4f\
\x2d\x54\xd8\x0a\x28\xa3\xab\xcc\xe4\x72\x51\x84\xa8\x81\x24\x2e\
\x91\xb0\xb2\x9b\x9f\x73\x4f\x24\x6c\xfb\x6d\xb5\x96\xdd\xbd\x4d\
\x19\x6b\xd6\x8f\x55\x48\xce\xa2\x4f\x0a\xfc\x20\x79\x11\xd4\x7d\
\xcd\x12\x5d\x3c\xf7\x7b\x55\x99\xf0\xed\x83\x80\x68\x7f\x08\xa6\
\x49\xe2\xc7\xe5\xc3\xa3\x09\x9d\xfe\x4f\x1d\x59\xbb\x7a\x0f\x3f\
\x57\xb6\xf7\xee\xfa\xc4\x77\xb6\xe8\xd9\x94\x35\xf4\x39\x19\xaa\
\xe9\x53\x6e\x43\xbc\x31\xf4\x73\x3b\xe1\xab\xb1\x06\x14\x9d\x70\
\xd9\xb1\xa6\x02\x86\x45\x7a\x62\xfa\xd4\x9b\xdb\xd9\x4d\xdf\x3a\
\x6f\x4b\x79\x77\x14\x8b\x1a\x45\xe2\x90\xc1\x78\xe9\x18\x00\x37\
\xc8\x67\xa4\x2b\xb2\x6d\xc2\x38\xcd\xb9\x66\x01\x6a\x18\xfa\xf9\
\xd4\x70\xe3\xd6\xbe\x5f\x0f\x7e\x1f\xef\xff\x00\x92\x9d\xd3\xbc\
\xfa\x86\xb7\x31\x8c\xea\x2d\x99\xd3\xf1\x55\x6f\x3f\x92\xbd\xad\
\xb9\x68\xea\x32\x38\x0e\xa2\xd9\x3b\x1b\x32\xd8\xdc\x9a\xae\x3e\
\x99\xa2\x97\x71\x6f\x1c\xf6\x6f\x4d\x0e\x0b\x17\x14\x88\xf5\xf5\
\x64\xdc\x88\xd1\xd8\x5f\x7b\xe6\x6d\x9b\x95\xf6\x1d\xcf\x99\x77\
\xdb\xe5\x83\x65\xb7\x8b\xc5\x96\x46\xf2\x55\xc8\xa0\x19\x67\x62\
\x42\xa2\x2d\x59\xd8\x85\x50\x49\xe8\x25\xcc\xbb\xee\xcd\xca\x1b\
\x26\xeb\xcc\xbc\xcb\xb8\x25\xa6\xc7\x61\x03\x4b\x34\xad\xc1\x11\
\x47\x90\xe2\xcc\xc6\x8a\x88\xb5\x67\x62\x15\x41\x27\xab\x64\xdc\
\xdb\x23\xf9\x6e\x63\x61\xa7\xdb\x7b\x7b\xe0\xb6\x03\xe4\x3e\x3b\
\x16\x44\x5f\xe9\x17\xe5\xb6\xf9\xde\x19\xcd\xc9\xb8\x24\x40\x16\
\x4c\xae\x37\x63\xf5\xfe\x57\x6a\xed\xbd\x88\x95\xb2\x02\xde\x08\
\x65\xa9\x6f\x1e\x90\xf6\x60\xc4\xf3\xb3\x9e\xbe\xfe\x9b\x85\xe6\
\xeb\xa7\x94\x39\x2e\xd4\x6d\xd0\xb3\x2a\x49\x76\x64\x79\x1d\x49\
\xe2\x63\x8a\x48\xd6\x3a\xd0\x63\xc4\x93\xed\xf2\x1c\xd6\xe6\xbf\
\xef\x16\xdf\x60\xbf\xb9\xb3\xf6\xdb\x90\x6d\x57\x62\xd6\x47\x8b\
\xb8\x48\xed\x2c\xe0\x13\xa5\x8c\x30\x95\x58\x71\x90\xbe\x23\x9c\
\xe6\x9c\x3a\x31\x9f\xcb\x77\xe2\x27\xf2\xf9\xcc\xfc\xf2\xe8\xbf\
\x90\xfd\x2f\xf1\xc3\xb2\xbe\x2b\x77\x1f\x4f\xe7\xf7\x0e\x72\xa6\
\x1e\x9a\xdc\xbb\x8b\xb1\xfe\x31\xee\x5c\x6e\xe3\xd8\xbb\x97\x67\
\x64\xb1\x9b\xd3\x6d\xef\x15\xae\xcb\x74\xe2\x88\xf3\x02\x7a\x3a\
\xea\x4c\x94\x94\xb2\x55\x46\x63\x9d\x5b\xca\x81\x64\xbf\x65\x3e\
\xf4\x0b\xee\x66\xf1\x0e\xc1\xbe\x72\x5c\xd6\xbb\x9d\x2b\xf5\x36\
\xba\xe4\xb5\x1c\x68\x6e\x15\xc1\x6b\x64\x20\x10\xae\x64\x74\x2c\
\x00\x24\x12\x3a\x9a\xfd\x81\xfb\xeb\x5c\xfb\xbb\xba\x0e\x4c\xe6\
\x7f\x6f\xe6\xb6\xdd\x0a\xff\x00\xb9\x96\x5a\xe7\xb2\x4f\xc5\xfe\
\x33\x55\xad\xa2\x90\x34\xab\xbb\xba\x16\xa2\x92\xa5\x85\x6a\x6f\
\xfe\x16\xd4\x3f\xe7\x3b\x3e\x24\x1f\xcf\xfb\x29\x72\x8b\xff\x00\
\xad\xdc\x5d\x85\x6f\xf6\xd7\xf7\x98\x9d\x66\x97\x46\x1b\xfe\x11\
\x59\xdb\xdd\x4d\xd5\x78\x2f\xe6\x1f\xfe\x93\xfb\x4f\xae\x3a\xdf\
\xf8\xd6\x57\xe3\x29\xc4\xa6\xfd\xdf\x5b\x5f\x67\x49\x98\x14\x14\
\x9d\xe4\x2a\xdf\x1b\x16\xe1\xca\xe3\xa4\xc8\xc7\x40\x6b\x23\x12\
\xb4\x41\xd6\x13\x3a\x06\x20\xc8\xb7\xf7\x5e\xe8\xe3\x7f\xc2\xbd\
\xb7\x0e\x07\xe5\x1f\xc3\x8f\x8b\xdb\x57\xe3\x2e\x77\x0f\xf2\x2b\
\x73\x6d\xbf\x93\x15\x3b\x87\x71\x6d\xae\x8a\xca\xd0\xf6\xe6\x7f\
\x05\x81\x7e\xad\xde\x98\xe8\xf3\xb9\x9c\x26\xc0\xa8\xdc\x19\x2c\
\x66\x1c\xe4\x2a\xa3\xa7\x15\x53\xc4\x90\x79\xa5\x48\xf5\xea\x75\
\x07\xdd\x7b\xaa\x51\xff\x00\x84\x9b\x74\x17\x7c\x75\xb7\xf3\x72\
\xdb\xdb\x8b\xb0\xfa\x4f\xb7\xb6\x1e\xde\xff\x00\x65\xef\xbb\x28\
\x5b\x3d\xbc\xba\xd7\x7a\x6d\x8c\x2a\xd5\xd4\xd2\x6d\xe3\x4d\x49\
\x26\x57\x35\x85\xa2\xa0\x49\xea\x0c\x47\xc6\x8d\x20\x2e\xc2\xc0\
\x13\xef\xdd\x7b\xad\xdb\x7f\xe1\x44\x3b\x67\x72\xef\x1f\xe4\xcb\
\xf3\x9b\x6c\xec\xed\xb9\xb8\x37\x6e\xe5\xcb\xec\x7e\xbe\xa7\xc5\
\x6d\xdd\xad\x85\xc9\xee\x1c\xf6\x4a\x54\xee\xde\xb2\x9e\x58\xe8\
\x30\xf8\x7a\x5a\xcc\x8d\x61\x82\x9a\x27\x96\x4f\x1c\x6d\xe3\x85\
\x1d\xda\xc8\xac\x47\xba\xf7\x5f\x22\x3c\xbf\xc5\x9f\x93\x9b\x7f\
\x13\x93\xcf\xe7\xbe\x39\xf7\xbe\x13\x05\x84\xa0\xaa\xca\xe6\x73\
\x59\x7e\xa1\xec\x1c\x6e\x27\x11\x8b\xa1\x89\xa7\xad\xc9\x64\xf2\
\x35\xbb\x7a\x1a\x3a\x0a\x0a\x38\x10\xbc\xb3\x4a\xe9\x1c\x68\x09\
\x62\x00\xf7\xee\xbd\xd0\x11\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xee\
\x2d\xd0\x5f\x2c\x3e\x2b\xe3\xba\x27\xa4\xf1\xd5\xbf\x26\x3e\x3e\
\x52\x56\xd1\x75\x27\x5b\x52\x55\x52\x4f\xdc\xfd\x6f\x14\xf4\xf5\
\x10\x6c\xdc\x2c\x52\xc1\x24\x4d\xb9\x43\x24\x91\xba\x90\x41\x1c\
\x11\xef\xdd\x7b\xaf\x8f\xbf\xf3\x6f\xcc\x61\x77\x0f\xf3\x44\xfe\
\x60\xf9\xed\xb9\x96\xc4\xe7\xf0\x39\x9f\x98\x5f\x20\xb2\x98\x7c\
\xde\x0b\x23\x45\x96\xc3\x65\xf1\xd5\xdd\x99\xb8\xaa\x69\x32\x38\
\xbc\xa6\x3a\x6a\x8a\x1c\x85\x0d\x64\x32\x09\x23\x9a\x19\x1e\x39\
\x15\x83\x02\x41\xbf\xbf\x75\xee\xbe\x96\x7f\xf0\x9d\x3f\x92\x3f\
\x1d\x36\x37\xf2\x60\xf8\x39\xb5\xb7\xa7\x7e\x74\xa6\xcf\xdc\xd8\
\x9d\xa5\xda\x11\xe5\x76\xe6\xe7\xed\x3d\x8b\x80\xce\xe3\x25\xa9\
\xef\xae\xd5\xae\x86\x3c\x86\x23\x2b\x9d\xa4\xaf\xa2\x96\x7a\x4a\
\xa8\xe6\x55\x92\x35\x66\x8e\x45\x6f\xa3\x02\x7d\xd7\xba\xba\xef\
\xf6\x6f\xbe\x26\x7f\xde\x50\xfc\x76\xff\x00\xd1\xd9\xd6\xbf\xfd\
\x93\x7b\xf7\x5e\xeb\xe7\x45\xff\x00\x0b\x31\xec\xce\xb6\xed\x0f\
\x9b\x1f\x14\xb3\x1d\x67\xd8\x3b\x1b\xb1\x31\x74\x1f\x16\x27\xc7\
\x57\xe4\xf6\x26\xed\xdb\xfb\xba\x86\x8a\xb8\x76\xd6\xfb\xa9\x14\
\x35\xb5\x7b\x7f\x21\x90\x82\x96\xab\xc1\x3a\xc8\x23\x91\x95\x8a\
\xb5\xc0\xb1\xf7\xee\xbd\xd6\x9d\xbe\xfd\xd7\xba\xdd\x1b\xfe\x11\
\x2a\x07\xfb\x3d\xbf\x2d\x8d\x85\xc7\xc4\x94\x00\xfe\x40\x3d\xc5\
\xd7\x77\x17\xfe\x86\xc3\xfd\xb7\xbf\x75\xee\xbe\x96\x5e\xfd\xd7\
\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd2\
\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7c\x6c\x3f\xe1\x45\x40\x2f\xf3\xa9\xf9\xfa\x14\x00\x3f\
\xd2\xae\xdc\x36\x00\x01\x76\xea\xbd\x80\xcc\x78\xfc\xb3\x12\x4f\
\xf5\x3e\xfd\xd7\xba\xdf\x93\xfe\x12\x3a\xaa\x9f\xc9\x8f\xac\x0d\
\x91\x4c\x9d\xdb\xdf\x6e\x48\xd3\x76\x23\x7a\xba\x5d\xed\xce\xad\
\x28\x07\x3c\xd8\x0f\xc5\xbd\xfb\xaf\x75\xb3\x58\x20\xfd\x0d\xff\
\x00\xd6\xf7\xee\xbd\xd7\x44\x81\xf5\x20\x7f\xaf\xef\xdd\x7b\xaf\
\x02\x0f\x00\x82\x45\x89\x00\xfd\x2f\x7b\x7f\xb7\xb7\xbf\x75\xee\
\xbc\x48\x02\xe4\x80\x2e\x05\xc9\xb0\xb9\x36\x03\xfd\x72\x4f\xbf\
\x75\xee\xa8\x77\xfe\x14\xd2\x91\xcb\xfc\x90\x7e\x71\x87\x54\x90\
\x2e\x0f\xa6\xe4\x08\xc1\x5c\xeb\x4f\x91\x1d\x48\x62\x75\x43\x72\
\x5e\x39\xb4\xb0\x20\x5d\x6d\xab\x80\x09\x1e\xeb\xdd\x7c\x7a\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\x7b\x3e\x9f\x91\
\xe5\xea\x5e\xae\x96\x46\x67\x79\x3a\xeb\x64\xc8\xee\xe4\x97\x77\
\x7d\xb5\x8c\x66\x67\x2d\xea\x2c\xc4\xdc\xdf\x9b\xfb\xf7\x5e\xe8\
\x44\xd4\x3f\xa8\xe3\x83\xc8\xe3\xdf\xba\xf7\x5f\x1b\xaf\xf8\x51\
\xa0\xb7\xf3\xae\xf9\xf6\x0d\xbf\xe6\x66\x6c\xf3\xc1\x07\xeb\xd3\
\xfd\x72\x47\x20\x91\x7b\x1e\x47\xd4\x1e\x0f\xbf\x75\xee\xb7\xcb\
\xff\x00\x84\x88\x33\x7f\xc3\x35\xec\x70\xcc\x48\x5e\xfd\xef\x75\
\x40\x5a\xe1\x17\xfb\xc1\x8e\x62\xa0\x5c\xe8\x05\xc9\x36\xe3\x93\
\x7f\xcf\xbf\x75\xee\xb5\xb8\xff\x00\x85\xb2\xaa\xff\x00\xc3\x81\
\xfc\x56\x90\x2a\xea\x6f\x87\x38\xf5\x2e\x00\xd4\xca\x9d\xd7\xdb\
\x65\x54\x9f\xa9\x55\x32\x12\x3f\x02\xe7\xfc\x7d\xfb\xaf\x75\xaf\
\x76\xd5\xdb\x5b\xa3\x78\xe4\xf0\x9b\x33\x63\xed\x3d\xcb\xbc\x37\
\x8d\x6d\x1e\x3e\x83\x1d\xb5\x76\xbe\x03\x2b\xb8\x33\x53\xd4\xfd\
\xb5\x34\x02\x05\xc6\x62\x28\xea\xea\x92\x2a\x77\x91\x7c\xaf\xa0\
\x24\x09\xea\x72\xaa\x2f\xec\x1c\x41\x2c\xe1\x16\xa7\x51\xff\x00\
\x0f\x52\x6a\x90\xb0\xc6\xcc\x40\x4d\x03\x27\x03\x80\xf3\xeb\xe9\
\x51\xfc\xb5\xfe\x1d\xc1\xf0\x1b\xe2\x1e\xce\xea\xdc\x5e\xd9\x8f\
\x72\x77\x76\xea\xc3\x51\xef\x9e\xe0\xaf\xa7\xa8\xa2\xc5\x4b\xba\
\x77\xfd\x46\x3a\x29\x53\x6b\x8c\xd5\x42\xc9\x05\x3e\x17\x66\x51\
\xd4\x7d\x8d\x14\xb2\xa2\xc2\xc5\x25\x6e\x58\x9f\x77\x83\x69\xbe\
\x98\xb3\xa4\x5a\x23\x3f\xc5\x83\xf9\x79\xe7\xa2\x6b\xad\xd6\xcf\
\x5a\xeb\x94\x90\xa2\x82\x99\x1f\x6f\x46\xff\x00\xa6\x3b\x63\x09\
\xbb\xb7\x0e\xf1\xd8\x39\xed\xb3\x96\xeb\xce\xe8\xd9\x26\x3c\x8e\
\xed\xd8\xdb\xb2\x7c\x6d\x76\x66\xa3\x6e\xe5\xe4\x75\xc3\xef\x3d\
\xbd\x9c\xc4\xbb\xe2\xf7\x1e\xd1\xca\x18\x9a\x14\x9e\x9d\x81\x82\
\x58\x8c\x72\x22\x37\xd4\x4f\x63\x1c\x50\x21\xb7\x45\xd2\xeb\xc4\
\x79\x9f\xe9\x57\xce\xbe\xbd\x07\xb7\x18\xe6\x70\x97\x9e\x38\x92\
\xd9\xc9\x01\x87\x91\x1f\x84\x83\xc0\x8f\x4f\x3f\x2e\x86\xdc\xf6\
\x56\x7a\x1a\x3d\x18\xe5\x8e\x6c\xb5\x42\x30\xa2\x82\x42\xe6\x14\
\x3a\x59\x85\x55\x67\x85\x84\xb1\x51\xab\x2d\xb5\x7f\x69\x8e\x91\
\xcf\xb3\x0a\x7a\x8e\x8b\x54\x54\xf0\xea\x9e\x3e\x51\xff\x00\x2d\
\xe8\x37\xee\xfc\xaf\xef\xcf\x8f\x7d\x89\x3f\xc7\x6f\x90\xb9\xea\
\x98\x2a\x77\x16\x4d\x22\xab\xcf\xf5\xc7\x72\x67\xaa\x71\x8d\x34\
\xf4\x9d\x81\xb5\x9a\x53\x05\x04\xd5\x15\xb4\xfe\x27\xc8\x40\x80\
\xf8\x88\x2c\xa5\x86\xaf\x6b\x2d\xaf\x65\xb7\x2a\x01\x3a\x47\x4b\
\xe3\x95\x55\x7b\xf2\x0f\xfa\xa8\x3a\xab\xcd\xd7\xdf\x3d\xfb\xd1\
\x0d\xbc\xf6\x97\xc9\xcf\x8f\x99\xdd\x97\xbb\xb6\xe5\x0c\x54\xd0\
\x57\xec\xbc\xcd\x15\x66\xc9\xec\x69\x6a\x4d\x5c\xb4\x59\x1d\x83\
\x59\x32\xcf\x26\x9c\xb5\x35\x15\x47\x91\xac\xd1\x46\xea\x15\xb4\
\x37\xa7\xd8\x73\x99\xe0\xdb\x37\x0d\xeb\x97\xee\x1e\x12\xd7\x01\
\x8b\x4c\x10\x0e\xe8\x50\x8e\xe7\xf9\x86\xa2\xe7\x24\x13\x4e\x1d\
\x48\x7c\x9a\x9b\xd6\xe7\x65\xbe\xd9\xec\xf6\x72\x5c\x78\x36\xe6\
\x40\x17\x26\x3f\x22\x7d\x69\x4f\x21\xe7\xd1\xec\xf8\x5b\xd6\x5d\
\xbb\xbf\xf6\x8e\x33\xb9\xbe\x47\xec\xba\x5e\xb2\x5c\xa5\x54\xb9\
\xbd\x91\xd3\x13\x49\x1e\x2f\x31\x4f\xb7\x28\xe5\xa3\xae\xdb\x33\
\x66\xf2\x12\xc8\xf3\x9a\x76\xa0\x6f\xba\xad\x59\x95\x19\x98\x88\
\xca\xaa\x0f\x63\x3b\xad\xc5\x56\x22\x90\x91\xad\xb8\x69\xe0\xab\
\xe5\x4f\xcb\xf6\x74\x00\x33\x2b\x50\x56\xaf\x9a\x93\xc6\xbf\x3f\
\xf5\x71\xea\xc8\x2a\xf7\x55\x1a\xe6\x73\x14\x34\xf5\x52\xbc\xb4\
\xf0\x63\x72\xf2\x29\x48\x56\x8e\x18\xb2\x1e\x48\xa9\xd2\x89\xe2\
\x00\xb7\x99\xa9\x4b\x36\xa2\xc4\x92\x2c\x6d\x61\xee\x3a\xde\x91\
\x56\xe8\x30\x19\x64\xa9\xf9\xf9\x74\x67\xb6\xb5\x60\xf0\xe4\xe0\
\x09\xea\x93\xb1\x3b\x6b\x15\x88\xad\xfe\x71\x9d\x71\xb3\x72\x10\
\x55\xef\xda\xce\xde\xf8\xb1\xf2\x23\x78\x6d\xdc\x79\x44\xaf\xa9\
\xe9\x47\xc7\xee\xaa\x4c\x8d\x4d\x36\x26\x04\x8d\xdf\x0f\xb3\x77\
\x8e\x56\x0a\x8c\x8c\xca\x1e\x35\x15\x31\xbc\x96\xd3\xab\xdc\x01\
\xf7\xb2\xda\xf7\x9d\xd7\xd8\x07\x9f\x6a\x56\x78\x2d\xaf\xa2\x7b\
\x85\x5c\xb7\x82\x9a\xd7\x51\x50\x6b\xa5\x24\x64\x72\x68\x42\x85\
\xd4\x68\x14\x9e\xb0\xcb\xef\xe5\xb0\xef\xdb\x87\xb0\x5b\xbd\xde\
\xd1\x1b\x49\x63\x6f\xb9\xdb\x4d\x74\xa9\x92\x6d\xd0\xb6\xa6\x64\
\x06\xba\x11\x99\x5d\x8d\x08\x00\x16\xc0\x52\x7a\x10\xfa\x83\x75\
\x7f\x2f\xaa\x6e\x98\xdb\x5b\xa7\xbd\x3a\xf3\x7c\x6e\x1e\xf0\xd8\
\x59\x1c\x9e\x09\xba\xdb\x62\x66\x32\x98\x4d\xb7\xdd\x98\xa9\xea\
\xa2\xca\xed\xed\xdd\xbd\x73\x12\x79\x69\x30\xcb\x8e\x86\xaa\x5c\
\x7d\x63\x52\x54\xd3\x4d\x2a\xc0\x8d\xf6\xf3\x06\x16\xc0\xde\x4e\
\xdd\xfe\xef\xb0\xf2\x66\xd9\xbb\x73\xc7\x2f\xde\xcd\xce\xdb\x74\
\x8f\x17\xd1\xdb\x3b\xc5\x0d\xfa\x16\x12\x45\x35\xc4\xa4\x11\x17\
\x87\xa9\xa2\x71\x0b\xa3\xba\xaa\xb7\x84\xf5\xc7\x34\x39\x23\x79\
\xfb\xb3\x45\xc8\x7b\x46\xef\xee\x27\x2c\x6e\x17\x5e\xe1\x6d\xb2\
\xbc\x3f\x43\x67\x2c\x91\x41\xba\xc6\x58\x49\x05\xd5\xd4\x99\x58\
\xc2\x06\x68\x65\x31\xc9\x1b\x36\x80\x7c\x39\x01\x1d\x05\xfd\xa7\
\xf2\x87\xb8\x7b\xe2\x9f\x15\xd4\x3b\x13\x05\x88\xea\xce\xb4\xc8\
\x65\x71\xf8\x9d\x9b\xd0\x7d\x25\x8b\x6d\xb9\x81\xca\x66\x6b\x25\
\xa6\xc7\xe1\x97\x3b\x26\x3d\x62\xcc\xef\xed\xc7\x55\x52\xb0\x93\
\x3d\x7c\x92\x2b\x54\x0f\x2a\xc6\x8d\xcf\xb0\xb7\x32\x7b\xb1\xcd\
\xdc\xf8\xd6\x5c\xa3\xcb\xfb\x7c\x3b\x5f\x2b\xbc\xc8\xb0\xed\x9b\
\x7c\x7e\x14\x4e\xe4\xaa\xa7\x8a\x17\xf5\x2e\xa6\x62\x17\xbe\x66\
\x72\xd2\x51\x95\x51\x8f\x41\x1e\x71\xf7\x77\x9e\x3d\xc4\x86\xcb\
\x92\x79\x7b\x6f\x83\x66\xe5\x39\x26\x48\xed\x76\x7d\xaa\x3f\x02\
\x17\x95\x8a\xa4\x5e\x31\x4a\x49\x79\x33\x10\xa4\xb4\xc4\x82\xe3\
\x58\x55\x39\xea\xb1\x7f\xe1\x65\xfd\x79\xbf\x70\xfd\xe3\xfc\xbe\
\x77\xfe\xe2\xa4\x5a\xac\x05\x7f\xc5\x4c\xaf\x55\x4b\xb9\xe2\xac\
\xa4\x9d\x32\x1d\x99\xd6\x1b\xe2\xa2\xb7\xb1\x31\x32\x52\xc5\x34\
\x95\x54\xf2\xe3\x17\x7a\xe3\xa4\xf2\x3a\x88\xa6\x6a\x96\x58\xd9\
\x9a\x29\x34\xf6\x8f\x60\xb7\xbd\xb4\xd8\x76\x4b\x5d\xc5\xf5\x6e\
\x11\x5a\x42\x92\x9f\x59\x16\x35\x0e\x7f\x36\x04\xf5\xde\xae\x5c\
\xb6\xbe\xb2\xe5\xdd\x86\xcf\x73\x7d\x5b\x94\x56\x50\x24\xa7\xd6\
\x55\x89\x43\x9f\x3e\x2c\x09\xe3\xd6\x97\x9e\xcd\xfa\x39\xeb\x74\
\xbf\xf8\x44\xa0\x51\xf3\x9b\xe5\xcb\x10\x35\x7f\xb2\x9f\x4c\xaa\
\xe4\x7d\x01\xed\xfd\x84\x5d\x43\xdb\x8b\xd8\x12\x2f\xcd\xbf\xc3\
\xdf\xba\xf7\x5f\x4a\xcb\x8f\xa5\xc5\xfe\xb6\xbf\xfb\xef\xeb\xef\
\xdd\x7b\xae\xfd\xfb\xaf\x75\x5f\x5f\xcd\x9a\x67\x83\xf9\x5d\xff\
\x00\x31\x39\x23\x79\x23\x23\xe1\x37\xc9\xd5\x2d\x16\xbd\x66\x39\
\x3a\x6f\x78\x47\x2a\x01\x1d\xdd\x84\x91\x39\x52\xa2\xfa\x81\x23\
\xf3\xef\xdd\x7b\xaf\x88\x67\xbf\x75\xee\xbb\x00\x93\x60\x09\x27\
\xe8\x07\x27\xdf\xba\xf7\x5d\x7b\xf7\x5e\xeb\xd6\xfa\x7f\x8f\x23\
\xfc\x7f\x1c\x7f\xb1\x1e\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\
\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xdd\x1f\xfe\x11\x2b\xff\
\x00\x65\xd9\xf2\xdb\xff\x00\x15\x2a\x3f\xfd\xfc\x5d\x79\xef\xdd\
\x7b\xaf\xa5\x8f\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\
\xde\xfd\xd7\xba\xff\xd3\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\x6c\x3f\xe1\x45\x44\x37\xf3\
\xa9\xf9\xfa\x54\x82\x3f\xd2\xae\xdc\x17\x04\x11\x75\xea\xbd\x80\
\xac\x38\xfc\xab\x02\x0f\xf4\x3e\xfd\xd7\xba\xa7\xbc\x66\xf3\xde\
\x18\x5a\x45\xa0\xc3\xee\xbd\xcb\x89\xa1\x47\x92\x44\xa2\xc6\x67\
\x72\x94\x14\x89\x24\xa7\x54\xb2\x2d\x35\x2d\x54\x50\xab\xc8\xc2\
\xec\x42\xdc\x9f\xaf\xbf\x75\xee\xbe\x96\x7f\xf0\x8a\xfc\xd6\x77\
\x3b\xf0\x07\xe5\x25\x6e\x77\x2f\x97\xcc\xcc\x9f\x30\xb2\x34\xd0\
\x55\x65\xb2\x15\xb9\x19\x12\x38\xfa\x5b\xa9\x66\x68\x21\x9a\xb2\
\x69\x8a\x2a\xbc\xfa\x8a\xa9\x1c\xbd\xcf\xd7\xdf\xba\xf7\x44\x4b\
\xfe\x16\xef\xb8\x37\x2e\xdf\xdf\x1f\xcb\xaa\x5c\x16\x77\x3d\x83\
\x8a\xaf\x6a\xfc\x97\x49\x9b\x13\x95\xc8\xe3\x61\xaa\x96\x9b\x2d\
\xd2\x64\x09\x7e\xce\xa2\x18\xe7\x96\x9d\x2a\x78\xbd\xd9\x16\x4f\
\xc0\x6e\x7d\xd7\xba\x05\xff\x00\xe1\x14\x5b\x93\x73\x6e\x0f\x98\
\x1f\x32\xff\x00\x8e\xee\x1d\xc1\x9a\x8a\x9b\xe3\x66\xd5\xf1\x26\
\x57\x31\x92\xc8\xc1\x0c\x92\x76\x7e\x2b\x4b\x2c\x75\x75\x33\x42\
\xb3\x15\x56\x0a\xd6\xd4\x01\x60\x0d\x8b\x5f\xdd\x7b\xab\xe5\xff\
\x00\x85\x7d\x65\x32\x58\x7f\xe5\x11\x2d\x6e\x27\x29\x91\xc4\xd6\
\xaf\xc9\xfe\x93\x58\xea\xb1\x95\xf5\x58\xea\x82\x0d\x0e\xf9\x63\
\x19\x96\x92\x68\x64\x92\x3f\x48\x6d\x24\x95\xd4\xa1\xad\x75\x04\
\x7b\xaf\x75\xa4\x9f\xfc\x26\xd7\x73\x6e\x6d\xd7\xfc\xea\xfe\x12\
\x60\x77\x2e\x7f\x39\xb9\xb0\xd5\xf9\xce\xe1\x5a\xcc\x1e\x7f\x29\
\x5d\x9b\xc5\x57\x47\x07\xc7\xbe\xd8\xab\x02\xaf\x17\x92\x9e\xaa\
\x8a\xad\x69\x5a\x9c\x4e\xba\xe3\x6f\x14\x91\x2c\xab\x66\x45\x65\
\xf7\x5e\xeb\xeb\x8f\xfe\x8d\x7a\xeb\xfe\x78\x1d\x95\xff\x00\xa0\
\xae\x0b\xff\x00\xa8\x3d\xfb\xaf\x75\xef\xf4\x6b\xd7\x5f\xf3\xc0\
\xec\xaf\xfd\x05\x70\x5f\xfd\x41\xef\xdd\x7b\xaf\x7f\xa3\x5e\xb9\
\x3c\x1d\x81\xb2\x88\xff\x00\xc3\x57\x05\xff\x00\xd4\x1e\xfd\xd7\
\xba\x59\xa2\x2c\x6a\xa8\x8a\xa8\x88\xa1\x11\x10\x05\x54\x55\x00\
\x2a\xaa\x80\x02\xaa\x81\x60\x07\x00\x7b\xf7\x5e\xeb\xe2\x6d\xfc\
\xd5\x77\xbe\xfd\xc4\x7f\x33\x7f\xe6\x15\x8e\xa6\xde\x5b\xca\x82\
\x1a\x4f\x9a\x5f\x26\x20\x4a\x25\xdc\xb9\xd8\x56\x94\x47\xdc\x3b\
\xb9\x05\x32\x42\x6b\x87\x82\x3a\x70\x02\x24\x60\x05\x89\x14\x22\
\x80\xaa\x00\xf7\x5e\xea\xb7\x6b\xf2\x15\xf9\x5a\xc9\xf2\x19\x4a\
\xea\xcc\x95\x7d\x53\x07\xa9\xae\xaf\xa9\x9a\xb2\xb2\xa1\xc2\xaa\
\x07\x9e\xa6\xa1\xe4\x9a\x56\x08\xa0\x5d\x98\x9b\x00\x3d\xfb\xaf\
\x74\xf3\x8c\xde\x5b\xbf\x09\x48\xb4\x18\x6d\xd7\xb9\x31\x14\x2b\
\x23\xca\xb4\x58\xcc\xe6\x52\x82\x91\x65\x96\xc6\x49\x16\x9a\x96\
\xaa\x28\x44\x92\x10\x35\x1d\x37\x3f\x9f\x7e\xeb\xdd\x40\xcb\x67\
\x73\x99\xf9\xe2\xa9\xce\xe6\x72\xb9\xaa\x98\x62\xf0\x43\x51\x96\
\xc8\xd6\x64\xa7\x8a\x00\xed\x20\x86\x29\x6b\x26\x9a\x48\xe2\x12\
\x39\x6d\x20\x81\x72\x4f\xe7\xdf\xba\xf7\x5b\x6f\xf4\x47\xfc\x2b\
\x27\x74\x74\xd7\x58\xf5\xee\xd1\xaa\xfe\x5c\x3f\x1b\x73\x1b\xf7\
\x69\x6d\xfc\x36\x2f\x71\xf6\x5e\xcc\xdd\xd9\x8e\xa5\x7d\xe1\x99\
\xc3\x50\xc5\x89\x3b\xa2\x1d\xb1\xb4\xf6\x6c\xd0\xed\x6a\xfc\xf6\
\x3a\x92\x16\xca\xd3\xd2\xd6\x49\x49\x59\x59\xe5\x98\x47\x12\x48\
\x21\x4d\xae\x94\xe0\x82\xbf\x60\xe9\xc3\x2c\xa4\x51\xa5\x62\x3e\
\x66\xbf\xe1\xe8\x6b\x8f\xfe\x16\x63\xd8\x30\x86\x10\x7f\x2e\xae\
\xa4\x84\x39\x2c\xfa\x3b\xeb\xb0\x01\x72\xcc\xce\x6e\x46\xcf\x04\
\xdd\xdc\x9f\xf5\xcf\xbb\xf8\x87\xcc\x74\xd9\xa9\xe2\x7a\x00\xf7\
\xe7\xfc\x2b\x17\xb3\x77\x5f\x71\xec\x5e\xea\xc1\x7c\x24\xeb\x1d\
\xa5\xb9\x36\x76\xca\xdc\xbb\x06\xaa\x96\x3e\xe0\xde\xb9\x8a\x3d\
\xc1\xb7\xf7\x05\x7d\x36\x56\x38\xaa\x8d\x46\xda\xa4\x92\x9e\x6c\
\x6e\x4e\x95\x64\x43\xfb\xaa\xea\x4a\x15\x00\x9b\xa7\x95\x1d\xdc\
\x4b\x1b\xe9\x90\x29\x15\xa0\x3c\x7a\x5d\x6d\x77\x1c\x56\xf2\x5a\
\xcf\x07\x89\x03\x38\x6a\x06\x2a\x41\x1f\x30\x0f\x1e\x95\xfb\x33\
\xfe\x15\xe5\xda\xbb\x61\x73\x93\xe5\xbe\x0f\x75\xd6\xeb\xcb\xe7\
\xb2\x3f\x79\x53\x97\xc8\xf7\x96\xfd\xa7\x9a\x3a\x58\xe3\x09\x4d\
\x8e\x86\x9e\x3d\xb1\x34\x10\xd3\xd3\x12\xc5\x44\x62\x35\xf5\x7e\
\x9e\x2f\xee\x96\x71\xc9\x6e\xb2\x78\xd3\xb4\xb2\xb3\x54\xb1\xc7\
\xd8\x00\x18\x00\x74\xe5\xfd\xf4\x57\x6d\x08\x82\xc9\x20\x85\x12\
\x81\x54\x93\xf6\x92\x4e\x49\x3d\x1a\x3f\x88\x5f\xf0\xa7\xfe\xca\
\xf9\x77\xf2\xf3\xe3\x4f\xc6\x5a\xcf\x88\x9d\x7d\xd7\x38\xef\x90\
\xdd\xdf\xd4\x1d\x2d\x59\xbc\x31\x7d\xb5\xbb\x73\x95\xfb\x52\x2d\
\xfd\xd8\x18\xad\xb9\x5b\xb9\x31\xb8\x9c\x96\xdc\xa4\xa2\xc9\xd7\
\xc3\x4b\x96\x01\x29\xa5\x91\x12\x5d\x01\x75\x02\xf7\x0a\xfc\x4f\
\x97\x48\xbc\x4c\xd7\x48\xa7\x5b\x52\x7c\x96\xfe\x50\x10\xfc\xa0\
\xdf\x15\xfb\x97\x7b\x7c\x99\xdd\x98\xdd\xbb\x49\x16\xd0\xa6\xd8\
\xbb\x3b\x0d\xd7\x7b\x7a\x28\x76\x7d\x2e\x05\xb2\x0f\xb8\x04\xf9\
\x96\xce\x0a\xbd\xc5\x57\xbb\x5f\x27\x29\x79\xa5\x8e\x13\x46\x55\
\x3c\x22\xcb\x66\x2d\xbc\xb3\x69\xee\xa2\xbc\x82\x6f\x0a\x61\x0b\
\xc4\xd8\xd4\x1d\x5e\x84\x62\xa2\x85\x08\xa8\x20\xe6\xb4\x3d\x0e\
\xf9\x0f\xdc\x1d\xc7\x90\xae\xf7\x1b\xab\x1b\x38\xe6\x17\x30\x34\
\x4c\xae\x48\x19\xe0\xc2\x99\xaa\x9c\xd3\x81\xf3\xe8\xc9\x6c\x8f\
\x81\xf9\x1d\xbb\xb4\xf6\xde\x0f\x74\xf7\xc6\xe4\xdf\x7b\x87\x0f\
\x8e\xa6\xc6\x66\x37\x8e\x43\x66\xe0\xf1\xf5\xfb\x9a\x1a\x18\x27\
\xc7\xd1\x3d\x6e\x3a\x3a\xfa\xca\x1a\x37\x5c\x47\x82\x09\x8c\x36\
\xfb\x87\x83\xc8\xf7\x2e\xc3\xd9\x84\x67\xc3\x8e\x38\xc6\x42\xa8\
\x19\xe3\x81\x4a\xfe\x7d\x01\x9e\x62\xf2\x4b\x21\x41\x57\x62\x7e\
\xc2\x4d\x71\xd7\xcf\xbb\x7d\xff\x00\xc2\x9b\xbb\x1b\x66\x76\x76\
\xf1\xc0\x7f\xb2\x7d\xd7\xf5\xd4\xfb\x47\x72\x66\xb6\xb4\x62\x5e\
\xd7\xdd\xd4\x2f\x54\xdb\x5f\x2d\x97\xc5\x53\x56\xd4\x2d\x16\xdc\
\x8d\x15\xa6\xd4\xd2\x49\x0d\x99\x3c\x87\xd2\x40\x02\xc5\xf7\xb6\
\x42\xf6\x44\x90\xca\x56\x82\x94\xa5\x7a\x55\x6d\xb8\xb5\xbc\x6c\
\x82\x30\x49\xf3\xad\x29\xd6\xcf\xdf\x1d\x7f\x96\x3c\xdf\x23\x37\
\x77\xc2\x4f\xe7\x3f\xb5\x7e\x44\x6f\xce\x90\xdd\xbb\xff\x00\xa5\
\xba\x3f\xb5\xbb\x63\xa1\x36\x76\xd0\xc2\x6e\x8d\xb5\xbd\xf6\x0e\
\xf9\xda\x18\x8c\xdf\x61\x74\xf6\x63\x72\x66\x32\x14\xf5\x5b\x83\
\x69\xee\x1c\x06\x4f\xf8\x6d\x42\x55\xe3\xe5\x12\x24\x0b\x3a\x22\
\x4e\x10\xab\xf1\x5a\xdb\x8b\x19\x36\xeb\x98\x56\x6b\x67\xd4\x19\
\x5c\x02\xae\x8c\x28\xc8\xca\x6a\x0a\xb0\x24\x30\x3c\x47\x49\xee\
\xa6\x86\xf5\x27\x86\xf2\xd2\x39\x6c\xe5\x8c\xa4\x91\xb8\x0c\x92\
\x2b\x02\x0a\xb0\x22\x85\x48\x24\x11\xe6\x3a\x03\xbb\x27\xa7\xfe\
\x2f\xe0\x3b\x0f\x76\x60\x64\xeb\xcf\x99\x9b\x96\x99\x73\x59\x8c\
\xb5\x47\x60\xf5\x1e\xc7\xd8\x98\x4e\xb4\x8e\xab\x2b\x94\xaa\xab\
\xa7\xd9\x7b\x23\xae\xb7\x5d\x57\xf7\xaa\x9f\x6f\xed\xda\x29\x23\
\x82\x3c\x8d\x55\x58\x33\x32\xb0\x10\xaa\xaa\xdf\x0b\x24\xfb\x90\
\x72\x55\xec\x72\xdc\x5f\xf3\x6d\xec\x5b\xac\xb3\xc9\x23\xfd\x34\
\x30\xad\xb2\xab\xb1\x65\x8a\x28\xe4\x0d\x22\xac\x60\x85\x05\xa4\
\x35\xfe\x10\x07\x5c\xfa\x3f\xdd\xef\xc8\x17\xb1\x4f\x75\xb8\x73\
\xd6\xe3\x0e\xf1\x35\xcc\xb2\xb8\xb5\x8a\x18\xed\x23\x49\x1c\xb2\
\x41\x04\x0e\x19\xd5\x22\x53\xa4\x33\x48\x49\xf4\x03\x1d\x19\x9f\
\x89\xdd\x3f\x5d\x26\xe0\x35\xdf\x1f\xfe\x38\xef\x3e\xa3\xfb\x78\
\x6b\x06\x67\xe4\xef\xc9\x5d\xcb\x86\xcf\xf6\x16\xd3\xdb\xce\xa5\
\x72\x95\xfd\x75\xb4\x30\x34\x74\xbb\x1b\xaf\xab\x24\xc7\xb4\x88\
\xd9\x6a\xa6\xa9\xad\xa4\x89\xdb\x43\x06\xb3\x09\x7b\xdb\x2f\xbb\
\x77\xb6\x9e\xd7\x5d\xc5\xbb\x6d\xb6\x93\x5f\xf3\x0a\x7c\x17\x37\
\x45\x59\xa3\xa8\xa5\x62\x89\x15\x63\x46\xa1\x23\x59\x56\x70\x09\
\x01\x80\x26\xb3\x6f\xb4\xbf\x75\x4f\x69\x7d\x9f\xbe\x8b\x7d\xda\
\xac\xee\x37\x3e\x6a\x8f\xe0\xbc\xbd\x65\x91\xa2\xae\x0f\x81\x12\
\x85\x8a\x23\x42\x46\xbd\x2d\x25\x30\x18\x02\x6b\x64\xbf\xcb\xcb\
\xe5\xf7\xc7\x3f\x9d\x31\x7c\x8c\xdb\x3d\x25\x41\xb7\x3b\x4b\xa6\
\x7e\x26\x76\xd6\x2f\xa2\x36\xe7\x72\x55\x88\xb7\x26\x3b\xb4\xb7\
\x8a\x6c\x5c\x06\xea\xec\x6c\xee\xdc\x7c\xad\x0c\xa2\x5d\xbf\x8e\
\xcd\xe6\xd2\x8e\x9b\x25\x0c\xb2\x45\x98\x58\x8d\x54\x65\xa0\x78\
\x65\x96\x7c\xeb\x23\xfa\xb1\xef\xf4\x6b\xd7\x5f\xf3\xc0\xec\xaf\
\xfd\x05\x70\x5f\xfd\x41\xef\xdd\x7b\xad\x37\xbf\xe1\x67\xf4\x94\
\x9b\x07\xe1\x2f\xc4\xda\xdd\x8b\x49\x4b\xb2\xeb\x6b\x7e\x53\xd5\
\xd2\xd6\x56\xed\x3a\x78\x76\xe5\x65\x55\x28\xea\x5d\xef\x2f\xdb\
\x54\x55\x61\xd2\x8e\x79\xa9\x8c\xb1\xab\x98\xd9\x8a\x16\x45\x24\
\x5d\x41\x1e\xeb\xdd\x50\x5f\xfc\x24\x5b\x76\x6e\xfc\xf7\xf3\x82\
\xdb\xd4\xb9\x9d\xcf\xb9\x73\x14\x71\x7c\x74\xef\x19\xda\x97\x23\
\x9c\xca\xd7\xd2\xab\x0a\x6d\xb5\x1a\x4b\x24\x15\x35\x52\xc2\x74\
\xbc\x82\xc5\x85\x83\x11\x6e\x6d\xef\xdd\x7b\xaf\xaa\x57\xbf\x75\
\xee\xb0\x54\xd3\x53\x56\xd3\xcf\x47\x59\x4f\x05\x5d\x25\x54\x32\
\x53\xd4\xd2\xd4\xc5\x1c\xf4\xf5\x10\x4a\xa5\x25\x86\x78\x25\x57\
\x8a\x68\x65\x46\x21\x95\x81\x0c\x0d\x88\xf7\xee\xbd\xd2\x47\xfd\
\x1a\xf5\xd7\xfc\xf0\x3b\x2b\xff\x00\x41\x5c\x17\xff\x00\x50\x7b\
\xf7\x5e\xeb\xb5\xeb\x7e\xbb\x52\x19\x76\x16\xcb\x56\x53\x70\xcb\
\xb5\xb0\x60\x82\x3e\x84\x11\x43\x70\x47\xbf\x75\xee\xbe\x13\x5f\
\x20\xfc\x5f\xe9\xf3\xbb\xfc\x02\x25\x83\xfd\x2f\xf6\x57\x85\x60\
\x58\xd2\x01\x17\xf7\xcf\x35\xe3\x10\xa4\x40\x44\xb1\x04\xb6\x90\
\xa0\x28\x1f\x4e\x3d\xfb\xaf\x75\xf6\x4e\xfe\x50\xbb\x0f\x64\x64\
\x7f\x95\x77\xf2\xeb\xad\xc8\xec\x9d\xa3\x57\x59\x55\xf0\xc3\xe3\
\xa4\xf2\xd5\x54\xed\x8c\x24\x93\xd4\x99\xba\xb7\x6d\x4a\x2a\x65\
\x95\xe8\x75\xcd\x25\x48\x7f\x23\x48\x49\x69\x59\xcb\x92\x4b\x12\
\x7d\xd7\xba\xb1\x6f\xf4\x6b\xd7\x5f\xf3\xc0\xec\xaf\xfd\x05\x70\
\x5f\xfd\x41\xef\xdd\x7b\xaf\x7f\xa3\x5e\xba\xff\x00\x9e\x07\x65\
\x7f\xe8\x2b\x82\xff\x00\xea\x0f\x7e\xeb\xdd\x7b\xfd\x1a\xf5\xd7\
\xfc\xf0\x3b\x2b\xff\x00\x41\x5c\x17\xff\x00\x50\x7b\xf7\x5e\xeb\
\x42\x8f\xf8\x5b\xd6\xda\xc1\x6d\xfa\x1f\xe5\xc1\xfc\x0b\x6e\xe1\
\x70\x70\x55\x54\xfc\xa7\x59\xa5\xc4\x61\x71\xf8\xbf\xba\x92\x18\
\xba\x05\x84\x53\xcf\x45\x4b\x03\xd4\x8a\x71\x36\xa5\x46\x66\x11\
\xf9\x09\x00\x17\x24\xfb\xaf\x74\x56\xbf\xe1\x12\xbf\xf6\x5d\x9f\
\x2d\xbf\xf1\x52\xa3\xff\x00\xdf\xc5\xd7\x9e\xfd\xd7\xba\xfa\x58\
\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\
\xaf\xff\xd4\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x15\x5d\xf3\xf0\x53\xe1\x1f\x67\x6e\xec\xe6\
\xff\x00\xec\xaf\x87\x5f\x16\x7b\x0b\x7d\xee\x7a\x98\xab\x77\x26\
\xf5\xdf\x1f\x1f\xba\x9f\x76\x6e\xcd\xc1\x59\x0d\x2c\x14\x50\xd5\
\xe6\xf7\x16\x7b\x69\x57\xe5\xf2\xb5\x31\x51\x52\xc7\x0a\xbc\xf3\
\x48\xcb\x14\x6a\xa0\xe9\x50\x07\xba\xf7\x49\x5f\xf8\x6d\x9f\xe5\
\xd9\xff\x00\x78\x13\xf0\xbf\xff\x00\x49\x77\xa4\x3f\xfb\x07\xf7\
\xee\xbd\xd6\x87\x3f\xf0\xab\x2d\xf1\xbd\x7e\x03\x7c\xcd\xf8\xf5\
\xd6\x9f\x05\x77\x86\xe8\xf8\x5b\xd7\x1b\xc7\xe3\x15\x16\xf9\xdd\
\xdd\x7f\xf1\x37\x3f\x95\xf8\xe7\xb2\x77\x4e\xf6\x93\xb5\x7b\x27\
\x01\x26\xf2\xdc\x7b\x57\xa7\xea\xb6\x76\x0f\x39\xba\xa5\xc1\x61\
\xa8\xe8\x9b\x21\x55\x04\xb5\x66\x92\x92\x18\x7c\x9e\x38\x91\x47\
\xba\xf7\x5a\x83\xf6\xff\x00\xc8\xdf\x90\xbf\x20\xe5\xc0\x4f\xdf\
\x7d\xef\xdc\x9d\xdd\x3e\xd4\x87\x21\x4d\xb5\xe6\xed\xde\xce\xde\
\xdd\x93\x36\xdb\xa7\xcb\x4b\x4d\x36\x56\x0c\x0c\x9b\xcb\x37\x99\
\x7c\x44\x39\x39\xa8\xa1\x6a\x85\xa7\x31\x89\x9a\x14\x2f\x72\x8b\
\x6f\x75\xee\xa2\x75\x1f\x7f\xf7\xbf\xc7\xfc\xa6\x63\x37\xd0\xfd\
\xd5\xdb\x5d\x29\x99\xdc\x38\xe8\xf0\xf9\xec\xbf\x52\x76\x36\xf0\
\xeb\x8c\x9e\x6f\x13\x0d\x54\x75\xd0\xe2\xf2\xd5\xfb\x3f\x31\x86\
\xab\xc8\xe3\xe2\xad\x85\x26\x58\x66\x77\x8d\x65\x50\xc0\x6a\x00\
\xfb\xf7\x5e\xeb\x68\xbf\xf8\x4c\xaf\x72\x76\xff\x00\xcd\xff\x00\
\xe6\x63\x0f\x48\x7c\xd1\xed\x4e\xc8\xf9\x79\xd2\xcf\xd0\x3d\xaf\
\xbb\x9f\xa8\x7e\x4f\xef\x9d\xd1\xdf\xbd\x5e\xdb\xaf\x6f\xd5\x6d\
\x28\xf0\x3b\xa1\xb6\x07\x6a\xe5\x37\x5e\xd3\x3b\x8b\x09\x1e\x46\
\xa1\x68\xeb\x4d\x27\xdc\xd3\x09\xe4\x11\xba\xeb\x6b\xfb\xaf\x75\
\xb6\x17\xf3\xe7\xf8\xc7\xf1\xb7\xe2\x77\xf2\x9f\xf9\x69\xf2\x07\
\xe2\xcf\xc7\xce\x90\xf8\xd5\xdf\x3d\x7b\x87\xeb\x2a\x9d\x81\xdd\
\xdd\x03\xd5\x3b\x17\xa7\x3b\x77\x62\xd4\xe6\xfb\xab\xae\x36\xde\
\x6a\xa3\x67\x76\x4f\x5e\x60\x76\xee\xf1\xdb\x53\x66\x76\xe6\x62\
\xaf\x1d\x54\xd4\x75\x90\x9a\x8a\x2a\xb9\xa0\x7b\xc7\x23\x29\xf7\
\x5e\xeb\x43\x8f\xe5\x21\xf3\xdb\xe7\x46\xfc\xfe\x68\x7f\xcb\xf3\
\x66\x6f\x8f\x9a\x3f\x2c\x77\x8e\xd0\xdc\xff\x00\x2e\xfa\x1f\x07\
\xb9\x76\xae\xea\xf9\x15\xdb\xdb\x87\x6d\xee\x1c\x2e\x4f\xb0\xb0\
\x74\x79\x2c\x36\x73\x07\x98\xdd\xf5\xb8\xbc\xb6\x2b\x25\x47\x33\
\xc3\x3d\x3c\xf1\x49\x14\xb1\x3b\x2b\x29\x07\xdf\xba\xf7\x5f\x5a\
\x6f\x93\x99\x2c\x8e\x1b\xe3\x67\xc8\x4c\xbe\x1f\x21\x5b\x89\xcb\
\x62\xba\x3b\xb6\x32\x58\xbc\xae\x36\xaa\x6a\x1c\x8e\x33\x23\x43\
\xb0\xb3\xf5\x54\x59\x0a\x0a\xda\x77\x8e\xa2\x8e\xb6\x8a\xa6\x25\
\x92\x29\x63\x65\x78\xe4\x50\xca\x41\x00\xfb\xf7\x5e\xeb\xe2\x90\
\xbf\xcc\x87\xf9\x88\x22\xaa\x27\xcf\x4f\x99\xea\xaa\xa1\x55\x57\
\xe5\x17\x77\x85\x55\x51\x60\xa0\x0d\xf3\x60\x00\x1e\xfd\xd7\xba\
\xe6\xbf\xcc\x97\xf9\x89\xab\x06\x5f\x9e\xff\x00\x34\x55\x94\x86\
\x52\x3e\x51\xf7\x80\x20\x83\x70\x41\xfe\xfc\xf0\x41\xf7\xee\xbd\
\xd1\x46\xdc\x9b\x97\x71\x6f\x2d\xc3\x9c\xdd\xbb\xbf\x3f\x9a\xdd\
\x5b\xaf\x73\x65\xb2\x19\xed\xc9\xb9\xb7\x26\x52\xbb\x39\xb8\x37\
\x06\x73\x2d\x55\x2d\x76\x53\x33\x9b\xcc\xe4\xe7\xaa\xc8\xe5\x72\
\xb9\x2a\xd9\xde\x6a\x8a\x89\xe4\x92\x69\xa5\x76\x77\x62\xc4\x9f\
\x7e\xeb\xdd\x7d\x61\xff\x00\x90\x3f\xc1\x9f\x84\xfd\xa5\xfc\x9f\
\x7e\x0e\xef\xce\xcd\xf8\x7b\xf1\x6f\xb1\x37\xce\xe2\xeb\xbd\xd7\
\x57\xb8\x37\x9e\xf9\xf8\xff\x00\xd5\x1b\xb7\x75\xe7\xaa\xa1\xed\
\x6d\xff\x00\x45\x0d\x56\x67\x71\x67\xf6\x9e\x43\x31\x94\xa8\x8e\
\x8e\x96\x28\x95\xe7\x9a\x46\x58\xa3\x55\x04\x2a\x80\x3d\xd7\xba\
\xb8\x3f\xf8\x6d\x9f\xe5\xd9\xff\x00\x78\x13\xf0\xbf\xff\x00\x49\
\x77\xa4\x3f\xfb\x07\xf7\xee\xbd\xd7\xce\xfb\xfe\x16\x1b\xd1\x5d\
\x23\xd0\x7f\x39\xbe\x33\x6d\xae\x8a\xe9\xce\xab\xe9\x6d\xb9\x97\
\xf8\x9d\x45\x9b\xcb\x60\x7a\x9b\xaf\x76\x97\x5d\x61\x72\xb9\xa3\
\xdb\xfd\xa1\x40\x72\xf9\x1c\x56\xcf\xc4\x61\xe8\x2b\xb2\x86\x86\
\x8e\x18\x4d\x44\xb1\xb4\xc6\x28\x91\x0b\x69\x55\x03\xdd\x7b\xa3\
\x9f\xff\x00\x08\xce\xf8\xd3\xf1\xc7\xe4\x16\xd6\xfe\x60\x92\xf7\
\xd7\xc7\xee\x93\xee\xe9\xb6\xbe\x7b\xe3\x6c\x3b\x66\x7e\xdd\xea\
\xbd\x8f\xd9\x12\xed\xc8\xb2\xf8\xfe\xeb\x93\x2d\x0e\x0a\x4d\xe3\
\x83\xcc\x9c\x44\x79\x59\x31\xb4\xcd\x50\x20\xf1\xf9\x8d\x34\x65\
\xaf\xa1\x6d\xee\xbd\xd0\xe1\xff\x00\x0b\x15\xf8\xb1\xf1\x87\xa0\
\x7e\x21\xfc\x4b\xcd\xf4\x4f\xc7\x1e\x87\xe9\x5c\xd6\x73\xe4\x86\
\x77\x15\x9a\xcc\xf5\x37\x51\x6c\x0e\xb9\xca\xe5\xb1\x69\xd6\x39\
\xfa\xb5\xc6\x64\xf2\x1b\x3f\x6f\xe1\xea\xb2\x18\xf1\x57\x04\x72\
\x88\x66\x67\x8c\x49\x1a\xb0\x00\x8b\xfb\xf7\x5e\xeb\xe7\xbb\xef\
\xdd\x7b\xab\x9a\xff\x00\x84\xf6\x75\xfe\xc2\xed\x2f\xe7\x1b\xf0\
\x93\x61\x76\x76\xc8\xda\x1d\x8f\xb1\x77\x0e\xf1\xec\x58\x33\xfb\
\x2b\x7e\x6d\xbc\x3e\xee\xda\x59\xc8\x69\x3a\x47\xb3\x72\x54\x71\
\xe6\x36\xe6\x7e\x8e\xbf\x11\x93\x8e\x8f\x25\x47\x0d\x44\x4b\x3c\
\x2e\xa9\x3c\x28\xe0\x6a\x50\x47\xba\xf7\x5f\x4a\x3f\xe6\x75\xf0\
\xbb\xe1\xcf\x46\x7f\x2e\x8f\x9c\x9d\xcd\xd2\xbf\x13\xbe\x34\xf5\
\x07\x6f\xf5\x67\xc5\x4e\xf4\xdf\xbd\x63\xda\xbd\x61\xd1\x7d\x5f\
\xb0\x3b\x23\xae\x37\xd6\xd6\xeb\xad\xc1\x98\xdb\x1b\xdb\x62\x6f\
\x8d\xa9\xb5\xf1\x3b\x9b\x68\x6e\xdd\xb7\x97\xa4\x8a\xae\x83\x23\
\x8f\xaa\xa7\xab\xa4\xa9\x89\x24\x8a\x45\x65\x07\xdf\xba\xf7\x5f\
\x29\x4f\xf8\x72\x3f\xe6\x25\xff\x00\x79\xed\xf3\x43\xfd\x8f\xca\
\x3e\xf0\x3f\xfc\xbc\xfb\xf7\x5e\xeb\x92\x7f\x32\x6f\xe6\x29\x1b\
\xab\xc7\xf3\xe3\xe6\x8a\x3a\x9b\xab\x2f\xca\x4e\xf0\x04\x1f\xea\
\x0f\xf7\xe7\xdf\xba\xf7\x44\xce\xb2\xb2\xaf\x21\x57\x55\x5f\x5f\
\x55\x51\x5d\x5d\x5d\x51\x3d\x65\x6d\x6d\x5c\xd2\x54\xd5\xd6\x55\
\xd4\xca\xd3\x54\xd5\x55\x54\x4c\xcf\x35\x45\x45\x44\xce\xce\xee\
\xe4\xb3\xb1\x24\x92\x4f\xbf\x75\xee\xbe\xdb\x5f\xca\x36\x24\x9b\
\xf9\x56\x7f\x2e\xd8\xa5\x40\xf1\xc9\xf0\xab\xe3\x6a\xba\x30\xba\
\xb2\xb7\x52\xed\x5e\x08\x3f\x50\x47\xbf\x75\xee\x8f\x7a\xec\xbd\
\xa6\xa1\x80\xdb\xd8\x93\xad\xb5\x31\x6a\x28\x18\xb3\x7f\x52\x4a\
\x5c\x9f\x7e\xeb\xdd\x7c\xd9\xbf\xe1\x58\xbf\x3b\x7e\x61\xf5\xcf\
\xce\xee\xc5\xf8\x5d\xd7\xff\x00\x22\x3b\x2b\x64\x7c\x5a\xdc\xbd\
\x0f\xd4\x59\x2d\xc1\xd2\xfb\x4b\x32\xbb\x73\x69\xe6\xa4\xdc\x18\
\xfc\xe3\xee\x0a\x4c\xb1\xc3\xd3\xd1\xe5\xb2\x78\x8c\xfc\x8b\x7a\
\xea\x19\xea\x64\xa2\xac\xb0\x13\x44\xea\xaa\x07\xba\xf7\x5a\xa2\
\x75\x2f\xca\xdf\x94\x7d\x05\x85\xca\x6d\xbe\x89\xf9\x25\xdf\x7d\
\x2b\xb7\x73\x99\x45\xce\x66\xb0\x3d\x4d\xdc\x1d\x85\xd7\x38\x6c\
\xbe\x69\x29\x23\xa0\x4c\xbe\x4f\x19\xb3\xf7\x0e\x1e\x8a\xbf\x26\
\xb4\x30\xa4\x22\x79\x51\xe5\x11\x22\xa6\xad\x20\x01\xee\xbd\xd6\
\xff\x00\x3f\xf0\x8c\xdf\x91\xbf\x21\xbe\x40\xe2\x3f\x98\x24\xbd\
\xf5\xdf\x3d\xcd\xdd\xb2\x6d\x8c\x9f\xc6\xd4\xdb\x2d\xdb\xbd\x9f\
\xbd\xbb\x21\xb6\xe8\xcb\x52\x77\x59\xcb\x0c\x13\xef\x2c\xde\x65\
\xf1\x23\x29\xfc\x3a\x9b\xee\x44\x06\x31\x37\xdb\xc5\xae\xfa\x16\
\xde\xeb\xdd\x2d\x3f\xe1\x6d\x9f\xf6\x43\x9f\x10\xff\x00\xf1\x6b\
\xab\x3f\xf7\xd0\xef\x9f\x7e\xeb\xdd\x7c\xe6\xba\xbb\xb7\xfb\x67\
\xa3\xf7\x4a\x6f\x9e\x96\xed\x0e\xc3\xea\x1d\xed\x1e\x3e\xbb\x13\
\x1e\xf0\xeb\x0d\xe9\xb9\x36\x0e\xe9\x8f\x15\x93\x44\x8f\x25\x8d\
\x4d\xc1\xb5\x72\x58\xac\xb2\x50\x64\x23\x8d\x56\x68\x44\xde\x39\
\x42\x80\xc0\xd8\x7b\xf7\x5e\xeb\x61\xef\xf8\x4f\xb7\xce\x2f\x9a\
\xbd\xa7\xfc\xe2\x7e\x10\xec\x1e\xce\xf9\x7f\xf2\x8b\xb1\xb6\x2e\
\xe3\xde\xfb\xf6\x9b\x70\xec\xbd\xf7\xdf\xfd\xaf\xbb\xf6\x9e\x76\
\x9a\x9b\xa6\x7b\x23\x23\x4f\x4f\x99\xdb\x9b\x83\x76\x64\x70\xf9\
\x48\x20\xaf\xa2\x86\x74\x59\xe1\x75\x49\xa2\x47\x16\x65\x52\x3d\
\xd7\xba\xfa\xca\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\
\x89\x9d\x6f\xf2\xe5\xfe\x5e\xd9\x2a\xca\xdc\x8e\x47\xe0\x97\xc3\
\x7c\x86\x43\x25\x59\x57\x90\xc8\xd7\x57\x7c\x63\xe9\x4a\xba\xca\
\xfa\xfa\xea\x89\x2a\xab\x6b\x6b\x6a\x6a\x36\x4c\x93\x55\x55\x56\
\x54\xcc\xf2\x4b\x24\x8c\xcd\x23\xb1\x2c\x49\x27\xdf\xba\xf7\x5f\
\x28\xbf\xe6\x71\xf3\x43\xe6\x2f\x47\x7f\x31\x4f\x9b\xfd\x37\xd2\
\xdf\x2b\xfe\x4b\x74\xff\x00\x51\x75\x77\xca\x6e\xef\xd8\x9d\x67\
\xd5\x3d\x5f\xde\xbd\xa3\xb0\x3a\xe3\xae\x36\x36\xd8\xec\x2c\xf6\
\x27\x6d\x6c\xad\x89\xb1\xf6\xae\xe9\xc5\x6d\xad\xa5\xb4\xf6\xde\
\x2a\x9a\x2a\x5a\x0c\x75\x05\x34\x14\xb4\x94\xf1\x2c\x71\xa2\xaa\
\x81\xef\xdd\x7b\xa2\x33\xff\x00\x0e\x47\xfc\xc4\xbf\xef\x3d\x7e\
\x68\x7f\xe9\x51\xf7\x87\xff\x00\x67\x3e\xfd\xd7\xba\xfa\x67\xff\
\x00\xc2\x51\x7b\x77\xb5\xfb\xb3\xf9\x51\xd1\xef\x6e\xe6\xec\xfe\
\xc3\xed\xcd\xe6\xff\x00\x23\x7b\x97\x16\xfb\xb7\xb3\xb7\xa6\xe3\
\xdf\xbb\x9c\xe3\x28\xa1\xda\x32\x51\xe3\x5b\x3d\xba\x72\x59\x5c\
\xa9\xa0\xa4\x7a\x99\x1a\x28\x4c\xa6\x38\xcc\x8c\x54\x0d\x47\xdf\
\xba\xf7\x54\x45\xff\x00\x0b\x11\xf9\x53\xf2\x7f\xa0\xfe\x69\xfc\
\x59\xc0\x74\x57\xc9\x0e\xf9\xe9\x6c\x0e\x67\xe2\xf5\x46\x63\x2f\
\x83\xea\x6e\xdf\xec\x0e\xb9\xc4\x65\x32\xe7\xb5\xf7\xbd\x11\xca\
\xe4\xb1\xbb\x3f\x70\x61\xa9\x2b\xb2\x2d\x47\x47\x14\x3e\x79\x51\
\xe4\xf1\x42\x8b\x7b\x28\x1e\xfd\xd7\xba\xd2\x9b\xb7\xfe\x4a\x7c\
\x8b\xf9\x08\x36\xfa\xf7\xe7\x7e\xf7\x4f\x77\xae\xd3\x19\x21\xb5\
\x97\xb7\xbb\x4b\x7c\x76\x48\xdb\x43\x30\x69\x1b\x2f\xfc\x00\x6f\
\x2c\xee\x64\x61\xff\x00\x8a\x1c\x7d\x39\xa9\xfb\x7f\x1f\x9f\xc1\
\x1e\xbd\x5a\x16\xde\xeb\xdd\x6d\xb9\xff\x00\x08\x95\xff\x00\xb2\
\xec\xf9\x6d\xff\x00\x8a\x95\x1f\xfe\xfe\x2e\xbc\xf7\xee\xbd\xd7\
\xd2\xc7\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7f\xff\xd5\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\xb7\xbf\x9e\x0f\xf3\x8d\xfe\x67\
\xff\x00\x1d\x3f\x9a\xcf\xcc\xee\x96\xe9\x2f\x9a\x7d\xcd\xd7\x3d\
\x59\xb0\x7b\x1b\x07\x8b\xd9\xbb\x27\x6f\x64\xb0\xf0\xe1\x76\xf6\
\x3a\xab\xae\xf6\x66\x5a\x6a\x2c\x74\x53\x61\xa7\x95\x20\x6c\x86\
\x46\x69\x3d\x4e\xc4\xb3\x92\x49\xf7\xee\xbd\xd5\x53\xff\x00\xc3\
\xfc\x7f\x39\x2f\xfb\xd8\x4f\x7f\xff\x00\xe7\xdf\x05\xff\x00\xd6\
\x1f\x7e\xeb\xdd\x6d\xf3\xff\x00\x09\xe1\xe9\xce\xad\xfe\x75\xdf\
\x17\xbb\xa3\xe4\x17\xf3\x56\xd8\xf8\x3f\x9c\x1d\xd7\xd5\x7d\xf7\
\x57\xd3\x7d\x7f\xd9\x5d\xd7\x1d\x4e\x4f\x72\x6d\x7e\xad\xa7\xeb\
\xcd\x8b\xbd\xa9\x76\x3e\x3a\x5c\x35\x4e\x16\x8d\x70\x74\xbb\xb3\
\x76\x65\x2b\xe3\x56\x85\xa5\x15\x15\xf3\x12\xe5\x58\x2a\xfb\xaf\
\x75\x54\x7f\xf0\xae\x4f\x82\x3f\x0f\x7e\x0f\xee\xbf\x82\xf8\xdf\
\x89\x7f\x1f\x3a\xff\x00\xa2\x29\xbb\x0f\x6f\x7c\x80\xad\xdf\x23\
\x62\xd2\xe4\xa9\x4e\xe8\x9f\x6e\xe4\xba\x8e\x0d\xbe\x72\xab\x5d\
\x92\xae\x89\xff\x00\x83\x26\x62\xb3\xc0\x51\x51\xbf\xca\xa4\x0c\
\x58\x68\x0b\xee\xbd\xd6\x9c\x7e\xfd\xd7\xba\x30\x3f\x1a\xbe\x55\
\x7c\x87\xf8\x75\xd9\x07\xb7\xfe\x31\xf6\xce\xea\xe9\x9e\xcb\x6d\
\xbd\x96\xda\x6d\xbc\x76\x7c\xf4\x90\x65\x9b\x6e\x67\x5e\x8e\x4c\
\xb6\x25\x9a\xb6\x92\xb6\x03\x4b\x5b\x2e\x3e\x07\x61\xa3\x50\x78\
\x95\x94\x82\x01\xf7\xee\xbd\xd6\xc5\x5f\xca\x03\xf9\x85\xfc\xd3\
\xfe\x66\x3f\xcc\x57\xe3\x97\xc2\x1f\x9e\xdf\x22\x7b\x07\xe5\x27\
\xc4\xbe\xf3\xc9\xef\xda\x0e\xdc\xe8\x7e\xd0\xac\xa2\xad\xd8\xbb\
\xf6\x97\x67\xf5\x5e\xf9\xec\x2d\xa7\x1e\x76\x9b\x15\x43\x8a\xc8\
\x48\x36\xee\xfc\xda\x78\xbc\xbd\x2f\x8e\xa2\x3d\x35\xb8\xf8\x59\
\xb5\x2a\x94\x6f\x75\xee\xbe\x80\x7d\x6d\xfc\x93\x7f\x95\x2f\x4f\
\xf6\x1e\xc7\xed\x8e\xb2\xf8\x37\xd2\x5b\x37\xb1\xba\xd7\x75\xe0\
\xf7\xc6\xc5\xdd\xb8\x7c\x5e\x66\x3c\xa6\xda\xdd\xbb\x6b\x21\x06\
\x57\x01\x9d\xc7\x34\xd9\xa9\xa0\x15\xd8\xac\x95\x34\x73\xc2\x5d\
\x1d\x56\x54\x56\xb5\xc0\xf7\xee\xbd\xd5\x98\xee\x3d\xbd\x84\xdd\
\xdb\x7b\x3b\xb5\x37\x2e\x36\x9b\x33\xb7\x37\x3e\x1b\x29\xb7\xb3\
\xf8\x8a\xd4\x32\x51\xe5\x70\x99\xaa\x19\xf1\xb9\x5c\x6d\x5a\x02\
\xa5\xe9\xab\xa8\x6a\x64\x8a\x40\x08\x25\x18\xfb\xf7\x5e\xea\xa5\
\xd3\xf9\x02\xff\x00\x26\xc4\x55\x41\xfc\xbd\xfa\x08\x85\x50\xa0\
\xbe\x2f\x70\x48\xc4\x01\x61\xa9\xdf\x70\x33\xbb\x7f\x52\x49\x27\
\xf3\xef\xdd\x7b\xae\x5f\xf0\xc0\xff\x00\xc9\xb7\xfe\xf5\xed\xd0\
\x1f\xf9\xe8\xce\xff\x00\xf5\xfb\xdf\xba\xf7\x5f\x25\x9f\xe6\x43\
\xb0\xb6\x5f\x56\x7f\x30\x5f\x9b\xbd\x69\xd7\x1b\x67\x19\xb3\x3a\
\xfb\xaf\xfe\x56\xf7\xe6\xcd\xd9\x3b\x47\x0a\xb5\x09\x88\xdb\x1b\
\x53\x6d\xf6\x7e\xe6\xc4\x60\x30\x18\xb5\xab\xa8\xaa\xaa\x5c\x7e\
\x27\x19\x49\x14\x10\x89\x25\x91\xc4\x68\x2e\xc4\xf3\xef\xdd\x7b\
\xa1\x73\xa5\xff\x00\x9c\x7f\xf3\x3e\xf8\xed\xd5\xdb\x3f\xa5\x3a\
\x47\xe6\x8f\x72\x75\xbf\x55\x75\xfd\x05\x4e\x2f\x66\xec\x8d\xb9\
\x91\xc3\xc3\x86\xdb\xf8\xfa\xbc\x8d\x66\x5e\xa2\x92\x81\x2a\x30\
\xf5\x15\x02\x19\x72\x59\x09\xa5\x21\xa4\x6b\x34\x86\xd6\x1c\x7b\
\xf7\x5e\xe8\x50\xff\x00\x87\xf8\xfe\x72\x5f\xf7\xb0\x9e\xff\x00\
\xff\x00\xcf\xbe\x0b\xff\x00\xac\x3e\xfd\xd7\xba\x23\x9f\x29\x3e\
\x66\xfc\xa3\xf9\xb1\xbc\x36\xf6\xff\x00\xf9\x59\xdd\x7b\xcf\xbc\
\x77\x96\xd4\xdb\x4b\xb3\xf6\xee\xe0\xde\xd5\x34\x75\x35\xf8\x9d\
\xb2\x99\x4c\x86\x69\x70\xd4\x8d\x45\x47\x45\x1a\xd2\x0c\xae\x56\
\xa2\x7b\x15\x2d\xae\x56\xe6\xd6\x03\xdd\x7b\xa5\x67\xc5\x3f\xe6\
\x0f\xf3\x4b\xe0\xed\x2e\xf7\xa2\xf8\x97\xf2\x2b\xb0\xba\x26\x93\
\xb2\x27\xc0\x54\xef\xaa\x7d\x8f\x59\x41\x4b\x1e\xe5\xa8\xda\xc9\
\x96\x8f\x6f\x4d\x91\x5a\xec\x7d\x76\xa9\x31\x51\xe7\x6b\x16\x22\
\x9a\x48\x15\x0e\x0d\xef\xef\xdd\x7b\xad\xb4\x7f\xe1\x3b\x5d\x9d\
\xd8\x1f\xce\xd3\xe4\x07\x7d\xf4\xc7\xf3\x5c\xdd\x79\x5f\x9c\x9d\
\x57\xd3\x5d\x3d\x8d\xed\x0e\xb0\xd8\xfd\xd9\x24\x59\x2c\x26\xcd\
\xec\x1c\x86\xf4\xc4\x6d\x3a\xbd\xd7\x89\x8f\x0b\x0e\x12\xa1\x72\
\x92\xed\xcc\x8d\x45\x1d\xe4\x91\xe3\x11\x4c\xde\x9b\x9b\x8f\x75\
\xee\x8e\x4f\xfc\x29\xcb\xf9\x56\x7f\x2e\xef\x87\xff\x00\xcb\x07\
\x27\xdb\xff\x00\x19\xfe\x25\x75\x3f\x4e\xf6\x6a\x77\xcf\x52\x6d\
\x98\xb7\xa6\xd0\xa0\xcb\x53\x66\x61\xc1\x66\xff\x00\xbc\xad\x96\
\xc7\x47\x25\x4e\x5a\xaa\x1f\xb7\xaf\x14\x51\x89\x03\x23\x5c\x2f\
\x16\x20\x11\xee\xbd\xd6\xac\xbf\xf0\x9b\x1f\xfb\x7d\xcf\xc0\xcf\
\xfc\x3d\xbb\x37\xff\x00\x7c\x2f\x6b\x7b\xf7\x5e\xeb\xeb\xf3\xd9\
\x7d\x6d\xb1\x3b\x8f\xaf\x37\xb7\x53\xf6\x7e\xd8\xc6\x6f\x5e\xb9\
\xec\x7d\xaf\x9b\xd9\x5b\xe7\x68\xe6\xa3\x92\x5c\x46\xe5\xda\xbb\
\x8f\x1f\x3e\x2b\x39\x84\xc9\x47\x14\x90\xca\xf4\x59\x2c\x7d\x4c\
\x91\x48\x15\xd5\x8a\xb1\xb1\x07\xdf\xba\xf7\x55\x6e\x3f\x90\x37\
\xf2\x6c\x00\x0f\xf8\x6f\x7e\x80\xe3\x8e\x71\x39\xe2\x7f\xd8\x93\
\x9f\x24\xfb\xf7\x5e\xeb\xdf\xf0\xc0\xff\x00\xc9\xb4\x7f\xdd\x3d\
\xba\x03\xff\x00\x3d\x19\xd3\xfe\xf0\x73\xd6\xf7\xee\xbd\xd7\xc7\
\x27\xb7\x71\x98\xec\x2f\x6c\x76\x7e\x1b\x11\x47\x0e\x3b\x13\x89\
\xec\x3d\xeb\x8c\xc5\xe3\xe9\xb5\x8a\x7a\x0c\x75\x06\xe4\xc9\xd2\
\xd1\x51\xc0\x24\x79\x24\x10\xd2\xd3\x44\xa8\x9a\x99\x9b\x4a\x8b\
\x92\x79\xf7\xee\xbd\xd5\x86\x75\xef\xf3\xb9\xfe\x6c\x1d\x51\xb0\
\x76\x4f\x57\x75\xd7\xce\x8e\xf0\xda\x5d\x7f\xd7\x1b\x53\x01\xb1\
\xb6\x3e\xd6\xc5\x65\x70\xc9\x8c\xdb\x7b\x4b\x6b\x63\x29\xb0\xbb\
\x7b\x03\x8e\x59\xb0\xb3\x4c\xb4\x18\x8c\x55\x1c\x54\xf0\xab\xbb\
\x15\x8a\x35\x5b\xd8\x0f\x7e\xeb\xdd\x2c\x3f\xe1\xfe\x3f\x9c\x97\
\xfd\xec\x27\xbf\xff\x00\xf3\xef\x82\xff\x00\xeb\x0f\xbf\x75\xee\
\xb7\x66\xfe\x44\xbf\x11\xfe\x36\x7f\x37\xaf\x81\x38\x7f\x98\xff\
\x00\xcc\xb7\xa7\xf6\x8f\xcc\x6f\x93\xd9\x4e\xd4\xec\x6e\xb9\xaf\
\xee\x6e\xde\xa7\xaa\xc8\x6e\xfa\x9d\x91\xb0\xea\x71\x94\xdb\x43\
\x6e\x49\x36\x22\xaf\x0f\x43\xf6\x18\x28\x2b\xe6\x58\x6d\x00\x7f\
\xdc\x3a\x99\xbd\xfb\xaf\x75\xae\x37\xfc\x2b\x1f\xe1\x8f\xc5\x9f\
\x84\xff\x00\x2f\x7e\x34\xec\x3f\x8a\x5d\x21\xb2\x7a\x37\x68\xee\
\xcf\x8d\xd3\x6e\xdd\xc9\x83\xd9\x14\xd5\xb4\xb4\x59\x9d\xc7\xfe\
\x93\xf7\xa6\x1d\x72\xd5\xa9\x5b\x5d\x5a\x5a\xa9\x31\x98\xe8\x61\
\x05\x4a\xfa\x10\x03\x7b\x0f\x7e\xeb\xdd\x5b\x2f\xfc\x21\xc3\xfe\
\x2c\x9f\xcc\x83\xfe\xd6\xbf\x17\x7f\xf7\x13\xbd\xfd\xfb\xaf\x75\
\xba\x37\xca\x5f\x85\x9f\x15\xbe\x6d\x6d\x6d\xb5\xb2\x7e\x57\x74\
\x86\xca\xef\x2d\xa9\xb3\xf7\x03\xee\xad\xb1\x83\xde\xd4\xd5\xb5\
\x34\x58\x6d\xc3\x26\x3a\xab\x11\x26\x56\x8d\x68\xab\x68\x64\x5a\
\x97\xc6\xd6\xcb\x09\xd4\xcc\xa5\x1c\xf1\x7b\x1f\x7e\xeb\xdd\x12\
\x1f\xf8\x60\x7f\xe4\xdb\xff\x00\x7a\xf6\xe8\x0f\xfc\xf4\x67\x7f\
\xfa\xfd\xef\xdd\x7b\xaa\xe7\xfe\x6d\x5f\xcb\x97\xe1\x0f\xf2\xde\
\xfe\x5d\xff\x00\x26\x7e\x6d\x7c\x16\xf8\xdf\xd7\x7f\x18\xfe\x57\
\xf4\x26\xd9\xda\x99\xfe\x9e\xef\x4e\xb3\xa2\xae\xa2\xde\xfb\x07\
\x2d\xb8\xbb\x23\x65\xec\x6c\xfd\x5e\x0e\xa3\x29\x5f\x94\xa0\x8d\
\xf3\x1b\x3b\x74\x64\x71\xb3\xf9\x29\xe4\xbd\x2d\x6c\x80\x69\x62\
\x18\x7b\xaf\x75\xa0\xef\xfc\x3f\xc7\xf3\x92\xff\x00\xbd\x84\xf7\
\xff\x00\xfe\x7d\xf0\x5f\xfd\x61\xf7\xee\xbd\xd0\x9f\xd2\x3f\xcf\
\x77\xf9\xc0\x6e\x6e\xe8\xea\x1d\xb7\x9a\xf9\xff\x00\xdf\x95\xb8\
\x7d\xc1\xda\x1b\x03\x0b\x96\xa3\x97\x2d\x81\x68\xaa\xf1\xb9\x4d\
\xd9\x89\xa1\xae\xa5\x95\x5b\x00\x55\xa3\xa8\xa5\x9d\x91\x81\x04\
\x10\x6c\x41\x1e\xfd\xd7\xba\xfb\x15\x7b\xf7\x5e\xeb\xe3\xa7\xdd\
\x3f\xcf\x7b\xf9\xc0\xed\x8e\xe5\xed\xad\xbb\x85\xf9\xff\x00\xdf\
\x74\x78\x8d\xbf\xd9\xdb\xf7\x0d\x8a\xa3\x4c\xae\x03\xc5\x4b\x8e\
\xc5\xee\xbc\xb5\x15\x0d\x32\x20\xdb\xe2\x31\x14\x14\xd0\x2a\x2a\
\x80\x14\x28\xb0\x00\x71\xef\xdd\x7b\xaa\x6b\xec\xbe\xc9\xdf\x7d\
\xc7\xd8\x5b\xd7\xb5\xfb\x43\x73\xe4\xf7\xaf\x63\x76\x36\xe7\xcd\
\x6f\x4d\xf1\xbb\xf3\x52\x24\xd9\x7d\xcb\xba\x77\x15\x7c\xf9\x4c\
\xde\x6f\x25\x2c\x51\xc5\x1c\x95\xb9\x2c\x85\x4b\xcb\x21\x55\x50\
\x59\x8d\x80\xf7\xee\xbd\xd7\xd3\x2f\xf9\x0e\x7f\x27\x9f\xe5\x8f\
\xf2\x53\xf9\x4b\x7c\x39\xee\xee\xf5\xf8\x63\xd3\x9d\x99\xda\xfb\
\xf3\x6b\xf6\x2d\x66\xf0\xdf\x3b\x93\x1b\x97\x9f\x37\xb8\x2a\xb1\
\x3d\xd3\xd9\x5b\x7b\x1f\x3d\x7c\xb0\x66\x29\xe1\x79\x29\x70\xd8\
\x8a\x6a\x75\xd2\x8a\x04\x70\xa8\xb7\xbf\x75\xee\xb6\x74\xf8\xd5\
\xf1\x5b\xe3\xc7\xc3\xbe\xb6\xff\x00\x44\x1f\x18\xfa\x9f\x6b\x74\
\xcf\x59\x9d\xc3\x97\xdd\x67\x67\x6c\xf8\x6a\xe0\xc4\x9d\xc5\x9d\
\x5a\x44\xcb\x65\x8a\xd6\xd5\xd6\xce\x6a\xab\x52\x86\x15\x6f\x5e\
\x90\x91\x2a\xa8\x00\x01\xef\xdd\x7b\xa0\x6f\xe5\x27\xf2\xd2\xf8\
\x1f\xf3\x63\x78\x6d\xde\xc0\xf9\x59\xf1\x8b\xad\x3b\xc7\x79\xed\
\x2d\xb4\x76\x76\xdc\xdc\x3b\xd6\x8b\x25\x53\x5f\x89\xdb\x07\x29\
\x5b\x9a\x18\x6a\x66\xa2\xc9\x50\xc6\x68\xd7\x2b\x91\xa8\x9d\x43\
\xab\x32\xbc\xcf\x62\x03\x10\x7d\xd7\xba\xd0\xbf\xfe\x15\xcd\xf0\
\x13\xe1\x9f\xc1\xea\x6f\x82\x23\xe2\x5f\xc7\x6e\xbc\xe8\x87\xec\
\x69\xfe\x44\x9d\xf5\x36\xc6\xa4\xc9\x52\xc9\xba\x13\x6c\x27\x4b\
\xff\x00\x77\x63\xca\x0a\xec\x95\x74\x4e\x98\x63\x9d\xad\x30\xe8\
\x54\x60\x6a\x9f\x51\x61\xa4\x2f\xba\xf7\x59\x3f\xe1\x12\xbf\xf6\
\x5d\x9f\x2d\xbf\xf1\x52\xa3\xff\x00\xdf\xc5\xd7\x9e\xfd\xd7\xba\
\xfa\x58\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\
\xdd\x7b\xaf\xff\xd6\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\
\x9f\xbf\xf8\x95\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\xbd\xd6\xca\x5f\
\xf0\x9f\x0f\xe4\x25\xfc\xb3\xbf\x98\x0f\xf2\xd6\xd8\x7f\x23\xbe\
\x4d\xf5\x06\xf2\xdd\xdd\xb3\x9b\xec\xce\xda\xdb\x39\x5c\xee\x1f\
\xb8\x3b\x23\x68\x50\xd4\x62\xb6\xae\xe9\x93\x1b\x84\x86\x2c\x16\
\xd9\xdc\x18\xcc\x4d\x39\xa6\xa0\x0a\x8c\xeb\x11\x92\x46\xbb\x33\
\x1b\x80\x3d\xd7\xba\xdc\x47\xe0\x3f\xf2\xe0\xf8\xa1\xfc\xb4\x3a\
\xdb\x78\xf5\x37\xc4\x6d\x95\x9d\xd8\xfb\x27\x7e\x6f\x89\x3b\x13\
\x72\x63\xb3\xdb\xdb\x75\x6f\x9a\x9a\xbd\xd3\x2e\x07\x0d\xb6\x9e\
\xb2\x1c\x8e\xec\xc9\xe5\x2b\x69\x20\xfe\x11\x81\xa6\x8f\xc3\x1b\
\xac\x5a\x90\xb5\xb5\x31\x27\xdd\x7b\xa0\xe7\xf9\x81\xff\x00\x28\
\xbf\x83\x7f\xcc\xf3\x27\xd5\xd9\x7f\x98\x3d\x73\xb9\x77\xdd\x7f\
\x4e\x50\xee\xcc\x6e\xc3\x97\x01\xd8\xdb\xdf\x61\xae\x36\x93\x7b\
\x4f\x80\xa9\xdc\x31\xd5\x45\xb4\x73\x38\xa8\xf2\x66\xaa\x6d\xb1\
\x46\x51\xa7\x0e\xd1\x78\xc8\x42\x03\x35\xfd\xd7\xba\xae\xcf\xfa\
\x04\xeb\xf9\x27\x7f\xde\x3d\xf6\x37\xfe\x94\x37\x74\x7f\xf6\x61\
\xef\xdd\x7b\xaa\x22\xff\x00\x85\x16\x7f\x22\x3f\xe5\xb5\xfc\xbc\
\x3f\x97\x55\x47\xc8\x5f\x8b\x7d\x49\xbc\x36\x6f\x69\xa7\x78\xf5\
\x86\xc8\x8f\x35\x9a\xed\xce\xc6\xde\x54\x4b\xb7\xf7\x35\x3e\xe8\
\x97\x31\x4a\xd8\x5d\xd1\x9f\xca\x62\xde\x4a\x83\x8b\x8b\x4c\xbe\
\x31\x2c\x65\x7d\x2c\x01\x20\xfb\xaf\x75\xa5\x9f\xc4\xdf\x95\x5d\
\xcf\xf0\x9b\xe4\x07\x5f\x7c\x9c\xf8\xf7\x9f\xc7\x6d\x7e\xdf\xeb\
\x09\xf3\xb5\x1b\x3f\x3b\x96\xdb\xf8\x6d\xd3\x8f\xa1\x93\x72\x6d\
\x8c\xd6\xcf\xcb\xfd\xc6\x0b\x70\x52\x57\xe2\x6b\x85\x46\x03\x70\
\x55\x44\x3c\xb1\x37\x8d\x9c\x3a\xd9\xd5\x48\xf7\x5e\xeb\x68\xff\
\x00\xe5\xb9\xff\x00\x0a\x59\xfe\x6e\xbf\x24\x3f\x98\x07\xc3\x1e\
\x82\xed\x3e\xf5\xd8\x59\x8e\xb4\xee\x3f\x92\xfd\x3b\xd7\x3b\xfb\
\x11\x49\xd1\x5d\x4d\x88\xaa\xca\x6d\x0d\xdb\xbe\x30\xf8\x6d\xc3\
\x8f\xa5\xcb\x62\x76\xc5\x0e\x53\x17\x53\x57\x8b\xab\x95\x23\xa8\
\xa7\x95\x25\x85\xc8\x75\x26\xd6\x3e\xeb\xdd\x7d\x20\xfb\xfb\x75\
\xe7\x76\x1f\x44\x77\x5e\xf8\xda\xf5\x30\xd1\x6e\x5d\x9b\xd4\x9d\
\x91\xba\xf6\xed\x65\x45\x2c\x35\xd4\xf4\x99\xdd\xbb\xb3\xb3\x39\
\x7c\x45\x4c\xf4\x55\x00\xc1\x59\x0c\x19\x0a\x38\xdd\xa2\x7f\x44\
\x8a\x0a\x9e\x09\xf7\xee\xbd\xd7\xca\x93\xfe\x82\xc3\xfe\x76\x5a\
\x6d\xfe\xcc\x47\x5d\x93\x6b\x6a\xff\x00\x65\xe3\xa5\x35\x13\xfd\
\x7f\xe3\xcc\xd3\x73\xfe\xb5\xbd\xfb\xaf\x75\xf5\x82\xeb\x7c\xc6\
\x43\x71\x75\xde\xc2\xdc\x19\x79\x52\x7c\xae\x77\x65\xed\x6c\xc6\
\x4e\x78\xa1\x4a\x78\xe6\xc8\x64\xf0\x74\x35\xb5\xb2\xc7\x04\x60\
\x47\x02\x49\x53\x3b\x10\x8b\xe9\x50\x6c\x38\x1e\xfd\xd7\xba\xf8\
\x9d\xff\x00\x35\xef\xfb\x79\xef\xf3\x0c\xff\x00\xc5\xd2\xf9\x2f\
\xff\x00\xbf\x83\x77\x7b\xf7\x5e\xeb\x77\xff\x00\xe4\xdb\xff\x00\
\x09\xd2\xfe\x55\x1f\x31\x3f\x96\x5f\xc4\xbf\x92\xbd\xed\xd2\xbb\
\xe3\x71\xf6\xdf\x6b\x6c\x8d\xc3\x9a\xde\xd9\xcc\x6f\x75\xf6\x96\
\xdb\xa1\xc8\xe4\x71\xdd\x87\xbc\xb6\xf5\x34\xd4\xf8\x3c\x16\xe5\
\xa0\xc4\x63\xa3\x4c\x66\x1a\x04\xd1\x04\x28\xa4\xa9\x63\x76\x24\
\x9f\x75\xee\xb5\x4a\xff\x00\x85\x0e\xfc\x23\xf8\xeb\xfc\xbe\xbf\
\x99\x06\xe4\xf8\xe7\xf1\x77\x69\xe5\xf6\x67\x55\x63\x3a\x8b\xaa\
\xb7\x5d\x3e\x17\x35\xbb\x37\x06\xf3\xad\x19\xdd\xd1\x8b\xaf\xaa\
\xcc\xd5\xff\x00\x1a\xdc\xf5\xd9\x1c\xa9\x8a\xa6\x48\x10\x88\x9a\
\x66\x48\xc8\x3a\x02\x83\xa4\x7b\xaf\x75\x73\xff\x00\xf0\x99\x1f\
\xe4\xb5\xfc\xbe\x7f\x99\x77\xc4\x4e\xf9\xed\x7f\x97\x1d\x5b\xbb\
\x37\xc6\xfb\xd8\x9f\x23\xeb\x3a\xf3\x6e\xe5\x30\x5d\xa7\xbf\x76\
\x3d\x25\x2e\xd2\x8b\xac\x7a\xfb\x72\x43\x8f\x7c\x56\xd2\xcd\x62\
\x68\xea\x6a\x57\x31\x9e\xab\x91\xaa\x25\x12\x4a\xcb\x22\xa0\x2a\
\xa9\xcf\xba\xf7\x5b\x25\xff\x00\xd0\x27\x5f\xc9\x3b\xfe\xf1\xef\
\xb1\xbf\xf4\xa1\xbb\xa3\xff\x00\xb3\x0f\x7e\xeb\xdd\x1f\x3f\x80\
\xbf\xc9\x8f\xe0\x27\xf2\xcd\xdf\xdb\xe3\xb2\xfe\x22\x75\x9e\xe9\
\xd8\xdb\xb7\xb1\x76\x85\x3e\xc5\xdd\x35\xb9\xee\xce\xdf\x9b\xea\
\x9e\xaf\x6e\x53\x66\xa9\x33\xf1\xd2\xd3\xd0\xee\xcc\xde\x52\x96\
\x8e\x6f\xe2\x74\x31\x39\x96\x35\x59\x0a\xae\x9b\xd8\x90\x7d\xd7\
\xba\x32\x7f\x37\xbe\x0b\xfc\x72\xfe\x61\xfd\x22\xff\x00\x1e\x3e\
\x52\x6d\x5c\xc6\xf1\xea\xd9\x37\x6e\xde\xde\xef\x87\xc1\xee\xcd\
\xc3\xb3\x2b\x8e\xe1\xdb\x02\xb9\x71\x15\x3f\xc6\x76\xcd\x7e\x3b\
\x27\xe1\x89\x32\x53\x07\x8b\xc9\xe3\x7d\x5c\x8b\x80\x47\xba\xf7\
\x55\xf5\xf1\x63\xfe\x13\xb1\xfc\xab\xbe\x19\xf7\xf7\x5c\xfc\x99\
\xe8\x3e\x98\xde\xfb\x67\xb7\x7a\xab\x21\x95\xc9\xec\xbc\xe6\x53\
\xba\x3b\x47\x73\x63\xf1\xf5\x99\xad\xbb\x98\xda\xb5\xf2\x54\xe0\
\xb3\xbb\x96\xbb\x13\x90\x59\x30\xb9\xda\x98\xc2\xcd\x13\xaa\xb3\
\x87\x03\x52\xa9\x1e\xeb\xdd\x5e\x1f\xbf\x75\xee\x83\x1e\xec\xdc\
\xb9\x9d\x99\xd3\x3d\xb9\xbc\x36\xed\x44\x54\x9b\x83\x6a\x75\x8e\
\xfd\xdc\xb8\x2a\xb9\xe9\xa2\xac\x82\x97\x33\x82\xda\xb9\x6c\xa6\
\x32\xa2\x6a\x49\xc1\x86\xaa\x28\x6b\x69\x51\x9a\x37\xf4\xb8\x1a\
\x4f\x07\xdf\xba\xf7\x5f\x29\x85\xff\x00\x85\x62\x7f\x3b\x25\xb5\
\xfe\x42\xf5\xd3\xdb\xeb\xab\xe3\xcf\x4b\x8d\x5f\xe2\x74\x6c\xe4\
\xfa\xff\x00\x85\xbd\xfb\xaf\x75\xae\xa6\xe1\xce\xe4\xb7\x46\x7f\
\x39\xb9\xb3\x33\x25\x46\x5f\x71\x66\x32\x79\xdc\xac\xf1\xc3\x1d\
\x3c\x73\xe4\xb2\xf5\xb3\xe4\x2b\xa6\x48\x21\x54\x86\x04\x92\xaa\
\xa1\x98\x22\x00\xaa\x0d\x80\x00\x7b\xf7\x5e\xeb\xe9\xb7\xfc\xbd\
\xff\x00\xe1\x33\x7f\xca\x13\xe4\x1f\xc1\x1f\x86\xfd\xe9\xd9\x7d\
\x13\xbf\xf2\xbd\x8b\xdb\xff\x00\x19\x7a\x4b\xb2\x37\xe6\x56\x97\
\xbe\x3b\x67\x17\x4d\x94\xde\x3b\xcb\xaf\x36\xfe\x7f\x72\x64\x69\
\xb1\x78\xad\xcd\x45\x8d\xc6\x53\x56\xe6\x2b\xa6\x92\x3a\x68\x22\
\x48\xa0\x8d\x82\x28\x21\x6e\x7d\xd7\xba\x38\x3f\xf4\x09\xd7\xf2\
\x4e\xff\x00\xbc\x7b\xec\x6f\xfd\x28\x6e\xe8\xff\x00\xec\xc3\xdf\
\xba\xf7\x57\x15\xf0\x93\xe0\xe7\xc7\x5f\xe5\xe9\xd1\xd4\xdf\x1d\
\x7e\x2e\xed\x6c\xbe\xcf\xea\xca\x4d\xd3\xb8\xb7\x94\x18\x7c\xe6\
\xeb\xdc\x1b\xca\xb9\x73\xdb\xa6\x5a\x69\x72\xf5\x07\x35\xb9\x6b\
\xb2\x39\x36\x86\x53\x47\x18\x48\x8c\x9a\x10\x2f\x02\xe4\x93\xee\
\xbd\xd6\x81\x3f\xf0\xb6\xbf\xfb\x2e\xbf\x89\x1f\xf8\xa9\x72\xff\
\x00\xef\xe1\xec\x2f\x7e\xeb\xdd\x6b\xc5\xfc\xbe\xff\x00\x9b\x6f\
\xcd\xff\x00\xe5\x85\x47\xda\x94\x3f\x0f\x7b\x13\x6d\xec\x4a\x6e\
\xe7\xa8\xd9\xd5\x5b\xf9\x33\xfd\x75\xb2\x77\xe1\xc9\x4f\xb1\x23\
\xdc\x91\x6d\xb7\xa4\x7d\xdd\x86\xca\xb6\x33\xed\x23\xdd\xb5\xc1\
\xc4\x05\x04\xde\x51\xac\x12\x88\x47\xba\xf7\x5b\xb9\x7f\xc2\x63\
\x3f\x9c\xef\xf3\x01\xfe\x66\x1f\x2a\x3e\x42\xf5\x8f\xcb\xae\xd1\
\xda\xbb\xe7\x65\x75\xf7\xc7\xf8\x77\xe6\xd9\xc6\x60\xba\xbb\x61\
\x6c\x6a\xaa\x3d\xd3\x27\x62\xed\x3d\xbe\x2b\xa4\xc9\xed\x1c\x2e\
\x26\xae\xaa\x0f\xe1\x39\x4a\x88\xcc\x13\x19\x23\x2c\xea\xe0\x2b\
\x2f\x3e\xeb\xdd\x5c\x37\xfc\x28\x9b\xe7\x0f\xc8\xdf\xe5\xed\xfc\
\xb9\x72\xbf\x22\x7e\x2d\x6e\xdc\x3e\xcb\xed\x3a\x3e\xe8\xea\xdd\
\x9f\x1e\x67\x37\xb4\xb6\xf6\xf4\xa3\xfe\xef\x6e\x79\x73\x89\x98\
\xa4\x18\x6d\xcf\x43\x91\xc5\x09\xaa\x0d\x14\x56\x99\xa1\x67\x8c\
\x29\x0b\x62\xda\x87\xba\xf7\x5f\x3a\x1f\x94\x9f\xf0\xa2\x9f\xe6\
\xa7\xf3\x27\xa0\xfb\x1f\xe3\x3f\x7d\xf7\x46\xc9\xdc\xdd\x45\xda\
\xd8\xdc\x66\x27\x7a\x60\xf1\x9d\x2d\xd5\xdb\x66\xbf\x21\x43\x88\
\xdc\x18\x9d\xcf\x45\x15\x36\x77\x03\xb6\x68\x72\xd8\xf6\x4c\xc6\
\x12\x9a\x42\xd0\xca\x8c\xca\x85\x49\xd2\xcc\x0f\xba\xf7\x55\xf3\
\xfc\xbe\xba\x93\x62\x77\xe7\xce\xbf\x87\x3d\x1f\xda\x38\xca\xcc\
\xd7\x5b\x76\xf7\xc9\xae\x91\xeb\x6d\xfb\x88\xc7\xe5\x2b\x30\x75\
\xd9\x4d\x9f\xbd\x7b\x1b\x6f\x6d\xed\xc5\x41\x47\x99\xc7\xbc\x75\
\xf8\xaa\x9a\xbc\x56\x42\x54\x4a\x88\x59\x65\x85\x98\x32\x90\xc0\
\x7b\xf7\x5e\xeb\xe9\x93\xbf\xbf\xe1\x30\x1f\xc9\xe3\xa7\xb6\x2e\
\xf4\xed\xcd\x8b\xd0\xfd\x81\x8d\xde\xfd\x5b\xb5\x37\x17\x63\xec\
\xec\x85\x47\x7d\x76\xee\x46\x9e\x83\x74\xec\x8c\x45\x66\xe6\xdb\
\xd5\x93\xe3\xeb\xf7\x55\x4d\x15\x7c\x14\xd9\x6c\x64\x2e\xf0\xcc\
\x8f\x14\xaa\xa5\x5d\x4a\x92\x3d\xfb\xaf\x75\xa5\xdf\xfd\x05\x89\
\xfc\xec\x6f\x7f\xf6\x61\x7a\xe6\xd7\xfa\x7f\xb2\xf3\xd2\xf6\xff\
\x00\x5b\xfe\x3c\xfb\xdb\xfd\x8f\xbf\x75\xee\xb7\x45\xd8\x7f\xf0\
\x97\xef\xe4\xed\xdb\xdb\x1f\x66\xf6\xce\xf8\xe8\x7e\xc0\xc8\xef\
\x5e\xd0\xda\xbb\x7b\xb1\x37\x7e\x42\x9f\xbe\xbb\x77\x1d\x4f\x5d\
\xba\x37\xb6\x22\x93\x72\xe7\xea\xe0\xc7\xd0\x6e\xaa\x7a\x1a\x18\
\x6a\x72\xd9\x39\x5d\x21\x86\x34\x8a\x25\x21\x55\x42\x80\x3d\xfb\
\xaf\x74\xab\xff\x00\xa0\x4e\xbf\x92\x77\xfd\xe3\xdf\x63\x7f\xe9\
\x43\x77\x47\xff\x00\x66\x1e\xfd\xd7\xba\xd5\x5b\xf9\x81\x7f\x38\
\x2f\x9d\x5f\xc9\x7f\xe6\x07\x74\x7f\x2c\x9f\xe5\xfb\xd8\xfb\x6f\
\xab\xfe\x20\x7c\x56\xca\xed\xad\xbd\xd3\x3b\x17\x75\xf5\xc6\xc5\
\xed\x2d\xc1\x81\xc7\x6f\xdd\x8d\xb5\xfb\x77\x75\x47\x90\xdf\x9b\
\xf3\x05\x99\xdd\x99\xf3\x5d\xbf\x7b\x03\x2b\x55\x1b\x56\x55\x4c\
\xf4\xf0\xce\xb0\x23\x78\xe2\x40\x3d\xd7\xba\x26\xff\x00\xf4\x16\
\x27\xf3\xb2\xff\x00\xbc\x86\xeb\xaf\xfd\x27\x9e\x96\xff\x00\xec\
\x3b\xdf\xba\xf7\x5e\xff\x00\xa0\xb1\x3f\x9d\x97\xfd\xe4\x37\x5d\
\x7f\xe9\x3c\xf4\xb7\xff\x00\x61\xde\xfd\xd7\xba\xae\x2f\xe6\x09\
\xfc\xd9\xfe\x6e\x7f\x33\xe8\x7a\xaa\x0f\x98\x5d\x89\xb7\x37\xe4\
\x7d\x2f\x26\xf2\x97\x60\x0c\x07\x5d\xec\xad\x86\x71\x92\x6f\xd5\
\xdb\x2b\xb9\x9a\xad\xb6\x86\x1b\x12\x72\x9f\x78\xbb\x46\x80\x20\
\x9f\x58\x87\xc4\x74\x69\x2e\xfa\xbd\xd7\xba\xd8\x87\xfe\x11\x2b\
\xff\x00\x65\xd9\xf2\xdb\xff\x00\x15\x2a\x3f\xfd\xfc\x5d\x79\xef\
\xdd\x7b\xaf\xa5\x8f\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\
\xeb\xde\xfd\xd7\xba\xff\xd7\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\
\xfa\xaf\x9f\xbf\xf8\x95\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\xbd\xd6\
\xfc\x9f\xf0\x91\xdf\xfb\x73\x17\x57\xff\x00\xe2\x6c\xef\xcf\xfd\
\xed\x9f\xdf\xba\xf7\x45\x73\xfe\x14\x57\xfc\xfb\xbe\x67\xff\x00\
\x29\xef\x95\x3d\x27\xd2\xff\x00\x1b\x76\x87\x40\x6e\x2d\xa1\xd8\
\x9f\x1f\xa9\x7b\x43\x39\x53\xdb\x5b\x3b\x7a\x6e\x4c\xe4\x5b\x92\
\xa3\xb1\xb7\xd6\xd4\x78\x31\xf5\x5b\x6b\xb1\x36\x6d\x25\x36\x26\
\x3c\x5e\xd9\xa7\x65\x8d\xe1\x96\x43\x34\x92\x12\xfa\x74\xa8\xf7\
\x5e\xe8\xcd\xff\x00\xc2\x6e\x7f\x9c\x67\xca\x6f\xe6\xe1\xb7\x7e\
\x5b\x65\xfe\x4d\x6d\x9e\x99\xdb\x93\xf4\x76\x73\xa7\x71\xdb\x35\
\x7a\x87\x6c\x6e\xad\xb5\x1d\x54\x1b\xfb\x1f\xd8\x95\x39\xc1\x9e\
\x8f\x73\x6f\x6d\xe6\xd5\x6f\x04\x9b\x4a\x94\xd3\x34\x2f\x06\x91\
\x24\x81\x83\x7a\x48\xf7\x5e\xeb\x67\x2f\x7e\xeb\xdd\x6a\xc5\xff\
\x00\x0b\x0a\xff\x00\xb7\x3f\x54\xff\x00\xe2\xcf\xf4\x97\xfe\xe1\
\x6f\x9f\x7e\xeb\xdd\x7c\xf6\x3f\x93\xa7\xc3\xde\xac\xf9\xf3\xfc\
\xc7\xbe\x36\xfc\x4b\xee\xac\x9e\xf3\xc3\xf5\x9f\x6e\x64\xf7\xf5\
\x1e\xe7\xc8\xf5\xf6\x4b\x15\x87\xdd\xf0\x47\xb5\xfa\xab\x7c\xef\
\x6c\x68\xc4\x64\xb3\x58\x6d\xc1\x8c\xa4\x69\xb3\x1b\x6e\x9e\x39\
\x9a\x4a\x39\xff\x00\xc9\xd9\xc2\x80\xc4\x11\xee\xbd\xd7\xd1\x37\
\xe3\x6f\xfc\x24\xef\xf9\x6e\xfc\x5b\xf9\x05\xd2\xbf\x24\x7a\xef\
\xb1\xfe\x5a\xd7\xef\xbe\x89\xec\xed\x9b\xda\xdb\x42\x83\x74\x76\
\x47\x5c\x57\x6d\xba\xdd\xc5\xb1\xb3\x94\x7b\x83\x0f\x4b\x9e\xa2\
\xc5\xf4\xfe\x1b\x23\x57\x88\x9a\xbe\x86\x31\x51\x14\x35\x74\xef\
\x2c\x5a\x94\x3a\xde\xfe\xfd\xd7\xba\xd9\x27\xb0\x36\x5e\x27\xb2\
\x36\x16\xf7\xeb\xbc\xf4\xb5\xd0\x60\xf7\xee\xd1\xdc\x9b\x2f\x33\
\x3e\x2e\x78\xe9\xb2\x50\xe2\x77\x4e\x1a\xb7\x07\x91\x97\x1d\x53\
\x2c\x35\x31\x53\xd7\x47\x47\x5c\xe6\x17\x68\xe4\x54\x90\x02\x55\
\x80\xb1\xf7\x5e\xeb\x54\x81\xff\x00\x08\xc1\xfe\x55\x9a\x02\xff\
\x00\xa5\x4f\x9a\x45\xf4\x80\x5f\xfd\x28\xf5\x47\x2d\xf9\x6d\x3f\
\xe8\x32\xc2\xe7\xf1\xef\xdd\x7b\xad\xb2\xf6\xde\x06\x8f\x6b\x6d\
\xdc\x06\xd8\xc7\x3d\x44\x98\xfd\xb9\x85\xc5\x60\x68\x64\xab\x91\
\x65\xaa\x7a\x3c\x45\x0c\x18\xfa\x57\xa9\x95\x23\x89\x24\xa8\x68\
\x29\xd4\xbb\x05\x50\x5a\xe4\x01\xf4\xf7\xee\xbd\xd6\xb2\x1d\xf7\
\xff\x00\x09\x27\xfe\x5a\x9f\x22\xbb\xcb\xb8\xbb\xff\x00\x7c\xf6\
\x4f\xcb\xaa\x3d\xe9\xdd\xdd\x9f\xbe\x7b\x63\x76\x51\x6d\xee\xcb\
\xeb\x6a\x5c\x05\x1e\xe3\xec\x1d\xc9\x91\xdd\x59\xba\x5c\x1d\x2e\
\x4b\xa7\x32\xd5\xf4\xb8\x78\x32\x59\x49\x56\x9a\x29\xaa\x67\x78\
\xa1\x0a\x85\xdb\x4d\xfd\xfb\xaf\x75\xaf\x47\xc9\xbf\xe7\xb7\xf3\
\x0f\xf9\x1a\x77\xbf\x63\x7f\x2a\x2f\x88\x1b\x47\xa1\xf7\x6f\xc6\
\xef\x86\x99\x6a\x3d\x85\xd5\x7b\x8b\xbd\xb6\x86\xf3\xdd\xfd\xb5\
\x93\xc3\x6e\x8c\x36\x33\xb3\xf2\x32\xef\x3d\xc9\xb4\x3b\x17\x60\
\xed\xbc\xa5\x74\x5b\x87\x7d\x56\x47\x0b\xd2\x61\xe8\x63\x5a\x44\
\x89\x0a\x16\x56\x76\xf7\x5e\xea\xc3\xbe\x17\x7f\x2c\x8f\x8f\xff\
\x00\xf0\xa6\x3e\x8f\xa0\xfe\x68\xdf\x3f\x33\xfd\x9f\xb1\x3e\x43\
\xee\xbd\xc9\xb8\xba\x63\x25\x80\xf8\xc9\x9f\xdb\xfb\x0b\xab\x23\
\xda\x9d\x3f\x53\x16\x23\x6b\xd4\xd2\x6d\xed\xff\x00\xb5\x3b\x57\
\x71\x45\x9a\xa8\xa5\xc8\x39\xac\x95\xb2\xef\x14\xae\x01\x48\xa3\
\x00\x83\xee\xbd\xd1\x5e\xf9\xe3\xf2\x87\xb1\x3f\xe1\x27\xbd\x91\
\xb4\x3e\x16\xff\x00\x2d\xcc\x7e\xd4\xec\x4e\xa6\xf9\x13\xb2\x23\
\xf9\x43\xbe\x32\xbf\x2c\xf1\xd5\xfd\x8f\xbe\x28\xfb\x12\xbb\x3d\
\x98\xea\x89\xf1\xfb\x77\x2d\xd6\xb9\x4e\x9c\xc5\xd0\xed\x45\xdb\
\x5d\x6b\x8f\x91\x29\xaa\x28\xaa\xea\x05\x64\x93\xbf\x9f\x43\xac\
\x6b\xee\xbd\xd1\x1b\xff\x00\xa0\xcf\x3f\x9a\xb7\xfc\xfa\xef\x85\
\x9f\xfa\x2b\x3b\x5f\xff\x00\xb7\xa7\xbf\x75\xee\xb6\x24\xff\x00\
\x84\xe6\x7f\x3d\xdf\x99\x1f\xcd\x97\xe4\x3f\xc8\x1e\xac\xf9\x29\
\xb4\x7a\x13\x6e\xed\x9e\xaf\xe9\x7c\x57\x60\x6d\xd9\xfa\x93\x67\
\xef\x2d\xb5\x97\x9b\x3b\x57\xbe\x31\x5b\x76\x58\xb2\x95\x1b\x97\
\xb0\xb7\x9d\x35\x56\x39\xb1\xf9\x07\x21\x23\x8a\x17\x59\x51\x4e\
\xb2\x09\x1e\xfd\xd7\xba\xb4\xaf\xe7\xe1\xfc\xc3\x3b\xcb\xf9\x63\
\x7c\x06\xab\xf9\x3b\xf1\xef\x0d\xd7\x59\xde\xc1\xa7\xee\x3e\xb6\
\xd8\x42\x87\xb4\x70\x99\xcd\xc1\xb5\xff\x00\x81\xee\xcf\xe3\xcd\
\x94\x94\xe3\xb6\xfe\xe4\xda\x99\x06\xc8\x2f\xf0\xb8\xd6\x17\xfb\
\xb5\x44\x0c\xc4\xab\x1b\x0f\x7e\xeb\xdd\x6b\x67\xfc\xa1\xff\x00\
\xe1\x50\x7f\xcc\x2f\xe7\x7f\xf3\x1a\xf8\xc7\xf1\x37\xb8\xb6\x0f\
\xc5\xbc\x47\x5a\xf7\x16\xe2\xde\x38\x9d\xd5\x90\xd8\x5d\x7d\xd8\
\x78\x6d\xdb\x4d\x4d\x80\xeb\x2d\xed\xbc\xa8\x9f\x0d\x93\xcc\xf6\
\xce\xe2\xc6\xd2\xcc\xd9\x4d\xb9\x02\xc8\x65\xa2\x9c\x34\x2c\xea\
\x02\xb1\x0e\xbe\xeb\xdd\x6e\x75\xf3\xfb\xbd\xf7\x8f\xc5\xef\x83\
\xdf\x2d\xfe\x47\xf5\xe5\x1e\x03\x21\xbe\xfa\x2b\xe3\xbf\x6e\x76\
\xbe\xcf\xa1\xdd\x54\x95\xb5\xfb\x6a\xb3\x72\x6c\x4d\x91\x99\xdc\
\x78\x7a\x6c\xf5\x0e\x3b\x21\x89\xaf\xab\xc4\xcd\x5d\x8f\x45\x9e\
\x38\x6a\xa9\xe5\x78\xc9\x0b\x22\x12\x18\x7b\xaf\x75\xf3\x7f\xde\
\x3f\xf0\xb1\x2f\xe6\x89\xbe\x76\x76\xec\xd9\x19\xae\xb1\xf8\x6c\
\x98\x9d\xe3\xb6\x33\xfb\x53\x29\x2d\x0f\x57\xf6\x8c\x55\xb1\xd0\
\x6e\x2c\x4d\x5e\x1e\xb2\x6a\x47\xa8\xee\xda\xaa\x74\xaa\x8e\x9e\
\xb1\x9a\x33\x24\x52\x20\x70\x35\x2b\x0b\x83\xee\xbd\xd6\xa8\x5e\
\xfd\xd7\xba\xf7\xbf\x75\xee\xb6\x81\xf8\xf7\xff\x00\x0a\xcf\xfe\
\x65\x3f\x1a\xba\x1f\xa6\x7e\x3c\x6c\x1e\xb8\xf8\x8d\x5d\xb2\x3a\
\x37\xac\x36\x3f\x53\xed\x2a\xed\xc9\xd6\x9d\x91\x59\xb8\x6b\x36\
\xde\xc0\xdb\xb8\xfd\xb1\x85\xaa\xce\xd5\xe3\x3b\x8b\x0f\x8f\xab\
\xcc\x4d\x8d\xc6\xc6\xd5\x32\xc3\x4b\x4e\x92\xcd\xa9\xc2\x2e\xab\
\x7b\xf7\x5e\xe8\x60\xff\x00\xa0\xcf\x3f\x9a\xb7\xfc\xfa\xef\x85\
\x9f\xfa\x2b\x3b\x5f\xff\x00\xb7\xa7\xbf\x75\xee\xb7\x77\xfe\x42\
\xdf\xcc\x1b\xbb\xff\x00\x99\xa7\xc0\x1c\x3f\xca\x0f\x90\x58\x7e\
\xbb\xc1\xf6\x1e\x43\xb6\xbb\x33\x64\x4b\x43\xd6\x18\x4c\xde\xdf\
\xda\xc3\x0b\xb4\xab\x31\x91\x62\xa4\x4c\x6e\xe0\xdc\x9b\xab\x20\
\x95\xe6\x3a\xe7\x59\x9c\xd6\x32\x3e\x90\x42\xaf\x23\xdf\xba\xf7\
\x5a\x77\xff\x00\xc2\xda\xff\x00\xec\xba\xfe\x24\x7f\xe2\xa5\xcb\
\xff\x00\xbf\x87\xb0\xbd\xfb\xaf\x74\x54\xbf\xe1\x37\x1f\xc9\x63\
\xe2\x77\xf3\x72\xc5\x7c\xba\xab\xf9\x35\xba\xbb\xb7\x6d\xd4\x74\
\x5d\x77\x4b\x52\xec\xc5\xea\x1d\xd3\xb4\xb6\xd4\x55\x71\x76\x14\
\x1d\x9b\x36\x75\xf3\xe7\x73\x6c\x7d\xe6\xd5\x72\x40\xdb\x3a\x90\
\x53\x08\x44\x01\x44\x92\x97\xd4\x4a\xdb\xdd\x7b\xab\x90\xf9\xe7\
\xf1\xc3\x62\x7f\xc2\x4e\x36\x06\xca\xf9\x75\xfc\xb6\xab\xf7\x2f\
\x62\xf6\x77\xc9\x7d\xe1\x27\xc7\x0d\xfd\x8c\xf9\x69\x5d\x43\xd8\
\xfb\x3a\x87\x61\xd3\xe1\x6b\xfb\x35\x2b\xb6\xd6\x2f\xad\x71\xbd\
\x37\x92\xa0\xdc\xdf\xde\x0d\x9d\x4b\x1f\x9e\xa2\xb2\xae\x0f\xb5\
\x79\x50\x42\x1d\x83\xaf\xba\xf7\x5a\xe6\x7f\x31\x3f\xf8\x51\xaf\
\xce\x8f\xe6\x6b\xf1\xba\xbb\xe2\xf7\xc8\x0d\x8f\xf1\xbb\x03\xd7\
\xd5\xfb\xcf\x6a\x6f\x99\xb2\x3d\x63\xb1\xb7\xd6\x07\x74\xa6\x5b\
\x68\x49\x5b\x2e\x36\x18\xb2\x1b\x8b\xb3\xb7\x66\x3d\x28\x66\x7a\
\xe6\xf3\x2f\xda\x79\x18\x00\x15\xd4\x5e\xfe\xeb\xdd\x50\x3f\xbf\
\x75\xee\x86\x1f\x8f\x5d\xdd\xbb\x7e\x34\xf7\xc7\x4d\x7c\x87\xd8\
\x34\x98\x1a\xfd\xf1\xd1\xbd\x9f\xb1\xfb\x67\x68\x50\xee\x8a\x1a\
\x8c\x9e\xdb\xab\xdc\xbb\x03\x71\xe3\xb7\x46\x16\x9b\x3f\x8e\xa4\
\xad\xc6\xd5\x57\x61\xe6\xc8\xe3\x23\x5a\x88\x63\xa8\x81\xe4\x88\
\xb2\xab\xa9\x3a\x87\xba\xf7\x5b\x4e\x6d\x9f\xf8\x57\x57\xf3\x35\
\xef\x2d\xcb\xb7\xfa\x57\x76\xf5\xb7\xc4\x0a\x4d\xa7\xdc\x19\xdc\
\x4f\x57\x6e\x7a\x9c\x1f\x5a\x76\x75\x26\x6a\x9b\x6e\xf6\x06\x42\
\x9f\x69\xe6\xa7\xc3\xd5\xd6\xf7\x46\x46\x8e\x9b\x29\x0e\x33\x2d\
\x2b\x53\xc9\x2d\x3c\xf1\xa4\xa1\x59\xa3\x75\x05\x4f\xba\xf7\x5b\
\x0d\x7f\xd0\x18\x7f\xca\xa6\xff\x00\xf3\x34\x7e\x69\x5b\xfa\x7f\
\xa5\x3e\xa9\xff\x00\x7b\xff\x00\x41\x9e\xfd\xd7\xba\xd7\x8f\x73\
\x7f\xc2\xbb\x3f\x99\xbf\x49\x6e\x2d\xc3\xd2\xfb\x47\xad\xfe\x20\
\x54\xed\x6e\xa2\xcd\xe5\xba\xc3\x6c\x55\xe6\xfa\xcf\xb3\x6a\xf3\
\x53\xed\xfd\x83\x5f\x51\xb5\x30\xb5\x19\x7a\x9a\x3e\xe8\xc7\x51\
\xd5\x65\x24\xc7\x62\x62\x6a\x89\x22\xa7\x82\x37\x94\xb1\x58\xd1\
\x48\x51\xee\xbd\xd7\xd1\x0f\xe0\x17\x7b\x6f\x2f\x94\x1f\x08\x3e\
\x25\xfc\x8d\xec\x4a\x3c\x06\x3b\x7e\x77\x97\xc7\xbe\xa8\xed\x4d\
\xe1\x41\xb5\x69\x2b\x68\x76\xd5\x1e\xe3\xdf\x1b\x33\x11\xb8\x32\
\xf4\xd8\x1a\x2c\x95\x7e\x52\xbe\x97\x13\x0d\x6d\x73\xac\x11\xcd\
\x53\x3c\xa9\x18\x01\xa4\x63\x72\x7d\xd7\xba\xa7\xdf\x9a\xff\x00\
\xf0\x97\xdf\xe5\xef\xf3\xc7\xe5\x0f\x6c\xfc\xb5\xee\x3e\xc0\xf9\
\x47\x88\xec\x9e\xe3\xc9\x60\x32\x9b\xa3\x19\xb0\xbb\x03\xaf\x71\
\x1b\x46\x96\xa7\x6e\xed\x1d\xbf\xb2\xe8\x86\x1b\x1d\x9a\xea\x7d\
\xc5\x94\xa5\x8a\x4c\x4e\xdb\xa7\x69\x16\x5a\xd9\xc9\x98\xbb\x29\
\x55\x21\x17\xdd\x7b\xa2\xb3\xff\x00\x40\x61\xff\x00\x2a\xaf\xf9\
\xfa\x3f\x34\xbf\xf4\x69\x75\x4f\xff\x00\x68\xcf\x7e\xeb\xdd\x7b\
\xfe\x80\xc3\xfe\x55\x5f\xf3\xf4\x7e\x69\x7f\xe8\xd2\xea\x9f\xfe\
\xd1\x9e\xfd\xd7\xba\xd5\xeb\xfe\x14\x8f\xfc\x97\xfe\x28\xff\x00\
\x28\xd8\x3e\x21\xbf\xc6\x5d\xd3\xdd\x7b\x92\x5e\xf6\x93\xbb\x13\
\x79\xaf\x6f\x6e\x8d\xa7\xb9\x52\x91\x7a\xed\x7a\xb9\xb0\x2d\x80\
\x6d\xb1\xb2\x36\x61\xa4\x6a\x83\xbd\x2a\xc5\x50\x98\x54\x06\x11\
\xc4\x50\xad\x9a\xfe\xeb\xdd\x1b\x6f\xf8\x44\xaf\xfd\x97\x67\xcb\
\x6f\xfc\x54\xa8\xff\x00\xf7\xf1\x75\xe7\xbf\x75\xee\xbe\x96\x3e\
\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\
\xff\xd0\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\xf8\
\x95\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\xbd\xd6\xfc\x9f\xf0\x91\xdf\
\xfb\x73\x17\x57\xff\x00\xe2\x6c\xef\xcf\xfd\xed\x9f\xdf\xba\xf7\
\x4b\xdf\xe7\x17\xff\x00\x09\xe4\xeb\x9f\xe6\xff\x00\xdf\x5d\x69\
\xde\xbb\xd3\xe4\xde\xfa\xe9\x5a\xde\xb6\xea\x2a\x5e\xa5\xa4\xdb\
\x3b\x67\xaf\x76\xf6\xee\xa0\xc9\x52\xd2\xef\x3d\xdb\xbc\x7f\x8e\
\xcb\x5f\x94\xcf\xe1\xaa\xe9\xab\x26\x97\x75\xb5\x3b\x43\xa6\x48\
\xc2\x53\xa3\x29\x0c\xcf\x7f\x75\xee\x86\xdf\xe4\xc1\xfc\x93\xb6\
\x47\xf2\x6e\xc4\xfc\x82\xc4\xec\xae\xfd\xdd\xfd\xe5\x0f\x7f\x64\
\x7a\xdf\x23\x5e\x77\x56\xca\xc1\xec\xe1\xb6\x64\xeb\xaa\x5d\xe9\
\x4d\x00\xa0\x5c\x46\x63\x33\x26\x41\xb3\x0b\xbc\x9b\xca\x65\x74\
\x58\x85\x32\x68\x5b\xb3\x93\xee\xbd\xd3\x17\xf3\xe3\xfe\x70\x1b\
\xdf\xf9\x3d\x74\xbf\x45\xf6\xae\xc9\xe9\x3d\xad\xdd\xb5\x3d\xb7\
\xda\x39\x9e\xbe\xaf\xc4\x6e\x9d\xdd\x96\xda\x34\xf8\x5a\x6c\x66\
\xd2\xac\xdc\x71\xe4\x29\x2a\x71\x38\x8c\xbc\xb5\x53\xcf\x35\x37\
\x8c\xa3\xaa\xaa\xaf\x37\x24\xf1\xee\xbd\xd6\xb8\x1d\x71\xfc\xcd\
\x37\x4f\xfc\x2a\xbf\x72\x0f\xe5\x5b\xdb\xdd\x57\x80\xf8\x7d\xb4\
\x26\xc7\xd5\xfc\x8d\xff\x00\x4b\xbd\x6d\xb9\x32\x1d\xa5\xb8\xce\
\x57\xa7\xfc\x54\x54\x1b\x5c\xed\x8d\xd1\x8b\xda\xd8\xcf\xe1\xd9\
\x91\xbc\xe4\x79\x6a\x05\x50\x96\x23\x4e\xa1\x54\x86\x36\xf7\x5e\
\xe8\x51\xde\xff\x00\xc8\x93\xaf\xff\x00\xe1\x3c\x1b\x5b\x2d\xfc\
\xe2\xba\xdb\xe4\x26\xee\xf9\x37\xbd\xfe\x1a\xc7\x4f\x9a\xc0\xf4\
\x6e\xfb\xd8\xd8\x7e\xbd\xda\x7b\xee\x4e\xd8\xab\x83\xa1\xab\x61\
\xcb\xef\x1d\xbb\x9f\xdc\x19\x9c\x30\xdb\xf8\xde\xd2\x9b\x2d\x01\
\x86\x92\x61\x3d\x4d\x04\x70\x38\x11\xca\xec\x3d\xd7\xba\x2e\x3f\
\xf4\x1c\x1f\x7d\x7f\xde\x02\x75\x17\xfe\x8e\xcd\xe5\xff\x00\xd8\
\x47\xbf\x75\xee\x84\x1e\xa5\xff\x00\x85\xa6\x77\xb7\x65\xf6\xb7\
\x58\xf5\xc4\xdf\x04\xba\x9b\x17\x06\xff\x00\xec\x3d\x93\xb2\x67\
\xc9\x45\xdc\xbb\xc2\xa6\x6c\x7c\x1b\xab\x72\xe3\x30\x53\xd6\xc3\
\x03\xec\xc8\x92\x59\xa9\xa2\xaf\x2e\x8a\xcc\x14\xb2\x8b\xf1\xef\
\xdd\x7b\xaf\xa0\xc7\xbf\x75\xee\xbe\x79\x3b\xcb\xfe\x16\xc9\xdf\
\x5b\x57\x77\x6e\xcd\xae\xbf\x03\x3a\x8a\xab\xfb\xb9\xb9\x73\xf8\
\x14\xaa\x6e\xe8\xde\x48\x67\x5c\x46\x56\xaf\x1f\x1c\xcf\x1a\xec\
\xa2\x03\xc8\xb4\xe0\xb5\x88\x04\x93\x6b\x7d\x3d\xfb\xaf\x75\xbd\
\x37\xc3\xbe\xf3\xc9\xfc\x9d\xf8\x9b\xf1\xa7\xe4\x76\x6b\x6e\x51\
\x6c\xfc\xbf\x7c\x74\x4f\x55\x76\xf6\x53\x6a\x63\x72\x33\xe5\xf1\
\xfb\x6f\x21\xd8\x9b\x27\x0b\xba\xea\xf0\x74\x39\x5a\x9a\x5a\x2a\
\x8c\x8d\x26\x2e\x7c\xab\x43\x1c\xef\x0c\x4f\x2a\x20\x62\x8a\x4d\
\x87\xba\xf7\x5a\xd9\xfc\xff\x00\xff\x00\x84\x9d\x75\x0f\xcf\x7f\
\x98\x7d\xe7\xf2\xf7\x71\x7c\xc8\xec\x9e\xbb\xcc\xf7\x7e\xe4\xc5\
\xee\x3a\xed\x97\x87\xea\x9d\xad\x9e\xc6\x6d\xf9\x31\x9b\x57\x01\
\xb5\x92\x92\x93\x2f\x59\xbb\x31\xd5\x55\xd1\x49\x0e\x05\x65\xd4\
\xf0\xa3\x03\x21\x5e\x6d\xa8\xfb\xaf\x75\x77\x1f\xca\x9b\xf9\x72\
\xed\xbf\xe5\x65\xf1\x27\x13\xf1\x3b\x6a\x76\x96\x7b\xb8\x30\xf8\
\xad\xf9\xbd\xb7\xd4\x5b\xc7\x71\xed\xcc\x6e\xd6\xc8\xbc\xdb\xd2\
\xb2\x96\xae\x6c\x67\xf0\x9c\x5e\x43\x29\x4e\xb0\x50\x35\x2f\xa6\
\x43\x33\x3c\x85\xc9\x21\x45\x94\x7b\xaf\x75\x5e\xdf\xce\x2f\xfe\
\x13\xc9\xd7\x5f\xcd\xff\x00\xbe\xba\xd3\xbd\x77\xa7\xc9\xbd\xf3\
\xd2\x95\x9d\x6d\xd4\x54\xbd\x4d\x49\xb6\x76\xcf\x5e\xed\xed\xdd\
\x41\x92\xa6\xa6\xde\x5b\xb3\x78\x7f\x1d\x97\x21\x94\xcf\xe1\xaa\
\xe9\xaa\xe6\x97\x75\x35\x3b\x43\xa6\x48\xc2\x53\xa3\x29\x56\x67\
\xbf\xba\xf7\x5a\x29\x7f\x3f\x2f\xe4\x97\xb0\x7f\x93\x6e\x4f\xe2\
\xfe\x37\x64\x77\xe6\xef\xef\x16\xef\xfc\x7f\x6d\xd6\xe5\x5b\x75\
\x6c\x9c\x36\xcf\xfe\xed\x7f\xa3\x7a\x9e\xbc\x82\x88\x50\x1c\x46\
\x73\x33\xfc\x40\x65\xc6\xf6\x97\xc8\x24\x11\xf8\x4d\x32\x90\x5b\
\xc8\x42\x7b\xaf\x74\x5a\xff\x00\x93\x77\xf3\x7d\xde\x5f\xc9\xef\
\xb7\x3b\x77\xb6\x76\x5f\x49\x6d\x7e\xed\xae\xed\x9e\xb8\xc7\xf5\
\xd5\x5e\x23\x74\x6e\xec\xbe\xd0\xa7\xc2\x52\xd0\x6e\x6a\x1d\xca\
\x32\x54\xb5\x58\x9c\x4e\x61\xeb\x25\x9a\x5a\x11\x13\x46\xf1\xa8\
\x00\xea\x0d\xc1\x07\xdd\x7b\xa3\xd7\xfc\xd7\xbf\xe1\x4c\x3d\xa3\
\xfc\xd4\xfe\x26\xd6\x7c\x53\xdd\xff\x00\x14\xba\xff\x00\xa8\xb1\
\x35\x7d\x89\xb3\x3b\x07\xfb\xe5\xb7\x7b\x2b\x72\x6e\x8c\x94\x35\
\x3b\x34\xe5\x0c\x38\xe4\xc4\xe4\x76\xde\x26\x95\xa2\xaf\x19\x36\
\x0f\x23\x4a\x4a\x05\xe1\x49\x20\x8f\x75\xee\x8a\x97\xfc\x26\xc7\
\xfe\xdf\x73\xf0\x33\xff\x00\x0f\x6e\xcd\xff\x00\xdf\x0b\xda\xde\
\xfd\xd7\xba\xfa\x86\x7f\x38\xdf\xfb\x74\xff\x00\xf3\x1f\xff\x00\
\xc5\x29\xf9\x23\xff\x00\xbe\xa7\x73\xfb\xf7\x5e\xeb\xe2\x57\xef\
\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xdf\x1b\xe1\xbf\xfc\
\x23\xd3\xa4\xfe\x52\x7c\x4a\xf8\xcd\xf2\x4f\x23\xf3\x73\xb4\xb6\
\x9e\x4b\xbe\xba\x23\xab\x3b\x7b\x27\xb5\xe8\x7a\x7f\x69\xe4\x68\
\x36\xee\x47\xb0\xb6\x66\x1f\x74\xd6\xe0\xe8\x72\x15\x1b\xca\x9a\
\xa2\xba\x8f\x13\x51\x94\x6a\x78\xe6\x92\x34\x79\x96\x30\xe5\x54\
\xb6\x91\xee\xbd\xd1\x92\xff\x00\xa0\x1f\x3a\x1f\xfe\xf3\xf3\xb7\
\x3f\xf4\x49\x6c\xdf\xfe\xce\x7d\xfb\xaf\x75\xb3\xbf\xf2\xa2\xfe\
\x5c\x1b\x6f\xf9\x57\x7c\x4b\xa0\xf8\xa3\xb5\x3b\x4f\x3f\xdc\x38\
\x7a\x0e\xc1\xde\xbb\xfa\x3d\xe1\xb8\xf6\xde\x37\x6a\xe4\x0c\xdb\
\xce\x5c\x7c\xb3\x62\xc6\x2b\x17\x90\xca\x53\x8a\x7a\x13\x40\x0a\
\xc8\x66\x67\x90\xb9\xb8\x50\x02\x8f\x75\xee\x88\x1f\xf3\x8d\xff\
\x00\x84\xf6\x75\xd7\xf3\x81\xee\xfe\xad\xee\xbd\xe9\xf2\x67\x7c\
\x74\xa5\x5f\x58\x75\x57\xfa\x2d\xa4\xdb\x9b\x63\xaf\xb6\xf6\xef\
\xa1\xca\x53\xff\x00\x7b\xb7\x0e\xec\x39\xa9\xab\xb2\x99\xfc\x35\
\x55\x2d\x53\xcb\xb8\x0c\x0d\x10\x59\x23\xd1\x0a\xb0\x2a\x4b\x5f\
\xdd\x7b\xaa\x24\xed\x3c\x8c\x9f\xf0\x8d\xb9\x30\x98\x8e\x92\x41\
\xf3\x8e\x3f\xe6\x02\x95\xf9\x1d\xcb\x27\x6a\x9f\xf4\x3c\x7a\xc1\
\xfe\x35\x35\x2d\x36\x25\x36\xfa\xed\x05\xde\x27\x71\x7f\x7d\x17\
\xbc\x6a\x0d\x59\xaa\x68\x7e\xcf\xf8\x4c\x3e\x20\xde\x79\x74\xfb\
\xaf\x75\x0b\xab\xfe\x4d\xe5\xbf\xe1\x60\x79\x5c\x97\xc3\x4e\xe8\
\xda\x38\xcf\x85\x18\x3f\x8b\x78\xe5\xf9\x37\x88\xdf\x9d\x61\x93\
\xab\xed\xcc\xc6\xeb\xcb\x54\x54\xc5\xd5\x6d\xb4\xb2\x18\x6d\xd7\
\x4f\xb4\x28\x71\xb8\xc3\x47\xbd\x5e\xb3\xee\x63\x96\x59\x84\xb4\
\xaa\x81\x74\xbb\x11\xee\xbd\xd1\x0b\xfe\x74\x1f\xf0\x99\xbe\xaa\
\xfe\x55\xdf\x09\xb2\x9f\x2b\xb6\x9f\xca\xce\xc0\xed\xec\xd5\x07\
\x66\xec\x0d\x83\x16\xcf\xdc\x5d\x6b\xb7\x76\xbe\x32\x5a\x7d\xe5\
\x3e\x4e\x2a\x8a\xf7\xca\x63\x37\x36\x56\xa9\x27\xa1\x5a\x00\xc8\
\x82\x22\xaf\x72\x09\x1f\x5f\x7e\xeb\xdd\x6a\x11\xef\xdd\x7b\xaf\
\x7b\xf7\x5e\xe9\x5f\xd7\xbb\xba\x5d\x81\xbf\xb6\x3e\xfc\x82\x82\
\x1c\xa4\xfb\x27\x77\xed\xad\xdd\x0e\x32\xa2\x69\x29\xe9\xf2\x32\
\xed\xbc\xd5\x16\x66\x3a\x09\xe7\x84\x19\xa0\x86\xad\xe8\x84\x6c\
\xe8\x0b\x2a\xb1\x23\x91\xef\xdd\x7b\xad\xdc\x7f\xe8\x38\x3e\xf8\
\xbf\xfd\x90\x1f\x51\xe9\xbf\xd3\xfd\x36\xef\x2b\xdb\xfa\x6a\xfe\
\xe3\x5a\xff\x00\xe3\x6f\x7e\xeb\xdd\x69\x1b\xd8\x1b\xb2\x5d\xfb\
\xbf\x37\xb6\xfa\x9e\x86\x1c\x5c\xfb\xd3\x77\x6e\x4d\xd9\x36\x36\
\x9e\x69\x2a\x29\xf1\xd2\xee\x3c\xcd\x6e\x62\x4a\x18\x27\x98\x09\
\xa7\x86\x91\xeb\x0c\x6a\xee\x35\x32\xa8\x27\x93\xef\xdd\x7b\xad\
\xbc\x7e\x28\xff\x00\xc2\xc1\xbb\x9b\xe2\xaf\xc6\x3f\x8f\xdf\x1a\
\x30\xbf\x08\xba\xb3\x75\xe2\xba\x0f\xa7\xba\xf3\xa8\xa8\x37\x45\
\x77\x6f\x6e\xfc\x65\x76\xe4\xa5\xeb\xfd\xaf\x8d\xdb\x30\xe7\xab\
\x71\xb1\x6d\x3a\xf8\x71\xf5\x99\x74\xc7\x0a\x89\x61\x8e\x69\x23\
\x8e\x49\x0a\xa1\xd0\x00\x1e\xeb\xdd\x18\x0f\xfa\x0e\x0f\xbe\xbf\
\xef\x01\x3a\x8b\xff\x00\x47\x66\xf2\xff\x00\xec\x23\xdf\xba\xf7\
\x5e\xff\x00\xa0\xe0\xfb\xeb\xfe\xf0\x13\xa8\xbf\xf4\x76\x6f\x2f\
\xfe\xc2\x3d\xfb\xaf\x75\xef\xfa\x0e\x0f\xbe\xbf\xef\x01\x3a\x8b\
\xff\x00\x47\x66\xf2\xff\x00\xec\x23\xdf\xba\xf7\x54\x6b\xfc\xe7\
\xff\x00\x9e\x36\xfb\xfe\x72\x50\x7c\x79\x87\x7b\x7c\x7d\xd9\xdd\
\x1c\xdf\x1f\xa5\xec\xe9\x31\xf3\x6d\x5d\xef\x9d\xde\x12\x6e\x61\
\xd9\x6b\xb1\x16\xa6\x3a\xf5\xcb\xe1\xb0\xf1\x63\xd3\x0f\xfd\xc6\
\x43\x17\x89\x5d\xa5\x35\x2f\xa8\x80\xaa\x3d\xfb\xaf\x75\x6e\x5f\
\xf0\x89\x5f\xfb\x2e\xcf\x96\xdf\xf8\xa9\x51\xff\x00\xef\xe2\xeb\
\xcf\x7e\xeb\xdd\x7d\x2c\x7d\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\xd1\xdf\xe3\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x69\x0d\xfc\xcc\x3f\
\xe1\x27\x5d\xd7\xf3\xcf\xe7\x4f\xc8\xcf\x97\x7b\x77\xe6\x17\x56\
\xf5\xf6\x13\xbb\xf7\x86\x37\x72\xe3\xb6\x6e\x6b\xac\x77\x66\x67\
\x2b\x81\x83\x1f\xb4\xb6\xee\xda\xfb\x4a\xdc\x9d\x0e\xe3\xa5\xa4\
\xac\x99\xe4\xc1\xb4\x9a\xe3\x8d\x16\xce\x05\x85\xbd\xfb\xaf\x75\
\xb1\x1f\xf2\x67\xfe\x5d\xfb\xaf\xf9\x5d\x7c\x1d\xda\xbf\x12\xb7\
\x97\x65\xed\xee\xd9\xcd\x6d\xdd\xfb\xd8\x9b\xc1\xb7\x8e\xd8\xc0\
\x64\xb6\xde\x2e\xa2\x97\x7b\x67\x3f\x8b\xd3\xd0\xae\x37\x2b\x5f\
\x91\xab\x13\xd0\x82\x55\xdf\xc8\x15\x89\xe0\x71\x73\xee\xbd\xd5\
\xab\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xa1\xef\xe7\xcd\xfc\xa0\x37\
\xdf\xf3\x84\xe9\x6e\x8b\xea\xad\x89\xdd\x3b\x4b\xa5\x6a\xba\x93\
\xb4\x73\x3d\x83\x90\xcb\x6e\xdd\xa9\x99\xdd\x54\xf9\xaa\x7c\x9e\
\xd3\xab\xdb\x91\x63\xe8\xe0\xc3\xe5\x31\x92\x52\x4d\x0c\xb5\x3e\
\x46\x67\x2e\xac\xbc\x0b\x11\xcf\xba\xf7\x55\xd9\xfc\x95\x3f\xe1\
\x34\x9d\xb7\xfc\xaa\x7e\x6a\xc1\xf2\xa7\x78\xfc\xa5\xeb\x9e\xdc\
\xc2\xc7\xd5\x3b\xf7\xae\x9f\x68\x6d\x9e\xbc\xdc\xdb\x6f\x28\xf5\
\x3b\xc2\x5c\x0c\xb4\xf9\x25\xc9\xe5\x33\xd5\xf4\x89\x05\x11\xc3\
\x9d\x68\x63\x2c\xe1\xec\x2d\xf5\xf7\xee\xbd\xd5\xf4\xff\x00\x35\
\x6f\x85\x7b\x93\xf9\x87\xfc\x09\xef\xcf\x87\x9b\x4b\x7e\x61\x3a\
\xcb\x3f\xdc\x74\x5b\x1e\x8e\x87\x7b\x6e\x3c\x25\x7e\xe2\xc3\xe1\
\x57\x6a\x76\x5e\xcd\xdf\x55\x66\xab\x11\x8c\xaf\xc6\xd6\xd4\xb5\
\x7d\x16\xd8\x92\x9a\x32\x93\x2f\x8a\x59\x96\x46\x0e\xaa\x51\xbd\
\xd7\xba\xd2\xa3\xfe\x80\x7f\xf9\x0b\xff\x00\x79\xe9\xd3\x3f\xfa\
\x27\xb7\xbf\xff\x00\x65\x7e\xfd\xd7\xba\x9d\x8d\xff\x00\x84\x76\
\x77\x9f\xc6\x8c\x85\x0f\xc8\xfc\xcf\xcd\x8e\xa7\xdd\x18\x9f\x8f\
\xd5\x74\xfd\xdd\x92\xdb\x38\xce\xa8\xde\x14\x39\x1d\xc7\x43\xd5\
\x32\xae\xfc\xaa\xc0\x50\xd7\x55\x6e\x89\x69\xa8\x6a\xf3\x30\x60\
\x5a\x9a\x39\xe4\x47\x48\x5a\x40\xe5\x58\x0d\x27\xdd\x7b\xa3\x76\
\x3f\xe1\x70\x3f\x1f\xb4\x02\x7e\x04\x77\x1f\x93\x48\x25\x47\x72\
\xec\xa2\x81\xad\xc8\x0f\xfd\xd0\x0c\x54\x1f\xce\x90\x7f\xc3\xdf\
\xba\xf7\x44\xfa\xaf\xfe\x11\x77\xdf\x9d\xa9\x55\x51\xd9\xf4\x5f\
\x3a\x3a\x7b\x1b\x49\xd8\xf3\x49\xbf\x69\xb1\xd3\xf5\x0e\xf6\x92\
\x6c\x7c\x3b\xc1\x8e\xe1\x8e\x82\x59\x57\x75\x05\x95\xe8\xd7\x23\
\xe3\x2e\x02\xeb\xd3\x7b\x0b\xd8\x7b\xaf\x75\xbe\x57\xc3\xae\x8d\
\xca\xfc\x63\xf8\x99\xf1\xa3\xe3\x96\x73\x70\xe3\xf7\x6e\x67\xa2\
\x3a\x27\xaa\xba\x8b\x2b\xba\x71\x38\xfa\x9c\x4e\x33\x71\xe4\x7a\
\xf3\x64\xe1\x76\xa5\x66\x6f\x1f\x8b\xac\xaa\xad\xab\xc7\xd1\x64\
\xea\x31\x4d\x34\x50\xc9\x34\xaf\x12\x38\x56\x76\x22\xe7\xdd\x7b\
\xa3\x21\xef\xdd\x7b\xad\x61\x3f\x9a\x97\xfc\x29\xab\xa9\xff\x00\
\x95\xaf\xcb\x8c\xdf\xc4\xdd\xe5\xf1\x4f\xb1\xbb\x67\x2f\x85\xd8\
\xdb\x23\x7b\x9d\xe7\xb6\xfb\x17\x6c\x6d\xbc\x65\x54\x1b\xd6\x82\
\xa2\xba\x1a\x18\xf1\x39\x3c\x0e\x46\xae\x37\xc7\xac\x1a\x1e\x46\
\x97\xf7\x1a\xf6\x50\x00\x2d\xee\xbd\xd5\x83\x7f\x27\x6f\xe6\xd7\
\xb2\xff\x00\x9b\xff\x00\x46\xf6\x77\x78\x6c\x8e\x9a\xdd\x3d\x2d\
\x8e\xeb\x3e\xd8\x97\xaa\x6a\xb0\x5b\xaf\x74\xe2\x37\x5d\x66\x5a\
\xb2\x2d\x9f\xb6\x37\x71\xcb\xd3\xd6\x62\x31\xb8\xc8\x69\xa9\xcc\
\x1b\x99\x21\xf1\x3a\x33\x6a\x88\xb6\xa2\x0d\x87\xba\xf7\x44\xbf\
\xf9\xfa\xff\x00\x23\x0e\xc7\xfe\x72\x19\xaf\x8c\x19\x3d\x87\xdf\
\xfb\x27\xa4\xa2\xe8\x1c\x67\x6c\xd0\x64\xe0\xdd\xdb\x2f\x3b\xba\
\xe4\xdc\x52\x76\x3d\x57\x5e\xd4\x52\x4b\x41\x26\x1b\x31\x8c\x5a\
\x14\xc5\xae\xcb\x90\x48\xb2\x2b\x99\x0c\xea\x54\x8d\x24\x1f\x75\
\xee\xb5\xe2\xff\x00\xa0\x1f\xfe\x42\xff\x00\xde\x7a\x74\xcf\xfe\
\x89\xed\xef\xff\x00\xd9\x5f\xbf\x75\xee\xbd\xff\x00\x40\x3f\xfc\
\x85\xff\x00\xbc\xf4\xe9\x9f\xfd\x13\xdb\xdf\xff\x00\xb2\xbf\x7e\
\xeb\xdd\x1f\xaf\xe5\x79\xff\x00\x09\x47\xee\x9f\xe5\xf9\xf3\xcb\
\xe3\xcf\xcc\x2d\xcb\xf2\xfb\xab\xfb\x1b\x07\xd2\x99\xfd\xd3\x98\
\xc8\x6c\xbc\x1f\x59\xee\xbc\x26\x5b\x3b\x16\xe1\xeb\xdd\xdd\xb2\
\xa3\x82\x8b\x29\x5f\xb8\xaa\xe8\xe8\xe4\xa7\x9b\x73\x2c\xe5\x9e\
\x37\x05\x62\x2a\x05\xc8\xf7\xee\xbd\xd6\xc8\x9f\xce\x37\xfe\xdd\
\x3f\xfc\xc7\xff\x00\xf1\x4a\x7e\x48\xff\x00\xef\xa9\xdc\xfe\xfd\
\xd7\xba\xf8\x95\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\
\xb7\xce\xf8\x6b\xff\x00\x0b\x08\xe8\x8f\x8b\x7f\x12\x7e\x33\x7c\
\x6c\xc9\xfc\x28\xed\xbd\xd5\x93\xe8\x5e\x88\xea\xae\xa1\xc9\xee\
\x7a\x1e\xd9\xd9\xd4\x34\x1b\x8b\x25\xd7\xbb\x2b\x0d\xb5\xab\xf3\
\x94\x14\x35\x1b\x55\xea\x28\x68\x72\xb5\x78\xc7\x9e\x18\x24\x67\
\x92\x18\xe4\x08\xce\xe5\x4b\xb7\xba\xf7\x5b\xad\xff\x00\x2f\x3f\
\x99\x18\x5f\xe6\x07\xf0\xdb\xa3\xfe\x61\x6d\xdd\x89\x98\xeb\x3c\
\x37\x76\x61\x77\x16\x66\x87\x63\xe7\xb3\x14\x19\xfc\xae\x05\x36\
\xee\xf7\xdc\xfb\x26\x48\xaa\xb3\x18\xda\x6a\x3a\x2a\xe1\x5b\x3e\
\xd9\x6a\x98\xd9\x62\x8c\x88\xa6\x55\x65\x0e\x18\x7b\xf7\x5e\xe8\
\xe7\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xd7\x03\xf9\xfb\x7f\x23\x5e\
\xc7\xfe\x72\x19\x2f\x8c\x15\xbb\x0f\xbf\xb6\x4f\x49\x45\xd0\x34\
\x3d\xb5\x4b\x94\x8b\x77\x6c\xbc\xee\xec\x93\x71\xc9\xd8\xf3\xf5\
\xe4\xb4\x72\x63\xe5\xc3\x66\x71\x8b\x42\x98\xb5\xd9\x52\x89\x56\
\x45\x73\x29\xa8\x52\xa5\x74\x90\xde\xeb\xdd\x05\x5f\xc8\x7b\xfe\
\x13\xe3\xda\x5f\xc9\xfb\xe4\x17\x72\xf7\x2e\xf8\xf9\x23\xb0\x3b\
\xa3\x17\xda\x3d\x38\x9d\x65\x4b\x81\xda\x9b\x13\x71\x6d\x6a\xfc\
\x55\x7c\x7b\xdb\x6e\x6e\xa4\xcb\xd4\x57\x65\xf3\x99\x1a\x79\xa8\
\xc5\x3e\x12\x48\x4c\x4b\x1e\xb6\x79\x55\xb5\x28\x42\x1b\xdd\x7b\
\xa9\x1f\xf0\xaf\xdf\xfb\x73\xae\xe1\xff\x00\xc5\x8e\xe8\xdf\xfd\
\xca\xdc\xbe\xfd\xd7\xba\xf9\x49\xfb\xf7\x5e\xe8\x79\xf8\xb5\xd1\
\x39\x0f\x94\x3f\x25\x7a\x0b\xe3\x76\x27\x71\xe3\xf6\x7e\x53\xbe\
\xbb\x8b\xae\x7a\x83\x1d\xba\xf2\xd4\x55\x59\x2c\x66\xdb\xad\xec\
\x4d\xd9\x8a\xda\x94\xd9\xcc\x86\x3e\x85\xe3\xac\xad\xa2\xc5\xcd\
\x94\x13\x49\x14\x4c\xb2\x48\x88\x55\x48\x24\x7b\xf7\x5e\xeb\x71\
\xe3\xff\x00\x08\x7f\xf9\x09\x73\x6f\x9e\xbd\x34\x45\xcd\x89\xe9\
\xdd\xee\x09\x1f\x82\x40\xdd\x84\x03\x6f\xf1\x3e\xfd\xd7\xba\xeb\
\xfe\x80\x7f\xf9\x0b\xff\x00\x79\xe9\xd3\x3f\xfa\x27\xb7\xbf\xff\
\x00\x65\x7e\xfd\xd7\xba\xec\x7f\xc2\x1f\xfe\x42\x5c\x6a\xf9\xeb\
\xd3\x40\x5c\x5c\x8e\x9d\xde\xe4\x81\xf9\x20\x1d\xd8\xa0\x90\x3f\
\x17\x1e\xfd\xd7\xba\xd3\xb3\xe5\x9f\xc7\xfc\x97\xc5\x1f\x93\xbd\
\xff\x00\xf1\x9b\x33\xb9\x71\xfb\xcb\x2d\xd0\x7d\xbd\xbf\xba\x93\
\x25\xbb\x31\x54\x35\x38\xcc\x66\xe3\xad\xd8\x5b\x93\x21\xb7\x2a\
\x73\x34\x18\xea\xd9\x66\xab\xa2\xa4\xc8\xcb\x8f\x32\xc7\x14\x8e\
\xce\x8a\xc0\x12\x48\xbf\xbf\x75\xee\xb6\x44\xfe\x5e\x9f\xf0\x94\
\x9e\xe6\xfe\x60\xbf\x0d\xba\x47\xe6\x1e\xd7\xf9\x7f\xd6\x1d\x73\
\x83\xee\xbc\x4e\xe6\xcb\x50\x6c\xac\xef\x59\xee\xbc\xe6\x57\x02\
\x9b\x6b\x7d\x6e\x8d\x8d\x2c\x35\x99\x6a\x0d\xc3\x45\x49\x59\x25\
\x55\x4e\xd7\x92\x70\x52\x24\x0a\x92\xaa\xf2\x41\x3e\xfd\xd7\xba\
\x39\xdf\xf4\x03\xff\x00\xc8\x5f\xfb\xcf\x4e\x99\xff\x00\xd1\x3d\
\xbd\xff\x00\xfb\x2b\xf7\xee\xbd\xd7\xbf\xe8\x07\xff\x00\x90\xbf\
\xf7\x9e\x9d\x33\xff\x00\xa2\x7b\x7b\xff\x00\xf6\x57\xef\xdd\x7b\
\xaf\x7f\xd0\x0f\xff\x00\x21\x7f\xef\x3d\x3a\x67\xff\x00\x44\xf6\
\xf7\xff\x00\xec\xaf\xdf\xba\xf7\x57\x97\xfc\x87\xff\x00\xe1\x3d\
\xfd\xa5\xfc\x9f\xfe\x43\x77\x1f\x74\xef\x8f\x92\x5b\x03\xba\x31\
\x7d\x9f\xd3\x3f\xe8\xbe\x97\x01\xb5\x36\x1e\xe2\xda\xd9\x0c\x5e\
\x40\x6f\x7d\xaf\xba\xd3\x2f\x3d\x7e\x5f\x39\x91\xa7\x9a\x8d\x69\
\xf0\x12\x42\x61\x58\xb5\xb3\xcc\xad\xa9\x42\x10\xde\xeb\xdd\x6d\
\x2f\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\
\xee\xbf\xff\xd2\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x6b\x3b\xf3\x43\xfe\x15\x3d\xf0\x1f\xe0\
\xd7\xca\x0e\xe0\xf8\x9f\xda\xbd\x47\xf2\xa7\x3f\xd8\x3d\x2d\xb8\
\x68\xb6\xde\xe6\xcc\x6c\x6d\x9d\xd6\x19\x0d\xa7\x5f\x5b\x5d\x80\
\xc3\xee\x28\xa5\xc2\xd6\x67\x3b\x6b\x6f\xe5\xa7\xa5\x5a\x3c\xd4\
\x4a\x5a\x6a\x38\x1b\xc8\xad\x60\x56\xcc\x7d\xd7\xba\x2c\x1f\xf4\
\x1a\x6f\xf2\xc6\xff\x00\x9f\x17\xf3\x57\xff\x00\x40\x2e\x9a\xff\
\x00\xed\xe7\xef\xdd\x7b\xaf\x7f\xd0\x69\xbf\xcb\x1b\xfe\x7c\x5f\
\xcd\x5f\xfd\x00\xba\x6b\xff\x00\xb7\x9f\xbf\x75\xee\xbd\xff\x00\
\x41\xa6\xff\x00\x2c\x6f\xf9\xf1\x7f\x35\x7f\xf4\x02\xe9\xaf\xfe\
\xde\x7e\xfd\xd7\xba\xf7\xfd\x06\x9b\xfc\xb1\xbf\xe7\xc5\xfc\xd5\
\xff\x00\xd0\x0b\xa6\xbf\xfb\x79\xfb\xf7\x5e\xeb\xdf\xf4\x1a\x6f\
\xf2\xc6\xff\x00\x9f\x17\xf3\x57\xff\x00\x40\x2e\x9a\xff\x00\xed\
\xe7\xef\xdd\x7b\xaf\x7f\xd0\x69\xbf\xcb\x1b\xfe\x7c\x5f\xcd\x5f\
\xfd\x00\xba\x6b\xff\x00\xb7\x9f\xbf\x75\xee\x87\x0f\x8c\xff\x00\
\xf0\xad\x2f\xe5\xe9\xf2\xa3\xe4\x3f\x49\x7c\x6b\xd8\x1d\x37\xf2\
\xdf\x13\xbd\xbb\xe3\xb4\x36\x5f\x53\xed\x4c\xa6\xe9\xd9\x3d\x59\
\x4b\xb6\xf1\xdb\x83\x7d\x67\xa8\xb6\xf6\x26\xb7\x3d\x53\x88\xee\
\x0c\xce\x4e\x9b\x11\x4f\x5b\x5e\x8d\x51\x24\x14\xb5\x12\x47\x10\
\x66\x08\xd6\xb7\xbf\x75\xee\xb6\x42\xee\xdd\x97\x94\xec\x8e\x98\
\xed\xce\xbb\xc1\xd4\x50\xd2\x66\xb7\xef\x58\x6f\xed\x97\x87\xaa\
\xc9\xbc\xf1\xe3\x69\xb2\x9b\xa7\x6a\x65\xb0\x78\xfa\x8c\x84\x94\
\xd0\xd4\x54\xa5\x0c\x35\x75\xc8\xd2\x98\xe3\x91\xc4\x60\x95\x56\
\x36\x07\xdd\x7b\xaf\x9a\x9a\xff\x00\xc2\x2d\x3f\x99\xf1\x89\x59\
\xbb\xbf\xe1\x4a\xca\x51\x4b\x44\x3b\x07\xb9\x18\x2b\x90\x0b\x20\
\x93\xfd\x05\x00\xc1\x4f\x17\xb0\xbf\xbf\x75\xee\xaf\xab\x13\xff\
\x00\x0b\x13\xfe\x5b\x1d\x5d\x88\xc5\x75\xa6\x67\xa5\x3e\x64\x56\
\xe6\xba\xef\x17\x8f\xd8\xd9\x8a\xac\x76\xc4\xea\x27\xc7\x54\xe5\
\xb6\x9d\x1c\x38\x1c\x94\xb4\x12\x55\xf7\x55\x1d\x5c\x94\x32\x57\
\x50\x39\x89\xe5\x86\x19\x1a\x3b\x16\x8d\x09\x2a\x3d\xd7\xba\xda\
\xbb\xe3\xbf\x76\xed\x6f\x92\xbd\x09\xd2\xff\x00\x21\xf6\x3d\x06\
\x77\x15\xb3\x7b\xcb\xab\xb6\x27\x6d\x6d\x4c\x66\xe8\xa4\xa5\xa0\
\xdc\x98\xfd\xbd\xd8\x1b\x6b\x1b\xba\x70\xf4\x59\xea\x2a\x2a\xdc\
\x95\x1d\x26\x62\x9a\x83\x29\x1a\x54\xc7\x15\x44\xf1\xa4\xa1\x82\
\xc8\xe0\x06\x3e\xeb\xdd\x50\x1f\xcd\x3f\xf8\x54\xdf\xc0\x8f\x82\
\xff\x00\x28\xbb\x7f\xe2\x6f\x6b\x75\x1f\xca\x8d\xc1\xd8\x3d\x2f\
\x9e\xc7\x6d\xed\xcd\x99\xd8\xbb\x3b\xac\x32\x1b\x4a\xbe\xb3\x25\
\xb7\x30\xbb\x9a\x19\x70\xb5\x99\xde\xda\xdb\xf9\x69\xe9\x92\x87\
\x39\x12\x33\x4d\x47\x01\xf2\xab\x00\x0a\xd9\x8f\xba\xf7\x54\x09\
\xf2\xef\xf9\x60\xf7\xaf\xfc\x29\xbf\xb9\xab\xbf\x9a\x67\xc1\x6d\
\xd9\xd5\xfd\x57\xd0\x1b\xb3\x6e\x6d\xee\x97\xc7\x6d\x4f\x93\xd9\
\x7d\xcd\xb4\x3b\x56\x1d\xd7\xd3\xf4\xd2\xe2\x37\x45\x5d\x5e\x13\
\xad\x76\xa7\x6b\x6d\x88\xf0\x95\x35\x79\x04\x34\x52\xa6\x5d\xe6\
\x95\x01\x32\x45\x11\xb0\x3e\xeb\xdd\x6c\xaf\xff\x00\x09\xe0\xfe\
\x55\x5f\x20\x3f\x94\xbf\xc6\x0e\xeb\xe9\x5f\x90\xfb\xbb\xaa\x37\
\x8e\xe7\xec\x6e\xfb\xa8\xed\x1c\x1d\x77\x52\x66\x77\x4e\x6f\x0b\
\x4d\x80\x97\xaf\x76\x46\xd3\x5a\x5c\x95\x46\xeb\xda\x1b\x3a\xb2\
\x1c\xa7\xf1\x0d\xb7\x3b\x98\xe3\x82\x58\x84\x4c\x87\xc9\xa8\x95\
\x5f\x75\xee\x87\x4f\xe6\xb1\xfc\xed\xbe\x2e\xff\x00\x28\x5c\x97\
\x49\x62\xfe\x46\x6c\x2e\xef\xde\x93\xf7\xc5\x0e\xfe\xaf\xda\x6f\
\xd4\x1b\x7b\x66\xe6\xe1\xc7\x43\xd7\x73\xed\x2a\x7c\xca\xe7\x9f\
\x76\xef\xad\x99\xf6\xd2\xd5\x3e\xf2\xa6\xfb\x61\x07\xdc\x6b\x09\
\x21\x6d\x1a\x57\x57\xba\xf7\x49\x0f\xe5\x67\xfc\xfa\xbe\x25\x7f\
\x36\xde\xd0\xec\xbe\xa7\xf8\xf1\xd7\x7d\xf9\xb3\x77\x07\x56\xec\
\x2a\x4e\xc3\xcf\x56\xf6\xe6\xda\xd8\xf8\x5c\x45\x66\x1a\xaf\x70\
\xd0\xed\xb4\xa5\xc5\xd4\x6d\x3e\xc1\xde\x55\x12\x64\x96\xb7\x21\
\x1b\x94\x9a\x28\x50\xc4\x18\x86\x24\x5b\xdf\xba\xf7\x47\x0f\xf9\
\x92\xff\x00\x31\x4e\x99\xfe\x57\xdf\x1b\x66\xf9\x43\xde\xfb\x67\
\xb1\xb7\x6e\xc4\x87\x7d\xed\x5e\xbf\x6c\x4f\x57\x62\xb0\x19\x8d\
\xd0\x72\xfb\xb9\x72\x6f\x8f\xa9\xfb\x5d\xcb\xb9\x36\xae\x2d\x71\
\xd0\x2e\x2a\x4f\x2b\xb5\x58\x70\x4a\x85\x56\x27\x8f\x75\xee\xb5\
\xf9\xff\x00\xa0\xd3\x7f\x96\x37\xfc\xf8\xbf\x9a\xbf\xfa\x01\x74\
\xd7\xff\x00\x6f\x3f\x7e\xeb\xdd\x14\xcf\x9e\x9f\xf0\xad\x4f\xe5\
\xdf\xf2\x97\xe1\x27\xcb\x6f\x8d\xdb\x1b\xa7\x7e\x5c\x62\x37\xb7\
\x7b\x7c\x76\xed\xce\xa7\xda\x19\x2d\xcf\xb2\xfa\xa2\x8f\x6d\xd0\
\xee\x5d\xfb\xb2\xb2\xfb\x6b\x0f\x57\x9f\xac\xc6\x77\x16\x63\x23\
\x4b\x87\xa5\xad\xc9\x24\x95\x0f\x05\x25\x44\xa2\x24\x6d\x11\xb3\
\x10\x3d\xfb\xaf\x75\xf3\xe4\xd8\xdb\x4b\x23\xbf\xb7\xae\xcf\xd8\
\x98\x89\xa8\xe9\xb2\xdb\xd7\x74\xed\xfd\xa5\x8b\xa8\xc8\xc9\x24\
\x38\xf8\x32\x3b\x8f\x2d\x49\x87\xa2\x9a\xba\x68\x62\x9e\x58\xa8\
\xe2\xa9\xac\x56\x95\x96\x37\x65\x40\x48\x52\x78\xf7\xee\xbd\xd6\
\xdb\x3f\xf4\x05\x8f\xf3\x39\xbf\xfc\xcf\x5f\x85\x56\xbf\xd7\xfb\
\xfb\xdc\xbf\x4f\xeb\x6f\xf4\x19\xef\xdd\x7b\xad\x47\x37\x5e\xdd\
\xad\xd9\xfb\xa7\x72\xed\x2c\x94\xb4\xd3\xe4\x76\xbe\x7f\x33\xb7\
\x6b\xe6\xa2\x91\xe5\xa3\x9a\xb7\x09\x91\xa9\xc6\x55\x4b\x49\x2c\
\x91\xc3\x24\x94\xd2\x4f\x4c\xc6\x36\x64\x56\x28\x41\x20\x1e\x3d\
\xfb\xaf\x75\xb3\xef\xc7\x4f\xf8\x49\x0f\xf3\x10\xf9\x31\xd0\x5d\
\x2d\xf2\x27\x63\xf7\x2f\xc4\x5c\x5e\xcc\xef\x3e\xad\xd8\xbd\xb5\
\xb5\x71\x9b\x97\x7c\x76\xa5\x3e\xe2\xc7\xed\xee\xc0\xdb\x78\xed\
\xd1\x87\xa2\xce\xd3\xe2\x7a\x77\x2f\x8d\xa6\xcc\x53\x63\xf2\x71\
\xa5\x4c\x70\x55\x54\x47\x1c\xc1\x94\x3b\x5a\xfe\xfd\xd7\xba\xbe\
\xcf\x8d\xdf\xcf\x5f\xe2\x9f\xf2\x1b\xe9\x0d\x81\xfc\xa5\x3e\x5b\
\xf5\xff\x00\x7a\xf6\x17\xc8\xbf\x86\xb8\xfc\x86\xd0\xec\xed\xdf\
\xd0\x5b\x7b\x62\xee\x5e\xa2\xcc\xe4\xb7\xee\x6f\x27\xdc\x78\x79\
\x76\x66\x77\x7c\x76\x17\x5f\xee\xac\x8d\x25\x2e\xda\xec\x7a\x2a\
\x7a\x96\xac\xc3\x50\x3a\xd6\xc3\x32\xaa\x32\x2a\xbb\x7b\xaf\x75\
\xb3\xd7\xf2\xde\xfe\x61\xdd\x39\xfc\xcf\x7e\x35\x51\x7c\xa4\xe8\
\xad\xb3\xd8\xbb\x4f\x61\xd7\x6f\x6d\xd9\xb1\x22\xc4\x76\x86\x2b\
\x03\x87\xdd\x23\x2b\xb3\xe5\xa2\x8b\x23\x52\xf4\x9b\x6f\x71\xee\
\xac\x51\xa0\x9c\xd7\x21\x85\xd6\xad\x9c\xd9\x83\x2a\x91\x6f\x7e\
\xeb\xdd\x12\xef\xe6\x93\xfc\xfc\xfe\x23\x7f\x29\x5e\xdb\xeb\xbe\
\x9b\xf9\x0d\xd7\x5d\xff\x00\xbc\xb7\x2f\x65\x75\xc9\xec\xdc\x25\
\x7f\x52\x6d\x9d\x8d\x99\xc2\xd2\xe0\xff\x00\xbc\xd9\xad\xaa\x29\
\x32\x55\x3b\xb3\xb0\xb6\x6d\x4a\x65\x3e\xff\x00\x03\x33\x98\xe2\
\x86\x54\x58\x99\x09\x7b\xb6\x91\xee\xbd\xd5\x62\xff\x00\xd0\x69\
\xbf\xcb\x1b\xfe\x7c\x5f\xcd\x5f\xfd\x00\xba\x6b\xff\x00\xb7\x9f\
\xbf\x75\xee\xbd\xff\x00\x41\xa6\xff\x00\x2c\x6f\xf9\xf1\x7f\x35\
\x7f\xf4\x02\xe9\xaf\xfe\xde\x7e\xfd\xd7\xba\x2b\xdf\x2f\xbf\x99\
\x8f\x47\xff\x00\xc2\x9e\x7a\x72\xa3\xf9\x5c\xfc\x12\xda\xbd\x99\
\xd5\x5d\xf9\x9b\xdc\xdb\x7f\xbd\x29\x77\x57\xca\x0c\x56\xda\xda\
\x1d\x58\x9b\x43\xa8\x9e\xaa\x7d\xcf\x45\x36\x6b\xad\x37\x57\x6b\
\xee\x75\xcf\xd4\xc7\x9e\x87\xec\xe1\x5c\x43\x41\x29\x57\xf2\x4d\
\x15\x81\x3e\xeb\xdd\x50\x17\xcd\xaf\xf8\x4b\x5f\xcf\x5f\x81\xff\
\x00\x16\xbb\x77\xe5\xaf\x6c\xf6\xdf\xc5\x8d\xc3\xd7\x9d\x33\x87\
\xc3\x66\xb7\x36\x1b\x61\xef\x0e\xce\xc8\xee\xda\xea\x5c\xde\xea\
\xc0\xed\x0a\x54\xc2\xd1\xe7\x7a\x9b\x6f\x62\x67\x9e\x3c\x8e\xe1\
\x85\xdc\x4d\x59\x00\xf0\xab\x90\x4b\x05\x56\xf7\x5e\xea\xab\x7f\
\x94\xbf\xfd\xbd\x13\xf9\x77\x7f\xe2\xea\xfc\x67\xff\x00\xdf\xc1\
\xb4\x7d\xfb\xaf\x75\xf6\xca\xde\xdb\xaf\x1f\xb0\xf6\x66\xee\xdf\
\x39\x68\x6a\xea\x31\x5b\x33\x6c\x67\xf7\x5e\x4e\x9f\x1f\x1c\x73\
\x57\xcf\x8f\xdb\xb8\xaa\xbc\xbd\x6c\x34\x30\xcb\x2c\x11\x4b\x57\
\x2d\x35\x1b\x2c\x4a\xce\x8a\xce\x40\x2c\x07\x3e\xfd\xd7\xba\xd4\
\x93\xfe\x83\x4e\xfe\x58\xf6\xbf\xfa\x0a\xf9\xab\x7b\x7d\x3f\xb8\
\x7d\x35\xf5\xfe\x97\xff\x00\x4e\x7e\xfd\xd7\xba\xdb\x73\x65\x6e\
\xac\x7e\xfa\xd9\xbb\x4b\x7b\xe2\x61\xab\xa7\xc5\xef\x1d\xb3\x81\
\xdd\x58\xda\x7c\x84\x71\xc3\x5f\x06\x3f\x70\xe2\xa9\x32\xf4\x70\
\xd6\xc5\x14\xb3\xc5\x15\x5c\x54\xf5\x8a\xb2\x2a\xbb\xaa\xb8\x20\
\x31\x1c\xfb\xf7\x5e\xeb\xe2\x9d\xfc\xe2\x3f\xed\xeb\x5f\xcc\x63\
\xff\x00\x17\x3f\xe4\x57\xfe\xfd\x1d\xc9\xef\xdd\x7b\xaf\xa8\x57\
\xfc\x26\xaf\xfe\xdc\x85\xf0\x33\xff\x00\x0c\xee\xd5\xff\x00\xe0\
\x83\xed\xcf\x7e\xeb\xdd\x21\x3f\x99\x1f\xfc\x28\xef\xe1\x67\xf2\
\xbf\xf9\x27\x3f\xc5\xee\xf7\xeb\x0f\x92\x1b\xb3\x7d\xd3\xec\x5d\
\xab\xbf\xdf\x2f\xd5\xfb\x57\xaf\x32\xdb\x58\xe2\x37\x73\x64\xc6\
\x3a\x99\x2b\x37\x3f\x66\xed\x3c\x93\x57\xc1\xfc\x2d\xfc\xc3\xed\
\x3c\x6b\xa8\x05\x76\x37\xb7\xba\xf7\x44\x1b\xfe\x83\x4d\xfe\x58\
\xdf\xf3\xe2\xfe\x6a\xff\x00\xe8\x05\xd3\x5f\xfd\xbc\xfd\xfb\xaf\
\x75\xef\xfa\x0d\x37\xf9\x63\x7f\xcf\x8b\xf9\xab\xff\x00\xa0\x17\
\x4d\x7f\xf6\xf3\xf7\xee\xbd\xd5\x9d\x7f\x2b\x6f\xe7\xe9\xf1\x1b\
\xf9\xb5\x76\xe7\x62\x74\xd7\xc7\x9e\xba\xef\xfd\x9b\xb9\x7a\xd7\
\xae\x7f\xd2\x6e\x6e\xbb\xb6\xf6\xce\xc6\xc3\x61\x6a\xb0\x7f\xde\
\x6c\x26\xd5\x34\x98\xda\x9d\xa7\xd8\x5b\xca\xa5\xf2\x9f\x7f\x9e\
\x85\xc4\x72\xc3\x0a\x34\x4a\xe4\x3d\xd7\x49\xf7\x5e\xea\xf1\xfd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xff\xd3\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\xf8\
\x95\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\xbd\xd3\x77\xc2\xdf\xe4\x1b\
\xfc\xcb\x7f\x98\x07\x43\xe1\xbe\x48\xfc\x63\xea\x7d\x95\xbb\xba\
\xa3\x3d\x9f\xdc\x9b\x6b\x1b\x99\xcd\x76\xef\x5d\xec\xfc\x84\xb9\
\x6d\xa7\x90\x38\xbc\xd4\x32\x61\x37\x1e\x7b\x1f\x93\x86\x38\x2b\
\x54\xaa\x3b\x46\x16\x40\x2e\xb7\x16\x3e\xfd\xd7\xba\x35\xff\x00\
\xf4\x09\xbf\xf3\xaf\xff\x00\x9f\x01\xd6\xbf\xfa\x50\xbd\x3b\xff\
\x00\xd9\x5f\xbf\x75\xee\xbd\xff\x00\x40\x9b\xff\x00\x3a\xff\x00\
\xf9\xf0\x1d\x6b\xff\x00\xa5\x0b\xd3\xbf\xfd\x95\xfb\xf7\x5e\xeb\
\xdf\xf4\x09\xbf\xf3\xaf\xff\x00\x9f\x01\xd6\xbf\xfa\x50\xbd\x3b\
\xff\x00\xd9\x5f\xbf\x75\xee\xbd\xff\x00\x40\x9b\xff\x00\x3a\xff\
\x00\xf9\xf0\x1d\x6b\xff\x00\xa5\x0b\xd3\xbf\xfd\x95\xfb\xf7\x5e\
\xe8\xbc\x7c\xae\xff\x00\x84\xee\x7f\x34\xbf\x85\x7f\x1f\xfb\x13\
\xe4\xe7\xc8\x0e\x9e\xd8\xdb\x67\xa8\x7a\xb6\x97\x07\x5b\xbc\xb3\
\x78\x9e\xe7\xeb\x3d\xcf\x91\xa1\xa7\xdc\x5b\x9f\x0b\xb3\xf1\x6f\
\x4d\x82\xc1\x6e\x1a\xcc\xae\x40\xcb\x9d\xdc\x14\xb1\xb2\xc3\x13\
\xb2\x23\x97\x23\x42\xb1\x1e\xeb\xdd\x16\xef\xe4\xc9\xff\x00\x6f\
\x68\xfe\x5c\x3f\xf8\xb9\xdf\x1e\xff\x00\xf7\xe5\x6d\xff\x00\x7e\
\xeb\xdd\x7d\xb2\x3d\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\x13\xbb\x8b\
\xfe\x66\xef\x69\xff\x00\xe2\x47\xdf\x1f\xfb\xd3\x65\x3d\xfb\xaf\
\x75\xf6\xb0\xfe\x53\xff\x00\xf6\xec\x1f\xe5\xe5\xff\x00\x8a\x59\
\xf1\x9f\xff\x00\x7c\xf6\xd1\xf7\xee\xbd\xd6\x90\x7f\xce\x43\xfe\
\x13\x9f\xfc\xd5\x7e\x62\xff\x00\x33\x3f\x96\x9f\x25\x7a\x2b\xa6\
\x76\x26\xe2\xea\x5e\xd7\xdf\x1b\x7b\x37\xb2\x73\x79\x4e\xea\xeb\
\x1d\xb9\x5d\x91\xc6\xe3\xfa\xf3\x67\x6d\xea\x89\xaa\x30\x79\xbd\
\xc5\x45\x96\xc7\x48\x99\x3c\x3c\xe9\xa2\x78\x91\x88\x50\xc2\xea\
\x41\x3e\xeb\xdd\x6d\x67\xff\x00\x09\xe2\xf8\x45\xf2\x27\xf9\x7d\
\x7f\x2e\x0d\xb9\xf1\xcf\xe5\x16\xd4\xc4\x6c\xde\xd4\xc5\xf6\xf7\
\x6b\x6e\xba\x8c\x36\x13\x76\x6d\xfd\xe7\x44\x30\x3b\xa3\x2b\x43\
\x53\x86\xab\xfe\x33\xb6\x6b\x72\x18\xa3\x2d\x54\x70\x39\x31\x2c\
\xad\x24\x60\x0d\x61\x58\x95\x1e\xeb\xdd\x0d\x7f\x3e\x7f\x9d\x5f\
\xf2\xfd\xfe\x5a\x1d\x99\xb3\xfa\x8b\xe5\xbf\x65\xee\xed\x95\xbd\
\xf7\xd6\xc5\x8b\xb1\xf6\xe5\x06\xdf\xea\xfd\xf5\xbe\x29\x2a\xb6\
\xac\xfb\x83\x37\xb6\x62\xac\x9b\x25\xb5\xb0\xd9\x2a\x2a\x5a\x86\
\xcb\xed\xea\xa4\xf0\x3b\x89\x42\xa0\x62\x02\xb2\x93\xee\xbd\xd6\
\xaa\xbf\xce\x1b\x0f\x59\xff\x00\x0a\x7c\xc8\x74\x1e\x7f\xf9\x3e\
\x20\xef\x2c\x7f\xc3\x5a\x2e\xc6\xc3\xf7\xfc\x9d\x86\xf1\xf4\x3b\
\x6d\x7a\xce\xf4\x9f\x66\x56\xf5\x9a\x62\x23\xed\x89\x36\xcc\xbb\
\xa8\x66\x20\xea\x8c\xe9\xa8\x34\x2b\x2a\xd0\xfd\xb4\x42\x52\x0c\
\xe8\x3d\xfb\xaf\x74\x88\xfe\x50\xdd\x23\xd8\x9f\xf0\x99\x9e\xd9\
\xed\x6f\x92\x1f\xcd\xd3\x15\x47\xd2\x3d\x4d\xf2\x2f\xae\xa8\x7a\
\x47\xaa\xf3\x7b\x03\x2d\x8f\xef\x2c\x86\x6b\xb1\x71\x5b\x96\x83\
\x7d\xd6\x62\x6b\x70\x5d\x55\x36\xe6\xca\x61\xa9\x23\xdb\x58\x6a\
\x89\xbe\xee\xaa\x38\xa9\xcb\xa8\x8c\x31\x76\x03\xdf\xba\xf7\x47\
\x73\xf9\xa5\xfc\xfb\xf8\xd3\xff\x00\x0a\x1b\xf8\xb1\x51\xfc\xbc\
\x3f\x95\xc6\xeb\xcd\x77\x0f\xca\x5a\xee\xc2\xd9\xdd\xd1\x06\xce\
\xdf\x1b\x47\x71\x74\xd6\x11\xba\xfb\xac\x86\x55\x77\x86\x57\xfb\
\xe5\xd9\x74\x1b\x7f\x6c\x0a\xba\x06\xdc\x34\xba\x29\x4d\x48\xa8\
\x9c\x39\xf1\xab\x69\x23\xdf\xba\xf7\x5a\x98\xfc\xa8\xff\x00\x84\
\xea\xff\x00\x34\xff\x00\x86\x5d\x01\xd8\xdf\x26\xbb\xf3\xa7\x76\
\x2e\xda\xea\x2e\xa9\xc7\xe2\x72\x7b\xd3\x37\x8a\xee\x7e\xb3\xdc\
\xd9\x0a\x0a\x3c\xde\xe3\xc3\xed\x5c\x7c\x94\xd8\x3c\x1e\xe1\xac\
\xca\xe4\x1a\x4c\xd6\x7a\x9a\x36\x58\x63\x66\x55\x72\xe4\x69\x56\
\x23\xdd\x7b\xaa\x39\xf7\xee\xbd\xd0\x9b\xd2\x9b\x97\x0f\xb3\x3b\
\x93\xa9\x77\x86\xe1\x9e\x5a\x5d\xbf\xb5\x3b\x37\x61\xee\x5c\xe5\
\x54\x14\xf2\x56\x4f\x4d\x87\xc1\x6e\xac\x56\x53\x27\x3c\x34\x90\
\xfe\xed\x54\xb0\xd1\x52\xbb\x2c\x6b\xea\x72\x34\x8e\x4f\xbf\x75\
\xee\xbe\xac\xa7\xfe\x15\x8d\xfc\x93\xc3\x94\xff\x00\x66\x07\xb2\
\x0a\x86\x20\x48\x3e\x3d\x77\x2e\x82\x01\xe1\x80\x3b\x48\x49\xa4\
\xff\x00\x8a\x83\xfe\x1e\xfd\xd7\xba\xf9\x44\x76\x8e\x73\x1b\xb9\
\xfb\x37\xb1\x77\x2e\x16\x69\x2a\x30\xfb\x87\x7d\xee\xec\xe6\x26\
\x79\xa1\x7a\x69\x67\xc6\xe5\xb7\x06\x42\xbe\x86\x69\x69\xe5\xfd\
\xca\x79\x25\xa5\xa8\x46\x64\x6f\x52\x13\x63\xc8\xf7\xee\xbd\xd7\
\xda\xab\xf9\x44\x7f\xdb\xac\x3f\x97\x57\xfe\x29\x67\xc6\xcf\xfd\
\xf4\xbb\x57\xdf\xba\xf7\x5a\x51\x7f\x39\xff\x00\xf8\x4e\xaf\xf3\
\x51\xf9\x99\xfc\xce\x7e\x58\x7c\x99\xe8\x5e\x9b\xd8\xbb\x8f\xa8\
\xbb\x57\x75\xec\xdc\xae\xca\xce\x65\x3b\xa7\xac\xb6\xd5\x7e\x42\
\x8b\x0f\xd5\xbb\x17\x6b\x57\x49\x53\x83\xce\x6e\x1a\x2c\xb6\x3d\
\xe2\xcb\xe0\x6a\x13\x4c\xd1\x21\x65\x50\xcb\x75\x60\x4f\xba\xf7\
\x5b\x4f\xff\x00\xc2\x77\x3e\x0f\xfc\x8c\xfe\x5e\xff\x00\xcb\x93\
\x0d\xf1\xd7\xe5\x26\xd3\xc3\xec\xce\xd3\xa0\xee\x5e\xd4\xdd\xd2\
\xe1\xb0\x9b\xb7\x6f\xef\x4a\x2f\xee\xfe\xe7\xab\xc4\x4b\x86\xac\
\x39\x9d\xb3\x5b\x90\xc5\x79\x6a\x96\x92\x42\x61\x12\xb4\x91\xa8\
\x1a\xc2\xb1\xd2\x3d\xd7\xba\xa7\x4f\xf8\x53\x87\xf2\x5e\xfe\x60\
\x3f\xcc\xc7\xe5\x67\xc7\xde\xd0\xf8\x8f\xd6\x3b\x4b\x7b\x6c\x9e\
\xbf\xf8\xf6\xfb\x0b\x72\xe4\xf3\xfd\xa3\xb1\x76\x3d\x55\x26\xea\
\x3d\x8f\xbc\x37\x09\xa0\x8f\x19\xba\xf3\x18\xba\xca\xaa\x7f\xe1\
\x19\x7a\x79\x16\x78\x44\x91\x96\x66\x42\x55\x97\xd5\xee\xbd\xd6\
\x90\x7f\xcc\x1b\xf9\x50\x7c\xd4\xfe\x58\x13\x75\x5c\x1f\x30\x76\
\x0e\xda\xd8\xf2\x77\x34\x5b\xc2\x6d\x82\x36\xf7\x61\x6c\xed\xf9\
\xfc\x49\x36\x23\xed\xb4\xdc\x9f\x76\x76\x9e\x57\x27\xfc\x30\xd2\
\x1d\xd9\x43\xa3\xcf\xa3\xcd\xe4\x3a\x2f\xa1\xed\xee\xbd\xd5\x6f\
\xfb\xf7\x5e\xeb\x68\xbf\xf8\x48\x1f\xfd\xbe\x2f\x6e\xff\x00\xe2\
\xb9\x77\x97\xfe\xe2\x6d\xbf\x7e\xeb\xdd\x6f\x5b\xff\x00\x0a\x45\
\xff\x00\xb7\x24\xfc\xf7\xff\x00\xc3\x07\xaf\x3f\xf7\xf9\x75\x77\
\xbf\x75\xee\xbe\x59\xdf\xca\x5f\xfe\xde\x89\xfc\xbb\xbf\xf1\x75\
\x7e\x33\xff\x00\xef\xe0\xda\x3e\xfd\xd7\xba\xfb\x53\xf7\x3e\xdc\
\xcb\xef\x1e\x9e\xed\x7d\xa3\xb7\xe0\x8a\xab\x3d\xba\x7a\xd7\x7d\
\x6d\xcc\x25\x34\xf5\x11\xd2\x41\x53\x97\xce\x6d\x7c\xa6\x33\x1b\
\x04\xd5\x73\x5a\x2a\x58\xa6\xad\xaa\x45\x69\x1b\xd2\x80\xdc\xf0\
\x3d\xfb\xaf\x75\xf2\x96\xff\x00\xa0\x4e\x7f\x9d\x86\x80\xdf\xec\
\xbe\xf5\xc0\x62\xa1\xbc\x7f\xec\xc3\x74\xce\xb0\x48\xbe\x82\x46\
\xee\xf1\xea\x1f\x4f\xd5\x6f\xf1\xf7\xee\xbd\xd7\xd5\xaf\xa6\xf6\
\xee\x5f\x68\x75\x0f\x55\x6d\x2c\xfc\x11\x52\xe7\x76\xbf\x5b\xec\
\x7d\xbb\x9a\xa6\x82\xa2\x3a\xb8\x69\xf2\xf8\x4d\xb1\x8b\xc6\x64\
\xa0\x86\xaa\x1f\xda\xa9\x8a\x1a\xca\x67\x55\x91\x7d\x2e\x05\xc7\
\x07\xdf\xba\xf7\x5f\x17\x0f\xe7\x11\xff\x00\x6f\x5a\xfe\x63\x1f\
\xf8\xb9\xff\x00\x22\xbf\xf7\xe8\xee\x4f\x7e\xeb\xdd\x7d\x42\xbf\
\xe1\x35\x7f\xf6\xe4\x2f\x81\x9f\xf8\x67\x76\xaf\xff\x00\x04\x1f\
\x6e\x7b\xf7\x5e\xeb\x5f\x3f\xf8\x51\x47\xf2\x20\xfe\x64\xbf\xcc\
\x3f\xf9\x8b\xd7\x7c\x86\xf8\xbb\xd4\xfb\x37\x77\xf5\x5c\xbd\x23\
\xd5\xfb\x2a\x1c\xde\x6f\xb6\xfa\xf3\x67\x56\xbe\xe0\xdb\x32\x6e\
\x46\xcc\x52\x36\x13\x73\x67\x71\xb9\x54\x4a\x6f\xe2\x31\x69\x93\
\xc4\x62\x90\x37\xa5\x89\x0c\x17\xdd\x7b\xaa\x28\xff\x00\xa0\x4d\
\xff\x00\x9d\x7f\xfc\xf8\x0e\xb5\xff\x00\xd2\x85\xe9\xdf\xfe\xca\
\xfd\xfb\xaf\x75\xef\xfa\x04\xdf\xf9\xd7\xff\x00\xcf\x80\xeb\x5f\
\xfd\x28\x5e\x9d\xff\x00\xec\xaf\xdf\xba\xf7\x5b\x29\xff\x00\xc2\
\x63\xff\x00\x92\xf7\xf3\x01\xfe\x59\xdf\x2b\x7e\x40\xf6\x87\xcb\
\x8e\xb1\xda\x5b\x27\x64\x6f\xff\x00\x8f\x4b\xb0\x76\xd6\x4f\x01\
\xda\x3b\x17\x7c\x55\x55\xee\xa1\xd9\x1b\x3b\x70\xad\x04\x98\xcd\
\xa9\x98\xca\x56\x52\xd3\xff\x00\x08\xc3\xd4\xc8\xd3\xcc\x23\x88\
\x32\xaa\x02\xcc\xfe\x9f\x75\xee\xb7\x5d\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd4\xdf\xe3\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\
\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\xf8\x95\x36\xd7\xfe\xfa\
\xae\xbf\xf7\xee\xbd\xd6\xfc\x9f\xf0\x91\xdf\xfb\x73\x17\x57\xff\
\x00\xe2\x6c\xef\xcf\xfd\xed\x9f\xdf\xba\xf7\x56\xf3\xf2\xa7\xf9\
\x9e\x7c\x06\xf8\x43\xbd\xf6\xff\x00\x5b\xfc\xae\xf9\x3d\xd7\x5d\
\x23\xbe\x77\x4e\xd5\x8b\x7b\xed\xfd\xb5\xbb\xdb\x3b\xfc\x43\x27\
\xb4\xe7\xcb\xe5\x30\x30\x67\x20\x18\xac\x36\x4a\x15\xa2\x9b\x31\
\x84\xab\xa7\x52\xee\xac\xcf\x4e\xf6\x16\x5b\xfb\xf7\x5e\xe8\xb1\
\x7f\xd0\x41\x5f\xc9\x93\xfe\xf6\x09\xd1\xff\x00\xf2\x56\xf1\xff\
\x00\xec\x57\xdf\xba\xf7\x5e\xff\x00\xa0\x82\xbf\x93\x27\xfd\xec\
\x13\xa3\xff\x00\xe4\xad\xe3\xff\x00\xd8\xaf\xbf\x75\xee\x8c\x0f\
\xc6\x8f\xe6\xc3\xfc\xba\x7e\x63\x76\x6c\x7d\x35\xf1\x93\xe5\x87\
\x59\xf7\x17\x67\xcb\x80\xcb\x6e\x88\xf6\x6e\xd5\x3b\x87\xf8\xab\
\xe0\x30\x46\x94\x65\xf2\x6b\xfc\x4f\x05\x8f\xa5\x30\x50\x9a\xd8\
\xb5\x8f\x26\xbb\x3d\xc0\x20\x1b\x7b\xaf\x74\x4b\x3f\xe1\x4c\xdf\
\xf6\xe4\x3f\x9c\x7f\xf6\xa1\xea\x0f\xfe\x08\x2e\xa8\xf7\xee\xbd\
\xd7\xcc\x5f\xf9\x32\x7f\xdb\xda\x3f\x97\x0f\xfe\x2e\x77\xc7\xbf\
\xfd\xf9\x5b\x7f\xdf\xba\xf7\x5f\x6a\xed\xc9\xb8\xb0\x9b\x43\x6e\
\xe7\xf7\x6e\xe6\xc9\x53\x61\xb6\xde\xd7\xc2\xe5\x37\x16\xe0\xcb\
\xd6\x16\x5a\x4c\x56\x13\x09\x43\x3e\x4f\x2b\x92\xaa\x64\x57\x75\
\xa6\xa1\xa0\xa6\x92\x57\x20\x12\x15\x4d\x81\xf7\xee\xbd\xd5\x45\
\x2f\xfc\x28\x2f\xf9\x32\x30\x0c\x3f\x98\x27\x48\x59\x80\x23\x57\
\xf7\xc9\x4d\x88\xbf\x2a\xdb\x50\x32\x9f\xf0\x20\x11\xef\xdd\x7b\
\xaf\x9a\x7e\xfd\xfe\x43\x3f\xce\x03\x78\xef\x9d\xe7\xbb\xb6\xdf\
\xc0\x9e\xeb\xca\xed\xdd\xd3\xbb\x37\x16\xe3\xc0\xe4\xe9\xe3\xda\
\x42\x0c\x96\x17\x37\x98\xac\xc9\xe2\xeb\xe1\x12\x6e\x74\x90\x43\
\x59\x43\x55\x1c\x8b\xa8\x03\x66\x17\x00\xfb\xf7\x5e\xeb\xe8\x29\
\xf0\xa3\xf9\xc3\xff\x00\x2c\xcf\x89\x7f\x0f\x7e\x2e\x7c\x5b\xf9\
\x1d\xf3\x0f\xaa\xfa\x93\xe4\x27\xc7\x3f\x8f\xfd\x47\xd1\xfd\xe7\
\xd5\x3b\x9d\xb7\x20\xdc\xdd\x65\xdb\xfd\x5b\xb1\x70\x7b\x2b\xb2\
\x3a\xf7\x72\x2e\x3b\x6f\xd7\xe3\xd7\x70\x6c\xbd\xe1\x85\xac\xc6\
\xd6\xac\x13\xcd\x0a\xd4\xd3\x38\x49\x1d\x40\x63\xee\xbd\xd5\xe9\
\xf4\x6f\x79\xf5\x27\xc9\x6e\xa9\xd9\xdd\xe3\xd1\x3b\xeb\x0d\xd9\
\x7d\x4d\xd8\x34\x55\x99\x1d\x9b\xbe\x36\xf9\xaa\x38\x7c\xfd\x16\
\x3f\x2b\x5f\x83\xad\x9e\x8f\xef\xa9\xa8\xea\xd4\x52\xe5\xf1\x75\
\x14\xee\xb2\x44\x8c\xb2\x42\xc0\x8e\x3d\xfb\xaf\x74\x50\xfe\x48\
\xff\x00\x36\xaf\xe5\xc5\xf1\x03\xb4\x2b\x7a\x5b\xe4\xb7\xcb\x5e\
\xb1\xea\x0e\xd3\xc6\xe1\xf0\xf9\xfa\xed\x97\xba\x1b\x71\x7f\x16\
\xa6\xc3\xee\x08\x1e\xab\x0d\x5d\x2f\xf0\xdc\x16\x42\x94\x45\x5f\
\x4e\x85\xd0\x79\x35\x69\xb1\x20\x5c\x5f\xdd\x7b\xad\x27\xff\x00\
\xe1\x42\x7d\x35\xda\x5f\xce\xf3\xe4\xef\x4b\xfc\x85\xfe\x54\x5b\
\x27\x33\xf3\x77\xa4\xfa\xa7\xa1\xe9\xba\x67\xb0\xbb\x1f\xa8\x16\
\x99\xb6\xfe\xd7\xed\x2a\x6e\xc1\xde\xdb\xde\xab\x64\xe4\x1b\x74\
\xd4\x6d\xca\xdf\xe3\x34\xfb\x4b\x77\xe2\xeb\xdc\x47\x0b\xc4\x20\
\xae\x8b\xd6\x58\xb2\xaf\xba\xf7\x56\xad\xff\x00\x09\x20\xf8\x0b\
\xf3\x1f\xe0\xbe\xdf\xf9\xd5\x45\xf2\xdf\xe3\xf6\xf9\xe8\xa9\xfb\
\x1f\x33\xf1\xea\xa7\x62\xae\xf3\x5c\x32\xff\x00\x79\xe2\xdb\x14\
\x3d\xc5\x1e\xe2\x38\xd1\x8a\xcb\x64\xd8\x8c\x3b\x67\x68\xbc\xc6\
\x40\x83\xfc\xa9\x02\x96\x21\xb4\xfb\xaf\x74\x1f\xff\x00\xc2\xdc\
\x7f\xec\x8c\x7e\x1b\xff\x00\xe2\xcf\x67\xff\x00\xf7\xd4\xee\x3f\
\x7e\xeb\xdd\x6a\xf7\xff\x00\x09\x90\xf9\x4d\xf1\xeb\xe1\xe7\xf3\
\x3a\xa0\xee\x4f\x93\x7d\xaf\xb6\x7a\x6f\xac\x60\xe8\x4e\xdb\xdb\
\x6f\xbc\x77\x61\xc8\x2e\x2b\xf8\xfe\x6d\xb6\xcf\xf0\xac\x48\x38\
\xda\x1c\x85\x40\xaa\xae\x5a\x49\x4c\x77\x40\xa7\xc6\x45\xee\x40\
\x3e\xeb\xdd\x6e\x7d\xfc\xd9\xff\x00\x98\xff\x00\xc1\xff\x00\xe6\
\x5f\xfc\xbc\xbe\x4a\xfc\x1d\xf8\x1d\xf2\x33\x62\x7c\x9b\xf9\x67\
\xdf\x9b\x77\x68\xe1\x7a\x7b\xa3\x3a\xeb\xf8\xdb\xef\x2d\xfd\x93\
\xda\xdd\x95\xb2\xfb\x03\x72\x52\xe1\x57\x3b\x89\xc3\x62\xb5\xe1\
\x76\x4e\xd2\xc9\xe4\xe6\xf3\x54\xc4\x05\x35\x14\x9a\x6e\xda\x54\
\xfb\xaf\x75\xa0\x1f\x64\xff\x00\x23\xcf\xe6\xc9\xd3\xfd\x79\xbe\
\xbb\x63\xb2\xfe\x0e\xf7\x1e\xd0\xeb\xae\xb3\xda\x3b\x83\x7e\x6f\
\xbd\xd7\x93\x8f\x6b\x9c\x76\xda\xda\x1b\x57\x19\x53\x9a\xdc\x59\
\xea\xf1\x4b\xb8\xea\x2a\x8d\x0e\x23\x13\x47\x2d\x44\xc6\x38\xdd\
\x96\x28\xd9\xac\x6c\x7d\xfb\xaf\x75\x54\xfe\xfd\xd7\xba\xf7\xbf\
\x75\xee\xae\x07\x1d\xfc\x81\xff\x00\x9c\x6e\x5f\x1d\x8f\xcb\x63\
\x7e\x01\x77\x75\x5e\x3b\x2b\x41\x47\x93\xc7\xd5\x46\x9b\x47\xc7\
\x53\x43\x90\xa6\x8a\xae\x92\x75\x0f\xba\x15\xd4\x4d\x4f\x32\xb6\
\x96\x01\x96\xf6\x20\x10\x47\xbf\x75\xee\xbe\x88\x3f\x06\x7f\x9b\
\xf7\xf2\xd2\xf8\x83\xf0\xcb\xe2\xb7\xc5\x4f\x92\xdf\x30\x3a\xb3\
\xa8\x3e\x44\x7c\x70\xf8\xfd\xd4\xdd\x21\xde\x9d\x4f\xba\x1b\x71\
\xff\x00\x79\xba\xcb\xb7\x7a\xc7\x64\xe1\xb6\x77\x62\x6c\x0d\xc6\
\x31\xb8\x0c\x86\x39\x73\xdb\x3f\x76\x62\x2a\xf1\xf5\x82\x09\xe6\
\x84\x54\x53\xb8\x49\x1d\x6c\xc7\xdd\x7b\xa3\x51\xff\x00\x41\x05\
\x7f\x26\x4f\xfb\xd8\x27\x47\xff\x00\xc9\x5b\xc7\xff\x00\xb1\x5f\
\x7e\xeb\xdd\x58\x6f\xc6\x8f\x95\x3f\x1e\xbe\x63\x75\x94\x5d\xcb\
\xf1\x8f\xb5\x36\xdf\x71\x75\x84\xd9\xec\xc6\xd8\x8b\x78\xed\x5f\
\xe2\x1f\xc2\xdb\x3f\x80\x68\x13\x31\x8c\xb6\x4e\x87\x1d\x56\x2a\
\x28\x4d\x54\x65\xaf\x18\x52\xae\xa5\x49\x04\x1f\x7e\xeb\xdd\x02\
\x7f\x2a\xbf\x99\xbf\xc0\xaf\x84\x1b\xcb\x6e\x75\xef\xca\xff\x00\
\x93\x9d\x79\xd2\x1b\xd3\x76\xed\x91\xbc\xb6\xe6\xde\xdd\xed\x9d\
\xfb\xfc\xae\xd7\x39\x5a\xfc\x22\xe6\xa9\xc6\x27\x0d\x92\x89\x69\
\x1f\x2d\x8b\xa8\x81\x75\xb2\xb3\x3c\x2f\x60\x40\x27\xdf\xba\xf7\
\x5a\x71\x7f\xc2\x8b\x29\xa7\xfe\x7a\x79\x2f\x8a\x15\xbf\xca\x3a\
\x36\xf9\xd9\x4b\xf1\xaa\x87\xb8\xa9\x7b\xea\x5e\x99\xb3\xaf\x57\
\x4f\xda\xd3\xf5\xbc\xbd\x6b\x1e\xe5\x1b\xb0\xed\x96\x53\xbd\x63\
\xeb\xec\xe9\xa2\xfb\x71\x38\x3f\xc2\x6a\x35\xe8\xb2\x6b\xf7\x5e\
\xeb\x59\xef\xfa\x07\xdb\xf9\xcd\x7f\xde\xbe\xbb\xc7\xfe\x48\xda\
\x1f\xfd\x94\xfb\xf7\x5e\xea\xe3\x7f\x91\x6f\xc4\x4f\x92\x7f\xc9\
\xe3\xe7\x8e\x2b\xe6\x4f\xf3\x34\xea\x2d\xd1\xf0\xef\xe3\x0e\x3b\
\xaa\x7b\x1b\xad\xab\x7b\x93\xb5\x46\x39\x76\xa4\x1b\xeb\x7d\x41\
\x8a\x8b\x68\xed\xa7\x3b\x6e\xbf\x3f\x93\xfe\x21\x9d\x7c\x65\x40\
\x86\xd4\xe5\x3f\x69\xb5\x32\xf1\x7f\x75\xee\xaf\xa7\xf9\xe9\x7f\
\x39\x6f\xe5\x7d\xf2\x57\xf9\x4f\xfc\xc7\xe8\xfe\x8b\xf9\x99\xd4\
\xfd\x93\xdb\x1b\xff\x00\x66\xec\x9c\x7e\xcd\xd9\x18\x06\xdc\xc7\
\x31\xb8\x2b\x71\xbd\xb7\xd7\xd9\xea\xda\x6a\x11\x5b\xb7\xa9\x29\
\x4c\x90\x62\x71\x55\x13\xb6\xb9\x14\x04\x88\xf3\x7b\x0f\x7e\xeb\
\xdd\x7c\xf4\xbf\x96\xd7\x60\xec\x8e\xa6\xfe\x61\x1f\x08\x7b\x47\
\xb2\xf7\x2e\x3f\x66\x75\xe7\x5d\xfc\xad\xe8\x3d\xeb\xbe\x77\x76\
\x5c\x54\x9c\x5e\xd9\xda\x7b\x67\xb3\xb6\xd6\x63\x70\x67\xb2\x22\
\x8a\x9e\xae\xac\xd1\x62\xb1\x74\x92\xcf\x2f\x8a\x29\x24\xd0\x87\
\x4a\x93\x61\xef\xdd\x7b\xaf\xac\xa9\xff\x00\x85\x04\xff\x00\x26\
\x50\x48\xff\x00\x87\x05\xe8\xee\x38\xe1\xf7\x81\x1f\xec\x08\xda\
\xa4\x1f\x7e\xeb\xdd\x75\xff\x00\x41\x05\x7f\x26\x4f\xfb\xd8\x27\
\x47\xff\x00\xc9\x5b\xc7\xff\x00\xb1\x5f\x7e\xeb\xdd\x76\x3f\xe1\
\x41\x3f\xc9\x94\x90\x3f\xe1\xc1\x7a\x3b\x9e\x39\x7d\xe0\x07\xfb\
\x12\x76\xa8\x03\xdf\xba\xf7\x5f\x27\xef\xe6\x7d\xd9\x3b\x13\xb8\
\xff\x00\x98\xcf\xce\x3e\xd7\xea\xfd\xcf\x8e\xde\xbd\x71\xd8\xff\
\x00\x2a\x3b\xc3\x7a\x6c\x6d\xdd\x88\xfb\x81\x8b\xdc\xbb\x57\x71\
\xf6\x0e\x77\x2b\x83\xcd\xe3\xc5\x5c\x14\xd5\x5f\x67\x92\xc7\xd4\
\xc7\x2c\x7e\x48\xd1\xf4\xb0\xb8\x07\xdf\xba\xf7\x5f\x54\x1f\xf8\
\x4d\x5f\xfd\xb9\x0b\xe0\x67\xfe\x19\xdd\xab\xff\x00\xc1\x07\xdb\
\x9e\xfd\xd7\xba\x37\xdf\x25\xbf\x9b\x1f\xf2\xe8\xf8\x75\xd9\xd2\
\xf4\xcf\xc9\xaf\x96\x3d\x67\xd3\xbd\xa1\x06\x07\x11\xb9\xe6\xd9\
\xbb\xa8\xee\x2f\xe2\xb1\xe0\x73\xdf\x73\xfc\x23\x24\xc7\x19\x82\
\xc8\x52\x08\x6b\x85\x1c\x85\x07\x93\x5d\x96\xe5\x40\x22\xfe\xeb\
\xdd\x00\x1f\xf4\x10\x57\xf2\x64\xff\x00\xbd\x82\x74\x7f\xfc\x95\
\xbc\x7f\xfb\x15\xf7\xee\xbd\xd7\xbf\xe8\x20\xaf\xe4\xc9\xff\x00\
\x7b\x04\xe8\xff\x00\xf9\x2b\x78\xff\x00\xf6\x2b\xef\xdd\x7b\xa3\
\x43\xf1\x57\xf9\x9b\xfc\x0a\xf9\xbf\xbc\xb7\x17\x5e\xfc\x50\xf9\
\x39\xd7\x7d\xdf\xbd\x36\x96\xd8\x3b\xcf\x71\xed\xdd\xa0\xd9\xcf\
\xbf\xc5\x6d\x75\xca\xd0\x61\x1b\x35\x38\xcb\x61\xb1\xb1\x35\x22\
\x65\xb2\x94\xd0\x36\x86\x66\x57\x99\x2e\x00\x20\xfb\xf7\x5e\xe8\
\xf6\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\
\x7b\xaf\xff\xd5\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\
\xbf\xf8\x95\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\xbd\xd6\xfc\x9f\xf0\
\x91\xdf\xfb\x73\x17\x57\xff\x00\xe2\x6c\xef\xcf\xfd\xed\x9f\xdf\
\xba\xf7\x5a\xd3\xff\x00\xc2\xd9\xbf\xed\xe0\x7f\x15\xbf\xf1\x4e\
\x71\xff\x00\xfb\xfa\xfb\x6f\xdf\xba\xf7\x5a\x64\xfb\xf7\x5e\xeb\
\xde\xfd\xd7\xba\xda\x77\xfe\x11\xeb\xff\x00\x6f\x81\xa6\xff\x00\
\xc5\x60\xee\xdf\xfd\xcd\xd8\xde\xfd\xd7\xba\xdd\xef\xfe\x14\xcd\
\xff\x00\x6e\x43\xf9\xc7\xff\x00\x6a\x1e\xa0\xff\x00\xe0\x82\xea\
\x8f\x7e\xeb\xdd\x7c\xc5\xff\x00\x93\x27\xfd\xbd\xa3\xf9\x70\xff\
\x00\xe2\xe7\x7c\x7b\xff\x00\xdf\x95\xb7\xfd\xfb\xaf\x75\xf6\x4b\
\xf9\x5b\xff\x00\x64\xb9\xf2\x4f\xff\x00\x10\x17\x71\x7f\xef\xbb\
\xdc\x5e\xfd\xd7\xba\xf8\x42\x7b\xf7\x5e\xeb\xef\x63\xd3\xbf\xf3\
\x28\xba\xb3\xff\x00\x11\xc6\xc7\xff\x00\xde\x67\x17\xef\xdd\x7b\
\xaf\x8f\xe7\xf3\x39\xf8\x1b\xf3\x97\x79\x7f\x31\xdf\x9e\x5b\xb3\
\x69\x7c\x30\xf9\x5f\xb9\xb6\xbe\xe3\xf9\x7f\xf2\x2b\x37\xb7\x77\
\x1e\xde\xf8\xef\xdb\x79\xbc\x0e\x7b\x09\x94\xed\x7d\xd5\x5b\x8a\
\xcc\xe1\x73\x18\xad\xa3\x57\x8d\xca\x62\xb2\x94\x33\x47\x3d\x3d\
\x44\x12\xbc\x53\x43\x22\xb2\x92\x0f\xbf\x75\xee\xbe\x98\x3f\xc8\
\x03\x63\x6f\x7e\xb4\xfe\x4f\x5f\x07\x76\x37\x64\x6c\xcd\xd7\xd7\
\xbb\xdb\x6f\x75\xde\xec\xa5\xcf\xec\xed\xf1\xb7\xb2\xbb\x57\x75\
\x60\xea\x26\xed\x7e\xc0\xac\x82\x0c\xc6\xdf\xce\x52\xd0\xe5\xb1\
\x93\x54\x51\x54\xc5\x3a\x24\xf1\x23\xb4\x52\xa3\x5a\xcc\x3d\xfb\
\xaf\x75\xa4\xaf\xfc\x2a\x9b\xe2\x0f\xcb\x3e\xe8\xfe\x6d\x9b\xcb\
\x7a\xf4\xf7\xc5\xdf\x91\x3d\xad\xb3\x26\xe8\xce\x94\xc7\x41\xbb\
\xba\xdb\xa5\x3b\x27\x7d\x6d\x89\xeb\xe8\x30\x99\x18\xeb\xe8\xa1\
\xcf\x6d\x7d\xb5\x95\xc5\x49\x57\x45\x2b\x84\x9a\x21\x2f\x92\x36\
\xe1\x80\xe3\xdf\xba\xf7\x5b\x05\xff\x00\xc2\x3b\xba\x3f\xba\x7a\
\x27\xe0\xcf\xc9\xad\xb9\xdd\xfd\x41\xda\x3d\x37\xb8\x72\xdf\x2c\
\x6b\x33\x78\x9c\x17\x6a\xec\x0d\xd7\xd7\x99\x8c\xa6\x19\xba\x83\
\xac\x28\x06\x5b\x1d\x8b\xdd\xd8\x9c\x45\x75\x6e\x30\xd7\x51\xcb\
\x0f\xdc\x47\x1b\x44\x65\x89\xd3\x56\xa5\x60\x3d\xd7\xba\xda\x03\
\xb6\xbe\x48\xfc\x77\xe8\x29\x70\x50\xf7\xb7\x7d\x74\xc7\x4b\x4d\
\xba\x53\x21\x26\xd9\x8b\xb6\x7b\x43\x64\x75\xcc\x9b\x89\x31\x06\
\x90\x65\x5f\x06\x9b\xc3\x39\x87\x6c\xb2\x63\x0d\x7c\x02\xa0\xd3\
\x89\x04\x26\x78\xf5\xdb\x5a\xdf\xdd\x7b\xad\x3a\xbf\xe1\x58\x7b\
\xaf\x6b\x7c\xf1\xf8\xb3\xf1\x7f\x63\x7c\x1d\xdc\xb8\x0f\x99\x7b\
\xdb\x63\xf7\xf6\x63\x76\x6f\x4d\x9d\xf1\x4f\x31\x8f\xf9\x0f\xba\
\x76\x8e\xd5\xaa\xeb\xbc\xee\x1e\x9f\x73\x6e\x7d\xbf\xd4\x75\x1b\
\xbf\x2b\x80\xdb\xf3\xe5\xea\x63\xa5\x4a\xca\xb8\xa2\xa7\x6a\x99\
\x16\x30\xe5\xd8\x0f\x7e\xeb\xdd\x68\x1b\xd9\x9f\x10\x7e\x59\x74\
\xb6\xd7\x6d\xef\xdc\x7f\x17\xfe\x43\xf5\x36\xcc\x4c\x85\x1e\x25\
\xf7\x77\x65\xf4\xaf\x64\x6c\x4d\xb0\x99\x5c\x80\x98\xd0\x63\x5b\
\x3d\xba\x36\xd6\x2b\x14\xb5\xf5\xa2\x9e\x4f\x0c\x26\x5f\x24\x9a\
\x1b\x48\x36\x3e\xfd\xd7\xba\xb3\xff\x00\xf8\x4d\x8f\xfd\xbe\xe7\
\xe0\x67\xfe\x1e\xdd\x9b\xff\x00\xbe\x17\xb5\xbd\xfb\xaf\x75\xf5\
\x0c\xfe\x71\xbf\xf6\xe9\xff\x00\xe6\x3f\xff\x00\x8a\x53\xf2\x47\
\xff\x00\x7d\x4e\xe7\xf7\xee\xbd\xd7\xc4\xd6\x86\x86\xbb\x29\x5d\
\x47\x8c\xc6\x51\xd5\x64\x72\x59\x1a\xaa\x7a\x1c\x7e\x3e\x86\x9e\
\x6a\xba\xea\xea\xea\xb9\x92\x9e\x92\x8e\x8e\x92\x9d\x24\x9e\xaa\
\xaa\xaa\x79\x15\x23\x8d\x15\x9d\xdd\x80\x00\x92\x07\xbf\x75\xee\
\x8e\x03\xff\x00\x2e\x7f\xe6\x0f\x19\x65\x93\xe0\xa7\xcc\x74\x28\
\xc5\x5c\x1f\x8c\x7d\xd7\xe9\x65\x36\x20\xff\x00\xbf\x27\xea\x0f\
\xbf\x75\xee\xbe\xdc\x9d\x33\x49\x57\x41\xd3\xfd\x51\x43\x5f\x4b\
\x51\x43\x5d\x47\xd6\xbb\x16\x92\xb2\x8a\xb2\x19\x29\xea\xe8\xea\
\xe9\xf6\xbe\x2e\x1a\x8a\x5a\xaa\x79\x55\x65\x82\xa2\x9e\x64\x28\
\xe8\xc0\x32\xb0\x20\x8b\x8f\x7e\xeb\xdd\x7c\x58\xff\x00\x9b\xaf\
\xfd\xbd\x37\xf9\x8a\x7f\xe2\xe9\x7c\x92\xff\x00\xdf\xb3\xba\xbd\
\xfb\xaf\x75\x5d\xbe\xfd\xd7\xba\xfa\xb8\xff\x00\xc2\x41\xbf\xed\
\xce\x5b\x5f\xff\x00\x16\x27\xbd\x3f\xf7\x61\x80\xf7\xee\xbd\xd5\
\x25\x7f\xc2\xc5\x3e\x2e\xfc\x9a\xef\x7f\x9a\xdf\x16\xb3\xdd\x1f\
\xf1\xd3\xbd\xbb\x93\x03\x86\xf8\xb7\x26\x23\x2d\x9c\xea\xae\xa4\
\xdf\xdd\x87\x87\xc6\x65\xcf\x6c\xef\xca\xc3\x8a\xc8\xe4\x76\x8e\
\x03\x31\x49\x43\x92\x5a\x3a\x98\xa6\x30\x4a\xc9\x27\x8a\x54\x6b\
\x59\x81\xf7\xee\xbd\xd1\xb5\xff\x00\x84\x64\xfc\x79\xf9\x01\xd0\
\x78\x9f\xe6\x0b\x0f\x7a\xf4\x5f\x71\xf4\xb3\xee\x6c\x97\xc6\xc9\
\x36\xd0\xed\x9e\xb3\xde\x7d\x74\x77\x12\xe2\xa9\x7b\xb0\x65\x7f\
\x81\x26\xef\xc3\x61\xe4\xcb\x7f\x0b\xfe\x21\x4f\xf7\x26\x00\xe2\
\x1f\xb8\x8b\x51\x1a\xc7\xbf\x75\xee\xb7\x33\xed\x7e\xf5\xe9\x1e\
\x86\xc4\xe3\x33\xfd\xe3\xdc\x5d\x59\xd3\x38\x2c\xde\x48\xe1\xb0\
\xd9\xae\xd6\xec\x1d\xa7\xd7\x98\x9c\xb6\x5c\x53\x4d\x5a\x71\x58\
\xcc\x8e\xee\xcb\xe2\x28\xeb\xf2\x22\x8e\x9e\x49\x4c\x11\x3b\xca\
\x22\x46\x6d\x3a\x41\x3e\xfd\xd7\xba\xd5\xfb\xfe\x14\xcd\xdc\xbd\
\x41\xf3\x47\xf9\x61\xe6\xba\x4b\xe1\xd7\x6a\xf5\xbf\xcb\x1e\xe6\
\xaa\xef\x1e\xa5\xdd\x14\xdd\x47\xf1\xa7\x7c\x6d\x8e\xf5\xec\xda\
\x8d\xb3\xb7\xa7\xce\xbe\x7f\x71\x43\xb0\xfa\xbf\x29\xba\x77\x54\
\xb8\x3c\x22\x55\x44\x6a\xea\xd6\x90\xc1\x4c\x24\x53\x23\x2e\xa1\
\x7f\x75\xee\xbe\x6f\x3b\xe7\xe1\x2f\xcc\xde\xb0\xda\x79\x9d\xfb\
\xd9\x5f\x11\xfe\x4e\x75\xe6\xc6\xdb\xb0\xc1\x51\xb8\x37\x9e\xf9\
\xe8\x5e\xd4\xda\x7b\x53\x05\x05\x55\x5d\x3e\x3e\x96\x7c\xc6\xe2\
\xcf\x6d\x5a\x0c\x46\x32\x1a\x8a\xfa\xb8\xa0\x46\x9e\x64\x57\x9a\
\x54\x40\x4b\x30\x07\xdd\x7b\xa2\xf9\xb7\x36\xde\xe1\xde\x3b\x83\
\x09\xb4\xf6\x8e\x07\x35\xba\x77\x4e\xe5\xca\xd0\x60\xb6\xe6\xda\
\xdb\x98\xba\xec\xe6\xe0\xcf\xe6\xf2\xb5\x31\x51\x62\xf0\xd8\x4c\
\x36\x32\x0a\xac\x8e\x57\x2b\x92\xac\x99\x21\x82\x9e\x08\xe4\x9a\
\x69\x5d\x55\x14\xb1\x03\xdf\xba\xf7\x46\xbc\xff\x00\x2e\x8f\xe6\
\x0c\x09\x07\xe0\xa7\xcc\x70\x47\x04\x7f\xb2\xc7\xdd\x7f\x51\xff\
\x00\x92\x4f\xbf\x75\xee\xbb\x5f\xe5\xcd\xfc\xc1\xdd\x82\xaf\xc1\
\x3f\x99\x05\x98\xd8\x01\xf1\x8f\xba\xee\x4f\xf4\xff\x00\x8f\x27\
\xdf\xba\xf7\x44\xfe\xb6\x8a\xb7\x19\x5b\x57\x8e\xc8\xd2\x55\x63\
\xf2\x18\xfa\xaa\x8a\x2a\xfa\x0a\xda\x79\x69\x6b\x68\xab\x69\x65\
\x78\x2a\xa9\x2a\xe9\x67\x48\xe7\xa6\xaa\xa6\x9e\x36\x49\x23\x75\
\x57\x47\x52\x08\x04\x7b\xf7\x5e\xe8\xd1\xed\x9f\x81\xff\x00\x38\
\xb7\xae\xdc\xc1\x6f\x0d\x9b\xf0\xd7\xe5\x5e\xed\xda\x5b\xa3\x15\
\x45\x9e\xdb\x3b\xa3\x6c\xfc\x79\xed\xcc\xf6\xdd\xdc\x38\x3c\x94\
\x2b\x53\x8e\xcc\xe0\xf3\x58\xad\xa1\x55\x8d\xcb\x62\xb2\x14\xce\
\xb2\x41\x51\x04\xb2\x45\x2c\x6c\x19\x58\x82\x0f\xbf\x75\xee\xbe\
\xb5\x5f\xf0\x9e\x3d\x85\xbe\xfa\xc3\xf9\x36\xfc\x24\xd8\x9d\x99\
\xb2\x77\x77\x5c\xef\x8d\xbd\xb4\xfb\x3a\x0c\xf6\xcc\xdf\x7b\x73\
\x2f\xb4\xb7\x66\x12\x5a\xbe\xf8\xed\x3c\x8d\x1c\x79\x7d\xbb\x9d\
\xa4\xa1\xcb\x63\x5e\xb3\x1b\x59\x0d\x4c\x4b\x34\x28\xcf\x04\xc8\
\xe0\x69\x60\x7d\xfb\xaf\x75\xa6\x37\xfc\x2a\xeb\xe2\x2f\xcb\x0e\
\xea\xfe\x6b\xf9\x0d\xe7\xd3\x9f\x18\x7e\x43\x76\xce\xcf\x3f\x1d\
\x3a\x6b\x16\xbb\xb3\xad\x3a\x5b\xb1\xf7\xde\xd9\x7c\x95\x0c\xbb\
\xb8\xd7\x63\xd7\x3b\xb5\xb6\xde\x57\x16\x6b\xa8\xfc\xe9\xe5\x87\
\xcb\xe4\x8f\x50\xd4\xa2\xe2\xfe\xeb\xdd\x6a\x6b\xda\xfd\x15\xdd\
\xbd\x0d\x96\xc5\xe0\x3b\xc7\xa7\x7b\x4f\xa6\x73\xb9\xbc\x61\xcd\
\x61\xb0\xbd\xad\xd7\xfb\xb3\xaf\x32\xf9\x6c\x38\xab\xa8\xa0\x39\
\x5c\x66\x37\x77\x62\x71\x15\x95\xd8\xd1\x5d\x4b\x2c\x3e\x78\x91\
\xa2\xf2\xc6\xcb\xab\x52\x90\x3d\xd7\xba\x0a\xfd\xfb\xaf\x75\xba\
\x3f\xfc\x22\x57\xfe\xcb\xb3\xe5\xb7\xfe\x2a\x54\x7f\xfb\xf8\xba\
\xf3\xdf\xba\xf7\x5f\x4b\x1f\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xff\xd6\xdf\xe3\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\
\x7f\xf6\xfa\xaf\x9f\xbf\xf8\x95\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\
\xbd\xd6\xfc\x9f\xf0\x91\xdf\xfb\x73\x17\x57\xff\x00\xe2\x6c\xef\
\xcf\xfd\xed\x9f\xdf\xba\xf7\x5a\xd3\xff\x00\xc2\xd9\xbf\xed\xe0\
\x7f\x15\xbf\xf1\x4e\x71\xff\x00\xfb\xfa\xfb\x6f\xdf\xba\xf7\x5a\
\x64\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xda\x77\xfe\x11\xeb\xff\x00\
\x6f\x81\xa6\xff\x00\xc5\x60\xee\xdf\xfd\xcd\xd8\xde\xfd\xd7\xba\
\xdd\xef\xfe\x14\xcd\xff\x00\x6e\x43\xf9\xc7\xff\x00\x6a\x1e\xa0\
\xff\x00\xe0\x82\xea\x8f\x7e\xeb\xdd\x7c\xc5\xff\x00\x93\x27\xfd\
\xbd\xa3\xf9\x70\xff\x00\xe2\xe7\x7c\x7b\xff\x00\xdf\x95\xb7\xfd\
\xfb\xaf\x75\xf6\x4b\xf9\x5b\xff\x00\x64\xb9\xf2\x4f\xff\x00\x10\
\x17\x71\x7f\xef\xbb\xdc\x5e\xfd\xd7\xba\xf8\x42\x7b\xf7\x5e\xeb\
\xef\x63\xd3\xbf\xf3\x28\xba\xb3\xff\x00\x11\xc6\xc7\xff\x00\xde\
\x67\x17\xef\xdd\x7b\xa1\x1f\xdf\xba\xf7\x4c\x15\x5b\xab\x6b\xd0\
\xd4\xcb\x47\x5b\xb9\x30\x14\x75\x74\xe4\x2c\xf4\xb5\x59\x8c\x75\
\x3d\x4c\x2c\xca\x1d\x56\x58\x25\xa8\x49\x63\x2c\x8c\x08\x04\x0b\
\x83\x7f\x7e\xeb\xdd\x39\x50\x64\xb1\xd9\x5a\x71\x57\x8b\xaf\xa2\
\xc9\x52\x19\x24\x88\x55\x50\x55\x41\x59\x4e\x65\x89\x8a\x4b\x18\
\x9a\x9e\x49\x23\x32\x46\xe2\xcc\x2f\x70\x78\x3e\xfd\xd7\xba\x9b\
\xef\xdd\x7b\xaf\x9f\x0f\xfc\x2e\x3d\x57\xfb\xdb\xfc\xb7\xda\xc3\
\x50\xdb\xbf\x28\x94\x35\x86\xad\x27\x27\xd0\xe4\x8b\xfd\x6c\x48\
\xf7\xee\xbd\xd1\x74\xff\x00\x84\x4f\x64\xf1\x58\x9f\x99\x5f\x31\
\x6a\x32\xb9\x2c\x76\x32\x27\xf8\xc9\x80\x86\x39\x72\x35\xb4\xb4\
\x4b\x23\xb7\x6a\x6d\xd7\x31\xc4\xd5\x32\xc5\xac\xe9\x8e\xe7\x4d\
\xed\x61\x7f\xc7\xbf\x75\xee\xaf\xf7\xfe\x15\xe9\xb8\xf0\x19\x4f\
\xe4\xff\x00\x97\xa5\xc5\xe7\xf0\xd9\x0a\x83\xf2\x4b\xa4\x5d\xa9\
\xa8\x72\xd4\x15\x33\xbc\x48\x77\x61\x63\xe0\x82\xa1\xe4\x91\x51\
\x8a\x93\x60\x6d\x6b\xfe\x2f\xef\xdd\x7b\xad\x1e\xff\x00\xe1\x36\
\x3f\xf6\xfb\x9f\x81\x9f\xf8\x7b\x76\x6f\xfe\xf8\x5e\xd6\xf7\xee\
\xbd\xd7\xd4\x47\xf9\xc3\x41\x3d\x4f\xf2\xa5\xfe\x63\x54\xf4\xd0\
\xcd\x53\x51\x3f\xc2\xdf\x91\xd0\xc1\x4f\x4f\x14\x93\xcf\x34\xb2\
\x75\x5e\xe6\x48\xe2\x8a\x18\x95\xe4\x92\x47\x62\x00\x0a\x09\x27\
\xdf\xba\xf7\x5f\x1b\x2f\x8e\x1b\x4b\x77\x53\x7c\x87\xe8\x5a\x87\
\xda\xfb\x9a\x24\x83\xba\x3a\xb6\x66\x90\x60\xb2\xd7\x8d\x63\xdf\
\x18\x27\x2e\x34\xd2\x16\xba\x81\x71\x6e\x7f\xa7\xbf\x75\xee\xbe\
\xed\x9e\xfd\xd7\xba\x4c\x9d\xeb\xb3\x94\xb0\x6d\xdb\xb6\x54\xa3\
\x3a\x38\x39\xec\x50\x28\xf1\xb1\x49\x15\x81\xaa\xba\xb2\x3a\x90\
\x41\xe4\x11\x63\xef\xdd\x7b\xaf\x8a\xd7\xf3\x68\xdb\x3b\x93\x27\
\xfc\xd0\xbf\x98\x5e\x43\x1d\xb7\xf3\x99\x0c\x7d\x67\xcc\xef\x92\
\x33\xd1\x57\xd1\x62\x72\x15\x54\x55\xb4\xcd\xdb\x5b\xac\x45\x57\
\x45\x57\x05\x3b\xd3\xd6\x51\xce\xa3\x54\x53\x44\xcd\x14\xa8\x43\
\x23\x32\x90\x4f\xba\xf7\x55\xef\xfd\xcc\xde\x1f\xf3\xc9\xee\x5f\
\xfc\xf1\x65\x3f\xfa\x97\xdf\xba\xf7\x5f\x53\xef\xf8\x49\x1e\x53\
\x1b\xb5\xff\x00\x94\x16\xd9\xc4\xee\x6c\x85\x0e\xdd\xca\xaf\xc8\
\x3e\xed\xa9\x6c\x66\x76\xae\x0c\x46\x41\x69\xaa\x2b\xf0\x2d\x4f\
\x50\x68\xf2\x12\x53\xd4\x08\x27\x50\x4a\x3e\x9d\x2d\x63\x62\x7d\
\xfb\xaf\x75\xb3\x7f\xf7\xd7\x66\xff\x00\xcf\x5b\xb6\x7f\xf3\xfd\
\x8a\xff\x00\xea\xaf\x7e\xeb\xdd\x7b\xfb\xeb\xb3\x7f\xe7\xad\xdb\
\x3f\xf9\xfe\xc5\x7f\xf5\x57\xbf\x75\xee\xb4\xc2\xff\x00\x85\xae\
\x66\xf0\x59\x7f\x83\xdf\x11\xc6\x2b\x33\x86\xc9\xcb\x07\xca\xca\
\xbf\x24\x74\x19\x3a\x0a\xca\x88\xe3\x93\xa8\xb7\xcf\xac\xc3\x4f\
\x3c\x93\x08\x75\x20\x0c\xd6\xd2\x18\xa8\x24\x12\xb7\xf7\x5e\xeb\
\x5e\xbf\xf8\x48\x7d\x7d\x0e\x37\xf9\xc1\xe0\x2a\xf2\x35\xf4\x58\
\xea\x54\xf8\xe5\xde\x0a\xf5\x15\xf5\x94\xf4\x50\xea\x7a\x6d\xb4\
\xaa\x82\x4a\x99\x62\x47\x91\x89\xb8\x50\x4b\x58\x13\x6b\x02\x47\
\xba\xf7\x5b\xd0\xff\x00\xc2\x8b\xf7\x06\x13\x39\xfc\x96\xbe\x76\
\x62\x70\x59\x9c\x66\x6b\x2d\x5d\xb1\x7a\xf6\x1a\x2c\x5e\x1a\xbe\
\x9b\x27\x92\xac\x90\xf7\x7f\x58\x33\xc7\x4d\x43\x41\x2c\xf5\x53\
\x95\x89\x59\x9f\x4a\x1d\x28\x0b\x1b\x28\x24\x7b\xaf\x75\xf3\x04\
\xfe\x53\xdb\x67\x76\x63\xbf\x9a\x07\xf2\xf0\xae\x9b\x6d\xee\x5a\
\x48\xe9\xbe\x6a\xfc\x65\x95\xea\xbf\x82\x65\x90\x53\x85\xee\x2d\
\xa1\xfb\xef\x22\x52\xde\x18\xe1\xfd\x4d\x21\x21\x63\x50\x59\x88\
\x50\x48\xf7\x5e\xeb\xed\xa3\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xe1\
\x17\xf2\x13\x69\x6e\xea\x9e\xfc\xef\x1a\x84\xda\xfb\x9a\x44\x9f\
\xb8\x3b\x32\x65\x90\xe0\xb2\xd7\x75\x93\x7a\x66\xdc\x31\xd5\x48\
\x18\x13\x7e\x6f\xcf\xf5\xf7\xee\xbd\xd7\xd9\x63\xf9\x3f\x25\x4c\
\x7f\xca\xaf\xf9\x75\xc5\x59\x1d\x4c\x35\x30\x7c\x32\xf8\xed\x4f\
\x34\x35\x91\xcd\x0d\x4c\x0d\x4f\xd5\xdb\x6e\x11\x04\xd0\xd4\x2a\
\x4d\x0b\x40\xb1\x84\xd0\xc0\x15\x02\xd6\x16\xf7\xee\xbd\xd1\xfe\
\xab\xdd\x3b\x62\x82\xa6\x5a\x3a\xed\xc7\x81\xa2\xab\x83\x48\x9a\
\x96\xaf\x2f\x8f\xa6\xa9\x84\xba\x87\x41\x2c\x13\x54\x24\xb1\xea\
\x46\x04\x5c\x0b\x83\x7f\x7e\xeb\xdd\x38\x63\xf2\x78\xdc\xb5\x3f\
\xdd\xe2\xb2\x14\x39\x3a\x5f\x24\x90\xfd\xce\x3e\xae\x0a\xca\x7f\
\x2c\x4d\xa6\x58\xbc\xd4\xd2\x49\x1f\x92\x36\xe1\x96\xf7\x07\xeb\
\xef\xdd\x7b\xaf\x9b\x9f\xfc\x2d\x6f\x0b\x9c\xcb\xfc\xe6\xf8\x94\
\x71\x58\x6c\xc6\x4e\x28\x3e\x27\xcc\x24\x92\x83\x19\x5f\x59\x4f\
\x1c\x92\x76\xfe\xff\x00\xf4\x19\xa9\xe0\x92\x11\x36\x94\x05\x96\
\xfa\x82\x95\x24\x00\x56\xfe\xeb\xdd\x69\x69\x91\xc2\x66\x70\xe2\
\x13\x96\xc4\x64\xf1\x62\xa3\x5f\xdb\x9c\x8d\x05\x55\x10\x9f\xc6\
\x54\x49\xe1\xfb\x98\xa2\xf2\xf8\xcb\x0d\x5a\x6f\x6b\x8b\xfb\xf7\
\x5e\xeb\x73\x4f\xf8\x44\xaf\xfd\x97\x67\xcb\x6f\xfc\x54\xa8\xff\
\x00\xf7\xf1\x75\xe7\xbf\x75\xee\xbe\x96\x3e\xfd\xd7\xba\xf7\xbf\
\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd7\xdf\xe3\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\
\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\xf8\x95\x36\xd7\xfe\xfa\
\xae\xbf\xf7\xee\xbd\xd6\xfc\x9f\xf0\x91\xdf\xfb\x73\x17\x57\xff\
\x00\xe2\x6c\xef\xcf\xfd\xed\x9f\xdf\xba\xf7\x5a\xd2\x7f\xc2\xd9\
\x64\x8c\xff\x00\x30\x7f\x8b\x30\x87\x43\x2a\x7c\x36\xc5\xc8\xf1\
\x86\x05\xd2\x39\x7b\xb7\xb7\xd6\x27\x65\xbe\xa5\x49\x1a\x17\x0a\
\x7e\x84\xa9\xfe\x87\xdf\xba\xf7\x5a\x66\x7b\xf7\x5e\xeb\xde\xfd\
\xd7\xba\xda\x6f\xfe\x11\xec\xca\xbf\xce\x0a\x90\x16\x00\xbf\xc6\
\x2e\xee\x54\x04\x80\x59\x85\x5e\xc8\x72\xab\xfd\x4e\x95\x27\xfd\
\x61\xef\xdd\x7b\xad\xdf\x7f\xe1\x4c\xdf\xf6\xe4\x3f\x9c\x7f\xf6\
\xa1\xea\x0f\xfe\x08\x2e\xa8\xf7\xee\xbd\xd7\xcc\x5f\xf9\x32\x7f\
\xdb\xda\x3f\x97\x0f\xfe\x2e\x77\xc7\xbf\xfd\xf9\x5b\x7f\xdf\xba\
\xf7\x5f\x64\x9f\x96\x0e\xb1\xfc\x59\xf9\x2a\xee\xca\x88\x9d\x01\
\xdc\x8e\xee\xc4\x2a\xaa\xaf\x5d\x6e\x32\xcc\xcc\x6c\x02\xa8\x17\
\x27\xdf\xba\xf7\x5f\x08\x6f\x7e\xeb\xdd\x7d\xec\xfa\x7d\x59\x3a\
\x97\xab\x91\xd5\x91\xd3\xae\xb6\x4a\xba\xb0\x2a\xca\xcb\xb6\xb1\
\x81\x95\x81\xe4\x30\x22\xc4\x7b\xf7\x5e\xe8\x45\xf7\xee\xbd\xd7\
\xc6\xef\xfe\x14\x67\xe5\x8b\xf9\xd7\x7c\xfb\x5b\xc9\x19\x3d\x99\
\xb3\x9e\xd7\x65\x25\x5f\xa7\xfa\xe1\xd1\xbe\xb7\x2a\xc8\xc0\x8f\
\xc5\x8f\x1c\x7b\xf7\x5e\xeb\x7c\x7f\xf8\x48\x75\xcf\xf2\x6d\xd9\
\x64\x92\x49\xf9\x01\xde\xe4\x92\x49\xe7\xf8\xee\x32\xff\x00\x52\
\x6d\x7f\xf7\xbf\x7e\xeb\xdd\x6c\xfb\xef\xdd\x7b\xaf\x9f\x07\xfc\
\x2e\x3d\x97\xfb\xdb\xfc\xb7\xd3\x50\xd6\x76\xe7\xca\x26\xd3\x7f\
\x56\x91\x93\xe8\x70\x5a\xdf\x5b\x5c\xfb\xf7\x5e\xeb\x42\x85\x66\
\x4b\x95\x66\x52\x78\x3a\x49\x17\x1f\x5b\x1b\x7b\xf7\x5e\xeb\xb6\
\x92\x46\x16\x67\x76\x17\xbd\x99\x89\x17\xfe\xb6\x27\xeb\xef\xdd\
\x7b\xab\xc7\xff\x00\x84\xd7\xa3\x3f\xf3\xba\xf8\x18\xa8\xac\xed\
\xfd\xf4\xed\x07\xb2\x82\xc7\x4c\x7d\x05\xdb\x12\x48\xc4\x00\x7d\
\x29\x1a\x16\x27\xe8\x00\xbf\xbf\x75\xee\xbe\xc5\xa4\x02\x08\x20\
\x10\x78\x20\xf2\x0f\xfa\xe3\xdf\xba\xf7\x5c\x3c\x30\xf1\xfb\x51\
\xf1\x62\x3d\x0b\xc1\x06\xe0\x8e\x3f\x04\x7b\xf7\x5e\xeb\x27\xbf\
\x75\xee\xbe\x0b\x7d\xe2\x65\x8f\xba\x7b\x82\x22\xd2\xae\x8e\xd1\
\xec\x14\x64\x67\x7b\x82\x37\x66\x5c\x30\x6d\x46\xe5\xaf\xf5\xbf\
\x37\xfa\xfb\xf7\x5e\xeb\xed\x1d\xfc\xa2\xa3\x46\xfe\x56\x1f\xcb\
\xa7\x52\x2b\x11\xf0\xab\xe3\x5a\xdd\x94\x33\x10\x3a\x97\x6a\x8b\
\xb3\x10\x59\x98\xfd\x49\x37\x2c\x49\x24\x92\x49\xf7\xee\xbd\xd5\
\x89\x78\x62\xff\x00\x8e\x51\xff\x00\xc9\x0b\xff\x00\x14\xf7\xee\
\xbd\xd7\xca\x4f\xfe\x15\xec\xcc\x9f\xce\x37\x74\x84\x62\x83\xfd\
\x97\x6e\x8b\x16\x42\x57\x81\x8e\xcf\x58\x71\x6f\xa7\xbf\x75\xee\
\xb5\x7b\xf3\x4b\xff\x00\x1d\x64\xff\x00\x92\xdb\xfe\x2b\xef\xdd\
\x7b\xaf\x79\xa5\xff\x00\x8e\xb2\x7f\xc9\x6d\xff\x00\x15\xf7\xee\
\xbd\xd7\x4d\x23\xb8\x01\x9d\xd8\x02\x48\x0c\xc4\x80\x4d\xae\x40\
\x24\xd8\x9b\x7b\xf7\x5e\xeb\x8a\xb3\x29\xba\xb3\x29\xe4\x5d\x49\
\x06\xc7\x82\x2e\x39\xe7\xdf\xba\xf7\x57\x85\xff\x00\x09\xbb\x91\
\xdb\xf9\xda\xfc\x09\x0c\xec\xc3\xfb\xfb\xd8\x82\xcc\x75\x0e\x7a\
\x37\xb4\x7f\x0d\x71\x71\xf5\x1f\xd0\xf3\xef\xdd\x7b\xaf\xb1\x8f\
\x8a\x20\x41\x11\xc6\x08\x37\x07\x42\xdc\x1f\xea\x0d\xb8\x3e\xfd\
\xd7\xba\xc9\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\x17\x86\x1e\x7f\x6a\
\x2e\x49\x27\xf6\xd7\x92\xc4\x92\x4f\x1c\x92\x4f\x3e\xfd\xd7\xba\
\xca\x00\x00\x00\x2c\x07\x00\x0e\x00\x03\xe8\x00\xf7\xee\xbd\xd7\
\xc7\x5b\xfe\x14\xa4\xee\xbf\xce\xf3\xe7\x9e\x97\x75\xff\x00\x7f\
\x8f\x54\xfd\x19\x87\x1f\xec\xbe\xf5\x21\xb7\xd7\xe8\x09\x3e\xfd\
\xd7\xba\xde\x43\xfe\x11\xf1\x73\xfc\x9f\x68\x89\x2c\x49\xf9\x39\
\xdd\xe4\xea\x62\xdc\xfd\xbe\xcb\xbd\xae\x4d\x81\xfa\xf1\xf9\xe7\
\xea\x7d\xfb\xaf\x75\xb4\xb3\x47\x1b\x90\x59\x11\x88\x16\x05\x94\
\x12\x01\xe4\x80\x48\xbd\xaf\xef\xdd\x7b\xad\x02\xbf\xe1\x72\x3a\
\x63\x83\xf9\x6b\xa5\x91\x3c\xb2\xfc\xae\x30\x8d\x28\xad\x28\xa6\
\x5f\x8f\x5f\x73\xa0\xd8\x34\x8b\x4e\x6a\xe2\xd4\x39\x08\x65\x5f\
\xa6\xae\x7d\xd7\xba\x28\x7f\xf0\x89\x59\x10\x7c\xf0\xf9\x69\x11\
\x74\x12\xbf\xc4\x71\x22\x46\x58\x07\x64\x8f\xb8\xfa\xe1\x64\x75\
\x5b\xea\x29\x1b\x4a\xa0\x9f\xa0\x2c\x3f\xa8\xf7\xee\xbd\xd7\xd2\
\xd3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7f\xff\xd0\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\
\xbf\xf8\x95\x36\xd7\xfe\xfa\xae\xbf\xf7\xee\xbd\xd6\xfc\xbf\xf0\
\x91\xd0\x47\xf2\x62\xea\xfb\x83\xcf\x76\x77\xe1\x1f\xe2\x3f\xbe\
\xf2\x0b\x8f\xeb\xc8\xf7\xee\xbd\xd6\xc2\xfb\xeb\xa3\x7a\x53\xb4\
\x32\x74\x79\xbe\xcc\xe9\xee\xad\xec\x4c\xce\x3a\x80\xe2\xf1\xf9\
\x6d\xf5\xd7\xdb\x4f\x77\x64\xe8\x31\x86\xa2\x4a\xb3\x8e\xa3\xaf\
\xcf\xe2\x32\x15\x54\xb4\x06\xaa\x57\x97\xc2\x8e\xb1\xf9\x18\xb5\
\xae\x49\xf7\xee\xbd\xd2\x2b\xfd\x94\x4f\x89\xff\x00\xf7\x8c\x1f\
\x1e\x3f\xf4\x4a\xf5\xb7\xff\x00\x63\x5e\xfd\xd7\xba\xf7\xfb\x28\
\x9f\x13\xff\x00\xef\x18\x3e\x3c\x7f\xe8\x95\xeb\x6f\xfe\xc6\xbd\
\xfb\xaf\x74\xab\xd9\x9f\x1f\xfa\x1f\xae\x33\x63\x73\x75\xe7\x49\
\xf5\x1e\xc3\xdc\x62\x8e\xa3\x1e\x37\x06\xcc\xeb\x7d\x9b\xb5\xf3\
\x62\x82\xac\xc6\xd5\x54\x23\x2b\x83\xc3\x50\xd7\x8a\x3a\x96\x85\
\x0c\x91\x79\x34\x39\x41\x70\x6c\x3d\xfb\xaf\x75\x4f\x9f\xf0\xa6\
\x60\x4f\xf2\x43\xf9\xc8\x40\x24\x2e\x03\xa8\x0b\x58\x13\x61\xfe\
\xcc\x1f\x53\x8b\x9f\xe8\x2e\x40\xff\x00\x63\xef\xdd\x7b\xaf\x98\
\xb7\xf2\x64\xff\x00\xb7\xb4\x7f\x2e\x1f\xfc\x5c\xef\x8f\x7f\xfb\
\xf2\xb6\xff\x00\xbf\x75\xee\xbe\xd8\x15\x74\x94\x99\x0a\x4a\xaa\
\x0a\xfa\x5a\x7a\xda\x1a\xda\x79\xa9\x2b\x68\xaa\xe1\x8e\xa6\x92\
\xae\x92\xa6\x36\x86\xa2\x96\xaa\x9e\x65\x78\x6a\x29\xea\x21\x72\
\x8e\x8e\x0a\xba\x92\x08\x20\xfb\xf7\x5e\xe8\xbf\x27\xc4\x1f\x89\
\x91\xa2\xa4\x7f\x17\xbe\x3b\x46\x88\xa1\x51\x13\xa4\xfa\xd5\x51\
\x15\x45\x95\x55\x57\x6c\x80\xaa\xa0\x58\x01\xf4\xf7\xee\xbd\xd7\
\xc5\x4b\xb4\xfe\x55\xfc\xa3\xc5\xf6\x77\x63\x62\xf1\xbf\x25\x3b\
\xfe\x87\x1d\x8d\xdf\x7b\xbb\x1f\x8f\xa2\xa5\xee\x5e\xc6\x86\x9a\
\x8e\x86\x8b\x70\x64\x29\xa9\x29\x29\xa1\x8f\x72\x2a\x43\x4f\x4d\
\x4f\x12\xa2\x22\x80\xaa\xaa\x00\xe0\x7b\xf7\x5e\xe9\x07\xfe\xcd\
\xd7\xca\xff\x00\xfb\xc9\xef\x90\xdf\xfa\x3a\x7b\x27\xff\x00\xb2\
\x5f\x7e\xeb\xdd\x7d\x5c\x3f\x90\x9f\x49\xf4\xc7\x73\xff\x00\x28\
\x9f\x84\xfd\x9f\xdc\x1d\x4d\xd6\x7d\xb5\xd9\x5b\xbf\x60\x6e\xdc\
\x86\xec\xec\x4e\xcc\xd8\xbb\x5f\x7f\x6f\xad\xcf\x5f\x07\x6b\xef\
\xfc\x7c\x35\x7b\x87\x77\xee\xbc\x5e\x5b\x70\x66\xaa\x69\xa8\x68\
\xe2\xa7\x8d\xea\x6a\x24\x68\xe0\x85\x23\x52\x11\x15\x47\xba\xf7\
\x5a\x5c\x7f\xc2\xa3\x7b\x17\xb0\x7e\x3a\x7f\x35\xdd\xdd\xd6\x9f\
\x1f\x37\xd6\xf2\xe8\x9e\xb9\xa5\xe9\x2e\x99\xcc\x53\x6c\x0e\x9b\
\xdc\xf9\xbe\xb0\xd9\x34\xf9\x7c\xbe\x1b\x23\x36\x5b\x2b\x06\xd5\
\xd9\x35\xd8\x3c\x14\x39\x2c\xa4\xc8\xaf\x51\x3a\xc0\x25\x9d\x80\
\x2e\xcc\x47\xbf\x75\xee\xb6\x46\xff\x00\x84\x68\xf6\x47\x63\x76\
\x77\xc1\x0f\x94\x19\xae\xca\xdf\xdb\xdf\xb0\xb2\xb4\x5f\x2e\x2b\
\x71\x94\x39\x4d\xf3\xba\xf3\xfb\xb6\xbe\x8e\x81\x3a\x73\xab\x6a\
\xfe\xc2\x8e\xb3\x3f\x5f\x90\x9e\x9a\x94\x54\xd5\x3c\x86\x34\x65\
\x5d\x72\x16\x22\xe6\xfe\xfd\xd7\xba\xda\xf7\x7e\xf4\xef\x51\xf6\
\xab\xe2\xe5\xed\x0e\xac\xeb\x9e\xc8\x93\x06\x2a\xd7\x0b\x26\xfd\
\xd9\x1b\x67\x78\x3e\x1d\x6b\xfc\x1f\x7c\xb8\xb7\xdc\x38\xcc\x8b\
\x63\xc5\x6f\xda\xc5\xe6\x11\x68\xf2\x78\xd7\x55\xf4\x8b\x7b\xaf\
\x74\x1f\x7f\xb2\x89\xf1\x3f\xfe\xf1\x83\xe3\xc7\xfe\x89\x5e\xb6\
\xff\x00\xec\x6b\xdf\xba\xf7\x5e\xff\x00\x65\x13\xe2\x7f\xfd\xe3\
\x07\xc7\x8f\xfd\x12\xbd\x6d\xff\x00\xd8\xd7\xbf\x75\xee\xa9\xc7\
\xfe\x14\x05\xd2\xbd\x39\xd2\xdf\xc9\xff\x00\xe6\x9f\x67\xf4\xd7\
\x54\x75\xb7\x51\x76\x66\xd2\xda\x5d\x73\x5b\xb5\x3b\x17\xab\xb6\
\x3e\xd9\xeb\xed\xf9\xb6\x6a\xea\xbb\xb7\xac\xb1\xb5\x75\x1b\x7f\
\x78\x6d\x1c\x66\x23\x70\xe1\xa5\xad\xc6\x56\xcf\x4b\x39\xa7\xa8\
\x8c\xcd\x4b\x3c\x90\xbe\xa8\xe4\x75\x3e\xeb\xdd\x7c\xa8\xbf\xd9\
\xba\xf9\x5f\xff\x00\x79\x3d\xf2\x1b\xff\x00\x47\x4f\x64\xff\x00\
\xf6\x4b\xef\xdd\x7b\xaf\x7f\xb3\x75\xf2\xbf\xfe\xf2\x7b\xe4\x37\
\xfe\x8e\x9e\xc9\xff\x00\xec\x97\xdf\xba\xf7\x5c\x97\xe5\xe7\xcb\
\x14\x60\xc9\xf2\x7f\xe4\x42\xb0\x37\x0c\xbd\xd5\xd9\x2a\xc0\xff\
\x00\x50\x46\xe5\x04\x1f\x7e\xeb\xdd\x17\xc9\xe7\x9e\xaa\x79\xaa\
\xaa\xa6\x96\xa6\xa6\xa6\x59\x27\xa8\xa8\x9e\x47\x9a\x79\xe7\x99\
\xcc\x93\x4d\x34\xd2\x16\x92\x59\x65\x91\x8b\x33\x31\x25\x89\xb9\
\xe7\xdf\xba\xf7\x5f\x6d\xff\x00\xe5\x0e\x43\x7f\x2a\xff\x00\xe5\
\xd2\xca\x43\x29\xf8\x57\xf1\xb0\x82\x08\x20\x83\xd4\xbb\x56\xc4\
\x11\xc1\x07\xdf\xba\xf7\x56\x29\xef\xdd\x7b\xaf\x94\x6f\xfc\x2b\
\xe3\xfe\xdf\x1d\xba\x7f\xf1\x5d\xfa\x2f\xff\x00\x75\xd9\xef\x7e\
\xeb\xdd\x5e\xf7\xfc\x23\x3f\xa5\x7a\x6f\xb4\x7e\x0f\xfc\xaa\xc8\
\x76\x67\x51\x75\x77\x61\xe4\x31\xbf\x2b\x12\x8f\x1f\x92\xdf\x3d\
\x7b\xb4\x77\x66\x46\x8e\x8d\xba\x8b\x60\x4c\x68\x69\xb2\x39\xec\
\x3d\x7d\x64\x34\x49\x3c\x8d\x22\xc2\xae\x22\x49\x24\x76\x0a\x19\
\xdc\xb7\xba\xf7\x45\x1b\xfe\x16\xab\xd5\x1d\x5b\xd5\xb9\x3f\xe5\
\xdd\x4f\xd6\x5d\x61\xd7\x7d\x71\x06\x5b\x1f\xf2\x72\x4c\xaf\xf7\
\x0f\x63\x6d\x7d\x9e\xd9\x67\xa4\xa9\xe8\xb1\x4a\xb9\x49\xb6\xf6\
\x2b\x1d\x26\x49\x28\x05\x4c\x86\x04\x99\x9d\x60\x33\xc8\x50\x29\
\x95\xcb\x7b\xaf\x74\x5b\x3f\xe1\x19\x9d\x69\xd7\x1d\x9f\xf3\x4f\
\xe5\x8e\x23\xb2\xba\xfb\x63\xf6\x1e\x2a\x83\xe2\xe5\x1e\x42\x87\
\x1d\xbe\x76\x96\x03\x76\xd0\xd0\xd7\xff\x00\xa5\x8d\x95\x4d\xf7\
\x94\x74\xd9\xfc\x7e\x42\x1a\x4a\x96\xa7\x99\xd0\xbc\x61\x59\x90\
\x90\x4d\xbd\xfb\xaf\x75\x7f\x9f\xf0\xac\x8e\x83\xe8\xae\xb7\xfe\
\x51\x9b\x8b\x70\xf5\xdf\x49\xf5\x1e\xc4\xcf\xff\x00\xb3\x07\xd2\
\x74\x5f\xc7\xb6\x6f\x5a\xec\xcd\xb3\x9a\x4a\x3a\x9a\xbd\xc2\x6a\
\x29\xa3\xca\xe1\x70\xb4\x55\xd1\x41\x51\xe3\x50\xea\xb2\x00\xeb\
\xe9\x37\x04\x8f\x7e\xeb\xdd\x69\x59\xff\x00\x09\xb9\x04\xff\x00\
\x3b\x6f\x81\x20\x02\x4f\xf7\xf7\xb1\x0f\x02\xfc\x0e\x8c\xed\x22\
\x4f\xfa\xc0\x0b\x9f\x7e\xeb\xdd\x7d\x8d\xfd\xfb\xaf\x74\x0f\x7c\
\x86\x9e\xa2\x97\xa0\x3b\xca\xa6\x92\xa2\xa6\x8e\xae\x9f\xa7\xbb\
\x32\x7a\x5a\xba\x39\xe6\xa5\xab\xa5\xa8\x87\x65\xe6\xe4\x86\xa2\
\x96\xaa\x9d\xe3\x9e\x9a\xa6\x09\x14\x32\x48\x8c\xae\x8c\x01\x04\
\x10\x0f\xbf\x75\xee\xbe\x1d\xab\xf2\xe3\xe5\x72\x80\xab\xf2\x73\
\xe4\x2a\xaa\x80\xaa\xab\xdd\x1d\x90\x02\x80\x2c\x00\x03\x72\xd8\
\x00\x3d\xfb\xaf\x75\xe3\xf2\xe7\xe5\x73\x02\xad\xf2\x77\xe4\x29\
\x04\x10\x41\xee\x9e\xc8\x20\x83\xc1\x04\x1d\xcb\x62\x08\xf7\xee\
\xbd\xd7\xd9\x8b\xf9\x46\xe6\x33\x1b\x87\xf9\x5c\xff\x00\x2f\x8c\
\xf6\xe1\xcb\xe5\x73\xf9\xdc\xc7\xc3\xef\x8f\xf9\x2c\xc6\x6f\x39\
\x91\xac\xcb\xe6\x32\xd9\x2a\xde\xb5\xdb\xd5\x15\x99\x0c\x9e\x53\
\x21\x35\x45\x76\x42\xba\xae\x77\x67\x92\x59\x64\x79\x1d\x89\x24\
\x93\xef\xdd\x7b\xaf\x97\x2f\xfc\x29\x53\xfe\xdf\x7b\xf3\xcf\xff\
\x00\x0f\x1e\xaa\xff\x00\xe0\x7c\xea\x3f\x7e\xeb\xdd\x6f\x23\xff\
\x00\x08\xf7\x20\xff\x00\x27\xca\x1b\x1f\xa7\xc9\xce\xee\x07\xfc\
\x0f\xdb\xec\xa3\x63\xfd\x38\x3e\xfd\xd7\xba\xa3\x6f\xf8\x59\x8f\
\x74\x77\x27\x57\xfc\xde\xf8\xa9\x41\xd6\x9d\xb9\xda\x3d\x79\x8f\
\xc9\x7c\x55\x96\xaf\x21\x8d\xd8\xfd\x83\xbb\xb6\x9e\x36\xb6\xb5\
\x3b\x73\x7e\xc2\x2b\xaa\x71\xf8\x1c\xc5\x05\x1c\xd5\xcd\x02\x24\
\x6d\x33\x21\x95\xe3\x8d\x15\x98\xaa\x20\x1e\xeb\xdd\x0c\x5f\xf0\
\x8e\x5d\x5f\x29\x66\xfe\x60\x23\xe4\xe0\xff\x00\x66\x3a\x3d\x9d\
\x1f\xc6\x73\xb4\x3f\xd3\xd2\xff\x00\xa6\x11\xb4\x1f\x30\xdd\xea\
\x33\x1f\xdd\x56\xec\x31\xb8\xbf\xbb\x67\x3a\x28\x29\xfe\xf8\x51\
\x78\x3e\xf7\xec\xe9\xfc\xde\x4f\xb7\x87\x47\xba\xf7\x5b\xd8\x6c\
\x5e\x8e\xe9\x5e\xae\xc9\x56\xe6\x7a\xcf\xa8\x3a\xbb\xae\xb2\xf9\
\x2a\x15\xc6\x64\x72\xbb\x17\xaf\xf6\x9e\xd1\xc9\x64\x31\xa9\x3a\
\xd5\x26\x3e\xb6\xbb\x6f\xe2\x71\xf5\x55\x54\x29\x54\x82\x41\x14\
\x8c\xd1\x89\x00\x6b\x5c\x5f\xdf\xba\xf7\x42\x8f\xbf\x75\xee\xbd\
\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xff\xd1\xdf\xe3\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7c\x6c\x7f\xe1\x45\x7f\xf6\xfa\xaf\x9f\xbf\xf8\x95\x36\xd7\xfe\
\xfa\xae\xbf\xf7\xee\xbd\xd1\x38\xe8\xcf\xe6\x61\xfc\xc1\x3e\x32\
\x75\xe5\x07\x52\xfc\x7b\xf9\x8b\xf2\x0f\xa6\xba\xcf\x17\x91\xca\
\xe5\xf1\xdb\x1b\xaf\x3b\x2b\x71\x6d\x8d\xb5\x45\x93\xce\x54\x9a\
\xdc\xbd\x6d\x3e\x2f\x1b\x59\x0d\x34\x75\x19\x1a\xb2\x65\x95\x80\
\xf5\xb9\x2c\x79\x27\xdf\xba\xf7\x42\xff\x00\xfc\x3d\x87\xf3\x71\
\xff\x00\xbd\x8c\xfc\xbc\xff\x00\xd1\xd7\xbc\xff\x00\xfa\xe5\xef\
\xdd\x7b\xaf\x7f\xc3\xd8\x7f\x37\x1f\xfb\xd8\xcf\xcb\xcf\xfd\x1d\
\x7b\xcf\xff\x00\xae\x5e\xfd\xd7\xba\xf7\xfc\x3d\x87\xf3\x71\xff\
\x00\xbd\x8c\xfc\xbc\xff\x00\xd1\xd7\xbc\xff\x00\xfa\xe5\xef\xdd\
\x7b\xaf\x7f\xc3\xd8\x7f\x37\x1f\xfb\xd8\xcf\xcb\xcf\xfd\x1d\x7b\
\xcf\xff\x00\xae\x5e\xfd\xd7\xba\x0d\xbb\x7f\xf9\xa7\x7f\x31\xdf\
\x90\x1d\x6f\xb9\xba\x7f\xbb\x7e\x6c\xfc\x90\xed\x3e\xad\xde\x70\
\xe3\xe9\xf7\x66\xc1\xdf\x1d\xa5\xb9\xb7\x06\xd7\xdc\x30\x62\xb2\
\xb4\x39\xdc\x6c\x39\x6c\x4d\x7d\x6c\xb4\xb5\x91\x51\x66\x71\x94\
\xf5\x51\xab\xa9\x0b\x3c\x08\xff\x00\x55\x04\x7b\xaf\x74\xb7\xfe\
\x4c\x9f\xf6\xf6\x8f\xe5\xc3\xff\x00\x8b\x9d\xf1\xef\xff\x00\x7e\
\x56\xdf\xf7\xee\xbd\xd7\xdb\x23\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xc1\x3b\xb8\xbf\xe6\x6e\xf6\x9f\xfe\x24\x7d\xf1\xff\x00\xbd\x36\
\x53\xdf\xba\xf7\x5f\x59\x9f\xe5\xb7\xfc\xa1\xff\x00\x95\xd7\x67\
\x7f\x2f\x5f\x83\x9d\x8b\xbf\xbe\x02\xfc\x58\xdd\x7b\xe7\x7c\x7c\
\x4a\xf8\xf7\xba\xb7\x8e\xe9\xce\x75\x1e\xd8\xc9\xe7\x37\x36\xe7\
\xce\xf5\x5e\xd6\xc9\x67\xb7\x0e\x6b\x23\x5b\x49\x3d\x55\x7e\x5b\
\x35\x94\xa9\x96\xa6\xa6\x57\x72\x5e\x69\x58\xf0\x2c\x07\xba\xf7\
\x57\xa3\xd4\x7d\x41\xd5\xdd\x07\xd7\x3b\x5b\xa8\x7a\x5b\x61\x6d\
\x7e\xb0\xea\xfd\x93\x47\x51\x8f\xda\x3b\x0f\x65\xe2\x69\x70\x5b\
\x63\x6e\xd1\x56\x64\x2b\x32\xd5\x74\xd8\xac\x55\x12\x47\x4d\x49\
\x1d\x4e\x4f\x21\x3d\x44\x81\x47\xae\x69\x9d\x8d\xcb\x13\xef\xdd\
\x7b\xaf\x96\x5f\xfc\x2b\xc7\xfe\xdf\x25\xbd\x7f\xf1\x00\x74\x4f\
\xfe\xe8\xb2\x7e\xfd\xd7\xba\xa4\x4f\x8e\xdf\xcc\x17\xe6\xff\x00\
\xc4\x7d\xa7\x9a\xd8\x9f\x18\xbe\x54\xf7\x8f\x44\x6c\xdd\xc7\xb8\
\x9f\x76\xe7\xb6\xd7\x57\xf6\x06\x7b\x69\x61\xf2\xdb\x9a\x4c\x6d\
\x06\x1e\x4c\xed\x75\x16\x2a\xaa\x08\x67\xc9\x49\x8a\xc5\xd3\x53\
\xb4\xa4\x6a\x68\xa0\x8d\x4f\x08\xb6\xf7\x5e\xeb\x7f\x4f\xf8\x47\
\xff\x00\xcc\xff\x00\x96\x9f\x30\x36\xff\x00\xcf\x5a\xcf\x94\xbf\
\x23\x3b\x7b\xbf\xe6\xd8\x99\x9f\x8e\x94\xdb\x28\xf6\xae\xf3\xca\
\xef\x0f\xee\xa4\x7b\x82\x87\xba\x25\xcf\xff\x00\x02\x7c\xb4\xb3\
\xcd\x41\xfc\x6d\xb1\x14\x7f\x72\xaa\xda\x24\xfb\x48\x8d\x81\x52\
\x4f\xba\xf7\x43\x5f\xfc\x2b\x9b\xe5\xb7\xc9\xdf\x88\xbf\x14\xfe\
\x2a\xee\xdf\x8b\xfd\xf3\xda\x3d\x0b\xb9\x77\x4f\xc8\x4c\xe6\xdd\
\xdc\xb9\xae\xad\xdd\xb9\x4d\xa1\x91\xce\xe0\xe2\xeb\x7c\xe6\x4a\
\x1c\x5e\x52\xaf\x13\x34\x13\xd5\xd0\xc3\x5f\x4e\x92\xac\x4c\xda\
\x04\x80\x35\xae\x01\x1e\xeb\xdd\x52\x57\xfc\x25\xdb\xf9\x91\xfc\
\xfb\xf9\x49\xfc\xd2\x71\x7d\x5b\xf2\x2f\xe6\x07\xc8\x1e\xe9\xeb\
\x87\xe8\x2e\xdf\xdc\x32\xec\x8e\xc6\xec\x9d\xc3\xba\x76\xd4\xd9\
\xac\x40\xdb\x23\x17\x93\x93\x15\x94\xaa\xa8\xa6\x35\xb8\xf3\x57\
\x21\x8a\x40\x03\xa1\x63\x63\x62\x41\xf7\x5e\xeb\x6c\x4f\xf8\x52\
\x77\xfd\xb9\x1b\xe7\x9f\xfe\x19\x3d\x65\xff\x00\xbf\xeb\xaa\x7d\
\xfb\xaf\x75\xf1\xcf\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7d\x9c\xfa\x97\xf9\x30\x7f\x29\xac\xe7\x54\x75\x96\x63\x27\
\xfc\xbb\xbe\x24\xd5\xe4\x72\xfd\x79\xb2\xf2\x59\x0a\xa9\xba\x6b\
\x69\xcb\x3d\x4d\x6d\x7e\xdb\xc6\xd4\xd5\xd4\x4b\x3c\xb4\x52\x4f\
\x2c\xd3\x4f\x2b\x33\x3b\xb3\x3b\x31\x24\x92\x6e\x7d\xfb\xaf\x75\
\x6b\x1b\x07\x61\x6c\xbe\xac\xd9\x1b\x47\xad\x7a\xe3\x6b\xe1\x36\
\x4e\xc0\xd8\x5b\x73\x0f\xb4\x36\x5e\xce\xdb\x58\xfa\x7c\x56\xde\
\xda\xfb\x5f\x6f\xd0\x41\x8b\xc1\xe0\x30\x98\xca\x54\x8e\x9b\x1f\
\x8a\xc5\x63\xa9\xa3\x86\x08\x63\x50\x91\xc6\x81\x40\xb0\xf7\xee\
\xbd\xd7\xcb\xc3\xf9\xf5\x7f\x35\x0f\xe6\x41\xd0\x7f\xcd\xc7\xe6\
\x87\x51\x74\xb7\xcd\xcf\x92\x7d\x61\xd6\x1b\x2f\x79\xec\x5a\x3d\
\xa5\xb0\xf6\x57\x6a\x6e\x7c\x06\xd7\xdb\xb4\x95\xfd\x3d\xd7\x59\
\xaa\xca\x6c\x46\x23\x1f\x5b\x0d\x1d\x14\x35\x19\x5c\x94\xf3\xb8\
\x45\x1a\xa5\x95\x98\xdc\x92\x7d\xfb\xaf\x75\xb1\xff\x00\xfc\x27\
\xdf\xe3\x07\xc7\x8f\xe6\x89\xfc\xbc\x70\x9f\x2a\xbf\x98\xaf\x4c\
\xf5\xdf\xcd\x2f\x92\x39\x1e\xdc\xec\xdd\x87\x5d\xdd\xbf\x22\xf6\
\xc6\x37\xb3\xbb\x1e\xab\x66\x6c\xca\xac\x55\x3e\xd4\xdb\x33\xee\
\x8d\xc9\x0d\x66\x4a\x4c\x3e\x02\x1a\xd9\x96\x96\x12\xe5\x62\x12\
\x35\xbe\xbe\xfd\xd7\xba\xa8\x4f\xf8\x52\xaf\x66\x76\x1f\xf2\x8b\
\xf9\x43\xd0\x9d\x37\xfc\xb0\xb7\xa6\xe3\xf8\x1f\xd4\xfd\x9f\xd0\
\x8d\xd9\xdd\x85\xd7\x7f\x17\xf2\x75\x1d\x49\xb4\xb7\x87\x61\xc7\
\xd8\x5b\xbb\x6a\x8d\xe9\x9f\xc3\xed\x56\xa0\xa6\xc8\xee\x26\xdb\
\x58\x4a\x2a\x13\x53\x20\x67\x34\xd4\x91\x27\xd1\x07\xbf\x75\xee\
\xb5\x1f\xf9\x23\xf3\x5f\xe5\xc7\xcc\x26\xd9\xed\xf2\x9b\xe4\x67\
\x6e\xf7\xf3\x75\xfa\xe7\x13\x64\x9e\xd4\xde\xb9\x9d\xde\x76\xb2\
\xee\x56\xc5\xb6\xe0\x18\x4f\xe2\xd5\x35\x1f\x60\x73\x07\x09\x47\
\xf7\x05\x2c\x65\xfb\x58\x83\x5c\x22\xdb\xdd\x7b\xa6\x6f\x8e\x9f\
\x2d\x7e\x4d\x7c\x44\xdc\x79\xfd\xdf\xf1\x83\xbd\x7b\x3b\xa1\xb7\
\x46\xe9\xc1\xae\xda\xdc\x79\xfe\xaf\xdd\x99\x4d\xa5\x94\xcd\x60\
\x12\xbe\x9b\x28\x98\x8c\x8d\x5e\x2a\x78\x25\xa9\xa0\x5c\x8d\x1c\
\x53\x08\xd8\x95\x12\x20\x3f\x51\xef\xdd\x7b\xa1\x5b\xbe\x3f\x99\
\x4f\xcf\xdf\x94\x3d\x7f\x3f\x54\xfc\x8a\xf9\x81\xf2\x03\xba\x7a\
\xda\xa7\x2f\x8c\xcf\x54\x6c\x8e\xc6\xec\x8d\xc3\xba\x36\xe4\xd9\
\x9c\x2b\x4c\xf8\xac\x94\x98\xcc\x9d\x5c\xf4\xed\x57\x8f\x7a\x87\
\x31\x3d\xae\xa5\xae\x3d\xfb\xaf\x74\x5a\xfa\x83\xb8\xbb\x53\xa0\
\x3b\x1f\x6b\xf6\xff\x00\x49\xef\xfd\xd5\xd5\xbd\xa3\xb2\xaa\x6b\
\x2b\x36\x96\xfd\xd9\x39\x7a\xbc\x0e\xe8\xdb\xd5\x59\x0c\x65\x76\
\x16\xbe\x7c\x56\x5a\x89\xe3\xaa\xa4\x7a\xcc\x46\x4e\xa2\x9a\x5d\
\x24\x6b\x86\x67\x43\x75\x62\x3d\xfb\xaf\x74\x7e\x7f\xe1\xec\x3f\
\x9b\x8f\xfd\xec\x67\xe5\xe7\xfe\x8e\xbd\xe7\xff\x00\xd7\x2f\x7e\
\xeb\xdd\x08\xdd\x3f\xfc\xe1\xbf\x9a\x76\xfb\xed\xae\xaf\xd8\xfb\
\xc7\xe7\xff\x00\xca\xad\xcb\xb4\x37\x9f\x62\x6c\xad\xa7\xba\xb6\
\xe6\x67\xb8\x37\x66\x43\x11\x9f\xdb\x7b\x8f\x72\x63\x70\xf9\xdc\
\x2e\x52\x86\xa6\xba\x4a\x7a\xcc\x76\x57\x17\x59\x2c\x13\x44\xea\
\x55\xe3\x90\xa9\x16\x3e\xfd\xd7\xba\xfa\x96\xaf\xf2\x4d\xfe\x51\
\xaa\x00\x1f\xcb\x9b\xe2\x21\xd2\x00\x1a\xba\x57\x67\x39\xe3\x8e\
\x4b\x63\x89\x63\xfe\xbd\xef\xef\xdd\x7b\xaf\x8c\xf7\x7a\x62\xf1\
\x98\x4e\xee\xee\x3c\x2e\x16\x82\x97\x15\x87\xc4\x76\xa7\x61\x62\
\xf1\x38\xba\x18\x84\x14\x38\xdc\x66\x3f\x76\xe5\xe9\x28\x28\x28\
\xe1\x04\x88\x69\x68\xe9\x62\x48\xe3\x5b\xfa\x51\x40\xf7\xee\xbd\
\xd7\xda\x0b\xf9\x3b\x7f\xdb\xa9\x3f\x97\x3f\xfe\x29\x8f\xc7\x6f\
\xfd\xf6\x1b\x73\xdf\xba\xf7\x4a\x7e\xde\xfe\x55\xdf\xcb\x83\xbf\
\xbb\x1f\x73\xf6\xff\x00\x75\xfc\x25\xf8\xdd\xda\x5d\xa3\xbd\x2a\
\x28\xaa\xb7\x66\xfd\xde\xdd\x5b\xb6\x73\xfb\xa3\x71\x54\xe3\x71\
\x74\x38\x4a\x09\xf2\xd9\x6a\xea\x29\x6a\xab\x25\xa4\xc4\x63\x69\
\xe9\x91\x9d\x89\x58\x61\x45\xfa\x28\xf7\xee\xbd\xd1\x8f\xe8\x2f\
\x8d\xfd\x09\xf1\x5f\x61\x7f\xa2\xdf\x8e\x1d\x45\xb0\xba\x53\xae\
\x46\x6f\x27\xb9\x3f\xb9\x7d\x73\xb7\x68\x36\xc6\xdd\xfe\x3d\x99\
\x14\xe3\x2b\x96\xfe\x19\x8e\x8a\x2a\x7f\xbe\xae\x5a\x38\x96\x49\
\x2d\x72\xb1\x28\xfa\x28\x03\xdd\x7b\xaf\x9d\xef\xfc\x2d\xaf\xfe\
\xcb\xa7\xe2\x37\xfe\x2a\x6d\x47\xfe\xfe\x0d\xff\x00\xef\xdd\x7b\
\xad\x56\x3e\x37\x7c\xdb\xf9\x75\xf0\xf1\x77\x82\xfc\x59\xf9\x1d\
\xdb\xdd\x02\xbd\x83\xfc\x0f\xfb\xee\x3a\xaf\x7a\xe6\x76\x80\xdd\
\x27\x6c\x9c\xa9\xdb\xc7\x36\x31\x35\x10\x7d\xfb\x61\xbf\x8e\x56\
\x7d\xb9\x7b\x98\x85\x54\xa1\x6c\x1d\xaf\xee\xbd\xd6\xeb\xff\x00\
\xf0\x91\xff\x00\x9f\x9f\x36\xfe\x5d\x7c\xcb\xf9\x31\xb4\x3e\x4f\
\x7c\xa9\xef\x1e\xf8\xda\x7b\x5f\xe3\x20\xdc\x9b\x7f\x6d\x76\x86\
\xff\x00\xcd\xee\xec\x36\x23\x71\x37\x6a\x6c\x4c\x58\xce\x50\x51\
\xe5\xea\x2a\x16\x93\x26\x98\xda\xc9\xe9\xc4\xb1\x95\x26\x29\xdd\
\x4d\xee\x2d\xee\xbd\xd6\xfe\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\
\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd2\xdf\xe3\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x53\xf7\xc8\x2f\
\xe4\x27\xfc\xa7\x7e\x53\xf7\x2e\xfd\xf9\x03\xdf\x1f\x13\x71\x7b\
\xf7\xb7\x3b\x3b\x2b\x4f\x9b\xde\xfb\xba\x7e\xcf\xee\xac\x1c\x99\
\xbc\x9d\x2e\x2e\x83\x0d\x05\x53\x62\x76\xd7\x63\xe1\xb0\x74\x4c\
\xb8\xec\x64\x11\x95\xa7\xa6\x89\x0e\x8d\x44\x16\x2c\x4f\xba\xf7\
\x40\xe7\xfd\x03\x29\xfc\x90\x7f\xef\x07\x70\xbf\xfa\x39\x7e\x43\
\xff\x00\xf6\xda\xf7\xee\xbd\xd7\xbf\xe8\x19\x4f\xe4\x83\xff\x00\
\x78\x3b\x85\xff\x00\xd1\xcb\xf2\x1f\xff\x00\xb6\xd7\xbf\x75\xee\
\xbd\xff\x00\x40\xca\x7f\x24\x1f\xfb\xc1\xdc\x2f\xfe\x8e\x5f\x90\
\xff\x00\xfd\xb6\xbd\xfb\xaf\x75\xef\xfa\x06\x53\xf9\x20\xff\x00\
\xde\x0e\xe1\x7f\xf4\x72\xfc\x87\xff\x00\xed\xb5\xef\xdd\x7b\xaf\
\x7f\xd0\x32\x9f\xc9\x07\xfe\xf0\x77\x0b\xff\x00\xa3\x97\xe4\x3f\
\xff\x00\x6d\xaf\x7e\xeb\xdd\x7b\xfe\x81\x94\xfe\x48\x3f\xf7\x83\
\xb8\x5f\xfd\x1c\xbf\x21\xff\x00\xfb\x6d\x7b\xf7\x5e\xe8\x45\xea\
\x1f\xf8\x4f\x67\xf2\x81\xe8\x6e\xd5\xeb\x9e\xed\xea\x8f\x87\xd8\
\x9d\xa7\xd9\xdd\x4d\xbd\x36\xef\x61\x6c\x0d\xcd\x1f\x6a\xf7\x96\
\x55\xf0\x1b\xbf\x6a\x64\xa0\xcc\x6d\xfc\xc2\xe3\x33\x9d\x99\x93\
\xc3\xd7\xbe\x37\x27\x4b\x1c\xcb\x15\x4d\x3c\xd0\xb3\x20\xd4\x8c\
\x38\xf7\xee\xbd\xd5\xcf\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xa2\x8c\
\xa7\xfc\x26\x97\xf9\x27\x66\xb2\x59\x3c\xbe\x4f\xe1\x2e\x1e\xa7\
\x23\x98\xc8\x57\xe5\x32\x15\x3f\xe9\x87\xe4\x14\x26\x6a\xdc\x95\
\x54\xd5\x95\x72\xac\x54\xfd\xad\x14\x10\xab\x4f\x3b\x15\x44\x55\
\x44\x16\x0a\x00\x00\x7b\xf7\x5e\xea\xe6\x3a\xa7\xab\xb6\x27\x48\
\x75\x8f\x5e\xf4\xdf\x57\x60\x21\xda\x9d\x6d\xd5\x5b\x2f\x6d\x75\
\xee\xc1\xdb\x34\xf5\x79\x0a\xf8\x36\xfe\xcf\xd9\xf8\x7a\x4c\x0e\
\xdc\xc3\x43\x5b\x95\xab\xaf\xc9\xd5\xc5\x8d\xc4\xd0\xc5\x0a\xc9\
\x51\x3c\xd3\x38\x4b\xbb\xb3\x12\x4f\xba\xf7\x4b\xff\x00\x7e\xeb\
\xdd\x55\x87\xcb\x2f\xe4\xa5\xfc\xb2\xfe\x71\xf7\x15\x7f\x7e\xfc\
\xa4\xf8\xc9\x8d\xed\x2e\xd9\xc9\xe0\x70\x3b\x66\xbb\x76\x54\xf6\
\x2f\x6e\x6d\x99\x27\xc2\xed\x9a\x79\x69\x70\xb4\x67\x17\xb3\x77\
\xee\xdd\xc2\xa9\xa3\xa7\x98\xa7\x90\x53\x09\x1c\x5b\x5b\x35\x87\
\xbf\x75\xee\x8b\x57\xfd\x03\x29\xfc\x90\x7f\xef\x07\x70\xbf\xfa\
\x39\x7e\x43\xff\x00\xf6\xda\xf7\xee\xbd\xd1\xf7\xf8\x4b\xfc\xb4\
\x3e\x12\xff\x00\x2e\x98\x3b\x1e\x9b\xe1\xbf\x48\xd1\x74\xd4\x3d\
\xb7\x3e\xd6\xa9\xec\x15\xa4\xde\x1d\x81\xbb\x4e\xe0\x97\x65\xc5\
\x9e\x87\x6c\x99\x24\xdf\x9b\xaf\x74\x49\x42\x98\xb4\xdc\xd5\xfa\
\x56\x98\xc2\xae\x6a\x58\xb8\x62\x16\xde\xeb\xdd\x3f\xfc\xd2\xfe\
\x5e\xff\x00\x10\x7f\x98\x66\xd0\xd9\xbb\x0b\xe6\x0f\x50\x52\x77\
\x0e\xd3\xd8\x1b\x9a\xa3\x78\x6d\x2c\x4d\x5e\xea\xdf\x1b\x4d\x71\
\x3b\x86\xaf\x15\x51\x85\xa8\xaf\x5a\xbd\x8b\xb9\x76\xc5\x75\x57\
\x97\x1b\x54\xf1\x98\xa6\x96\x48\xb9\x0c\x17\x50\x04\x7b\xaf\x74\
\x02\x7c\x49\xfe\x4b\x5f\xcb\x43\xe0\xb7\x6f\x41\xdf\x1f\x15\xfe\
\x33\x63\xba\xab\xb5\xa9\xb6\xde\x73\x69\x43\xba\xa9\xbb\x13\xb6\
\xf7\x34\x89\xb7\xf7\x1f\xda\x0c\xcd\x00\xc5\xef\x3d\xf9\xb8\xb0\
\xc7\xef\x05\x0c\x63\xc9\xf6\xfe\x54\x00\xe9\x65\xb9\xbf\xba\xf7\
\x47\x6b\xe4\x87\xc7\x1e\x99\xf9\x6f\xd2\x9b\xef\xe3\xb7\xc8\x4d\
\x99\x0f\x61\x74\xef\x65\xd1\xe2\xe8\x37\xae\xce\xa8\xcb\x67\x70\
\x71\x66\x69\x70\xb9\xec\x56\xe7\xc5\xa1\xcb\x6d\x9c\x9e\x1b\x3b\
\x44\xd4\x79\xec\x1d\x2d\x42\xb5\x3d\x4c\x4c\x5a\x10\x09\x2a\x59\
\x4f\xba\xf7\x55\x15\xff\x00\x40\xca\x7f\x24\x1f\xfb\xc1\xdc\x2f\
\xfe\x8e\x5f\x90\xff\x00\xfd\xb6\xbd\xfb\xaf\x75\xef\xfa\x06\x53\
\xf9\x20\xff\x00\xde\x0e\xe1\x7f\xf4\x72\xfc\x87\xff\x00\xed\xb5\
\xef\xdd\x7b\xae\x9b\xfe\x13\x27\xfc\x90\x59\x48\xff\x00\x64\x7f\
\x0c\xb7\x16\xba\xf7\x2f\xc8\x70\xc3\xfd\x63\xfe\x96\xb8\x3e\xfd\
\xd7\xba\xbd\x1c\x1e\x17\x19\xb6\xf0\xb8\x7d\xbb\x85\xa5\x5a\x2c\
\x3e\x07\x17\x8f\xc2\xe2\x68\x95\xe5\x95\x69\x31\x98\xba\x48\x68\
\x68\x29\x56\x59\xde\x59\xa4\x5a\x7a\x58\x11\x03\x3b\x33\x1b\x5c\
\x92\x79\xf7\xee\xbd\xd3\xa7\xbf\x75\xee\xaa\x13\xe4\x4f\xf2\x1b\
\xfe\x54\x7f\x2c\x3b\xa7\x7d\xfc\x86\xef\xff\x00\x8a\x18\xbe\xc0\
\xee\x0e\xcc\xaf\xc7\x64\xf7\xb6\xef\x9f\xb3\xbb\xa7\x05\x26\x6e\
\xbb\x15\x84\xc6\x6d\xda\x19\xdb\x13\xb6\x3b\x1b\x0b\x82\xa3\x68\
\x70\xd8\x7a\x68\x6d\x4f\x4b\x12\xb0\x8b\x53\x02\xe5\x98\xfb\xaf\
\x74\x77\xfe\x23\xfc\x37\xf8\xe1\xf0\x57\xa8\x20\xe8\x6f\x8a\xfd\
\x71\x4f\xd5\x9d\x53\x4d\xb9\x33\xdb\xb6\x0d\xab\x4f\xb8\x37\x56\
\xe6\x44\xcf\xee\x59\x60\x97\x33\x5e\x72\xbb\xcb\x39\xb8\x73\x6e\
\x6a\x9a\x96\x30\x11\xaa\x4c\x71\xaa\x00\x8a\xa3\xdf\xba\xf7\x45\
\xef\xe6\x87\xf2\x8f\xfe\x5e\xff\x00\xcc\x27\x7e\x6d\x3e\xcc\xf9\
\x7f\xf1\xea\x83\xb8\x37\xb6\xc8\xda\x27\x62\xed\x8c\xdd\x56\xfb\
\xec\xfd\xa6\xf8\xdd\xac\x73\x35\xf9\xf1\x8b\xfb\x4d\x8b\xbd\x36\
\xc5\x0d\x5a\xa6\x5b\x2b\x53\x32\xc9\x34\x52\x4c\x0c\xcc\xba\xb4\
\xd8\x0f\x75\xee\x89\xdf\xfd\x03\x29\xfc\x90\x7f\xef\x07\x70\xbf\
\xfa\x39\x7e\x43\xff\x00\xf6\xda\xf7\xee\xbd\xd7\xbf\xe8\x19\x4f\
\xe4\x83\xff\x00\x78\x3b\x85\xff\x00\xd1\xcb\xf2\x1f\xff\x00\xb6\
\xd7\xbf\x75\xee\xbd\xff\x00\x40\xca\x7f\x24\x1f\xfb\xc1\xdc\x2f\
\xfe\x8e\x5f\x90\xff\x00\xfd\xb6\xbd\xfb\xaf\x75\xef\xfa\x06\x53\
\xf9\x20\xff\x00\xde\x0e\xe1\x7f\xf4\x72\xfc\x87\xff\x00\xed\xb5\
\xef\xdd\x7b\xaf\x7f\xd0\x32\x9f\xc9\x07\xfe\xf0\x77\x0b\xff\x00\
\xa3\x97\xe4\x3f\xff\x00\x6d\xaf\x7e\xeb\xdd\x3a\xe0\x7f\xe1\x35\
\xff\x00\xc9\x57\x6c\xe7\x70\x9b\x97\x07\xf0\xa3\x0d\x41\x9b\xdb\
\xb9\x8c\x5e\x7b\x0f\x5a\xbd\xbf\xdf\xf5\x06\x93\x29\x86\xae\x83\
\x23\x8f\xa8\x34\xf5\x5d\xab\x3d\x2c\xeb\x0d\x5d\x32\x31\x49\x11\
\xe3\x70\x2c\xc0\x82\x47\xbf\x75\xee\xaf\x3f\xdf\xba\xf7\x54\x5d\
\x9d\xff\x00\x84\xd6\xff\x00\x25\x4d\xcb\x9b\xcd\xee\x2c\xdf\xc2\
\x9c\x3d\x76\x6b\x71\x65\xf2\x99\xdc\xbd\x71\xee\x0f\x90\x10\x35\
\x56\x53\x33\x5d\x51\x91\xc8\x54\x2c\x14\xbd\xab\x05\x35\x38\x96\
\xae\xa5\xd9\x52\x34\x48\xd0\x10\x15\x40\x00\x7b\xf7\x5e\xea\xe2\
\xfa\x83\xa9\x7a\xfb\xa1\x7a\xaf\xaf\x3a\x53\xa9\xf6\xf4\x5b\x4b\
\xac\xba\xa7\x67\x6d\xfd\x81\xb0\x76\xbc\x15\xb9\x2c\x94\x3b\x7f\
\x68\xed\x5c\x65\x3e\x1f\x03\x88\x8b\x21\x99\xac\xc8\xe5\xab\x52\
\x83\x1d\x49\x1c\x62\x5a\x99\xe6\x9d\xc2\xdd\xdd\x98\x92\x7d\xd7\
\xba\x11\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x57\x07\xcd\x0f\xe5\x21\
\xfc\xbd\xff\x00\x98\x4e\xfb\xda\x7d\x97\xf2\xff\x00\xe3\xd5\x07\
\x70\x6f\x5d\x8f\xb4\x9b\x62\xed\x8c\xd5\x56\xfb\xec\xed\xa6\xf8\
\xdd\xac\xd9\x8a\xfc\xf8\xc5\xfd\xa6\xc5\xde\x9b\x62\x86\xad\x53\
\x2d\x94\xa8\x95\x64\x9a\x29\x25\x06\x66\x5d\x5a\x6c\x07\xba\xf7\
\x44\xeb\xfe\x81\x94\xfe\x48\x3f\xf7\x83\xb8\x5f\xfd\x1c\xbf\x21\
\xff\x00\xfb\x6d\x7b\xf7\x5e\xe8\xe2\x7c\x30\xfe\x51\xff\x00\xcb\
\xdb\xf9\x7b\x6f\xcd\xd7\xd9\x9f\x10\x3e\x3d\x50\x74\xfe\xf6\xde\
\xfb\x44\x6c\x4d\xcd\x9b\xa5\xdf\x7d\x9d\xbb\x1f\x25\xb5\xbf\x8c\
\xe3\xf7\x01\xc5\xfd\xa6\xfa\xde\x9b\x9e\x86\x91\x5f\x2d\x8a\xa6\
\x99\xa4\x86\x28\xe5\x26\x15\x5d\x5a\x6e\x0f\xba\xf7\x56\x41\xef\
\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbf\
\xff\xd3\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5f\xff\xd4\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd5\xdf\xe3\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd6\xdf\xe3\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\
\xff\xd9\
\x00\x01\xe3\xf0\
\xff\
\xd8\xff\xe1\x22\x13\x45\x78\x69\x66\x00\x00\x4d\x4d\x00\x2a\x00\
\x00\x00\x08\x00\x07\x01\x12\x00\x03\x00\x00\x00\x01\x00\x01\x00\
\x00\x01\x1a\x00\x05\x00\x00\x00\x01\x00\x00\x00\x62\x01\x1b\x00\
\x05\x00\x00\x00\x01\x00\x00\x00\x6a\x01\x28\x00\x03\x00\x00\x00\
\x01\x00\x02\x00\x00\x01\x31\x00\x02\x00\x00\x00\x1d\x00\x00\x00\
\x72\x01\x32\x00\x02\x00\x00\x00\x14\x00\x00\x00\x8f\x87\x69\x00\
\x04\x00\x00\x00\x01\x00\x00\x00\xa4\x00\x00\x00\xd0\x00\x0a\xfc\
\x80\x00\x00\x27\x10\x00\x0a\xfc\x80\x00\x00\x27\x10\x41\x64\x6f\
\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\x43\x20\
\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x00\x32\x30\x32\x30\x3a\x30\
\x37\x3a\x30\x35\x20\x31\x36\x3a\x33\x33\x3a\x34\x31\x00\x00\x00\
\x03\xa0\x01\x00\x03\x00\x00\x00\x01\x00\x01\x00\x00\xa0\x02\x00\
\x04\x00\x00\x00\x01\x00\x00\x01\x86\xa0\x03\x00\x04\x00\x00\x00\
\x01\x00\x00\x01\xfc\x00\x00\x00\x00\x00\x00\x00\x06\x01\x03\x00\
\x03\x00\x00\x00\x01\x00\x06\x00\x00\x01\x1a\x00\x05\x00\x00\x00\
\x01\x00\x00\x01\x1e\x01\x1b\x00\x05\x00\x00\x00\x01\x00\x00\x01\
\x26\x01\x28\x00\x03\x00\x00\x00\x01\x00\x02\x00\x00\x02\x01\x00\
\x04\x00\x00\x00\x01\x00\x00\x01\x2e\x02\x02\x00\x04\x00\x00\x00\
\x01\x00\x00\x20\xdd\x00\x00\x00\x00\x00\x00\x00\x48\x00\x00\x00\
\x01\x00\x00\x00\x48\x00\x00\x00\x01\xff\xd8\xff\xed\x00\x0c\x41\
\x64\x6f\x62\x65\x5f\x43\x4d\x00\x01\xff\xee\x00\x0e\x41\x64\x6f\
\x62\x65\x00\x64\x80\x00\x00\x00\x01\xff\xdb\x00\x84\x00\x0c\x08\
\x08\x08\x09\x08\x0c\x09\x09\x0c\x11\x0b\x0a\x0b\x11\x15\x0f\x0c\
\x0c\x0f\x15\x18\x13\x13\x15\x13\x13\x18\x11\x0c\x0c\x0c\x0c\x0c\
\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x01\x0d\
\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\x10\x14\x0e\x0e\x0e\x14\x14\x0e\
\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\x0c\x0c\x11\x11\x0c\x0c\x0c\x0c\
\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\xff\
\xc0\x00\x11\x08\x00\xa0\x00\x7b\x03\x01\x22\x00\x02\x11\x01\x03\
\x11\x01\xff\xdd\x00\x04\x00\x08\xff\xc4\x01\x3f\x00\x00\x01\x05\
\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x03\x00\x01\
\x02\x04\x05\x06\x07\x08\x09\x0a\x0b\x01\x00\x01\x05\x01\x01\x01\
\x01\x01\x01\x00\x00\x00\x00\x00\x00\x00\x01\x00\x02\x03\x04\x05\
\x06\x07\x08\x09\x0a\x0b\x10\x00\x01\x04\x01\x03\x02\x04\x02\x05\
\x07\x06\x08\x05\x03\x0c\x33\x01\x00\x02\x11\x03\x04\x21\x12\x31\
\x05\x41\x51\x61\x13\x22\x71\x81\x32\x06\x14\x91\xa1\xb1\x42\x23\
\x24\x15\x52\xc1\x62\x33\x34\x72\x82\xd1\x43\x07\x25\x92\x53\xf0\
\xe1\xf1\x63\x73\x35\x16\xa2\xb2\x83\x26\x44\x93\x54\x64\x45\xc2\
\xa3\x74\x36\x17\xd2\x55\xe2\x65\xf2\xb3\x84\xc3\xd3\x75\xe3\xf3\
\x46\x27\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\
\xf5\x56\x66\x76\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6\x37\x47\x57\x67\
\x77\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\x11\x00\x02\x02\x01\x02\x04\
\x04\x03\x04\x05\x06\x07\x07\x06\x05\x35\x01\x00\x02\x11\x03\x21\
\x31\x12\x04\x41\x51\x61\x71\x22\x13\x05\x32\x81\x91\x14\xa1\xb1\
\x42\x23\xc1\x52\xd1\xf0\x33\x24\x62\xe1\x72\x82\x92\x43\x53\x15\
\x63\x73\x34\xf1\x25\x06\x16\xa2\xb2\x83\x07\x26\x35\xc2\xd2\x44\
\x93\x54\xa3\x17\x64\x45\x55\x36\x74\x65\xe2\xf2\xb3\x84\xc3\xd3\
\x75\xe3\xf3\x46\x94\xa4\x85\xb4\x95\xc4\xd4\xe4\xf4\xa5\xb5\xc5\
\xd5\xe5\xf5\x56\x66\x76\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6\x27\x37\
\x47\x57\x67\x77\x87\x97\xa7\xb7\xc7\xff\xda\x00\x0c\x03\x01\x00\
\x02\x11\x03\x11\x00\x3f\x00\xf5\x54\x92\x49\x25\x29\x24\x92\x49\
\x4a\x49\x24\x92\x52\x92\x58\xdd\x63\xeb\x46\x1f\x4b\xc8\x18\xce\
\xad\xf7\xdd\x01\xcf\x0c\x80\x1a\x0f\xd1\xdc\xe7\x1f\xa4\xa8\xb7\
\xeb\xc5\x0e\x0e\x2c\xc2\xb9\xc1\xa2\x5c\x41\x69\x81\xe2\xe8\xfa\
\x2a\x78\xf2\xb9\xe5\x11\x21\x03\xc2\x76\x3a\x06\xb4\xf9\xde\x5a\
\x12\x30\x96\x40\x25\x1d\xc6\xa5\xe9\xd2\x5c\xc3\x7e\xbd\xe1\x48\
\xdf\x8b\x68\x6f\x72\x0b\x49\x8f\xea\xee\x0b\xa4\xaa\xda\xee\xa9\
\x97\x54\x77\x57\x63\x43\xd8\xe1\xdd\xae\x1b\x9a\x53\x32\xe0\xcb\
\x8a\xb8\xe2\x63\x7b\x2f\xc3\xcc\xe1\xcd\x7e\xd4\xc4\xf8\x77\xa6\
\x69\x24\x92\x8d\x99\x49\x24\x92\x4a\x52\x49\x24\x92\x9f\xff\xd0\
\xf5\x54\x92\x49\x25\x29\x24\x92\x49\x4a\x49\x24\x92\x53\xe7\xff\
\x00\x59\xe3\xfe\x72\x5d\x2c\xf5\x67\xd2\xfd\x19\xdd\xee\xf6\x37\
\xdb\xfa\x28\xb3\xfe\xdb\x57\x31\x73\x3a\x57\x4c\xa7\x37\x1e\xf1\
\x5d\x2e\xcb\xab\xd3\x6b\x45\x79\x8d\x0e\xd2\xc6\xfe\x98\x64\x9f\
\x53\x67\xe9\x3f\xc0\x7e\x91\x2e\xb2\xfb\x47\x5a\xea\x35\x62\xdc\
\xdc\x7c\xcb\x3e\xcf\xe9\xbc\xbc\x56\x5d\x58\x67\xe9\xa8\xaa\xf7\
\x47\xa5\x63\xec\xf4\x1f\xf4\xeb\xf5\x7d\x34\xd8\x79\xb9\x9d\x2e\
\xbb\x2d\xeb\x19\xbf\x68\x6f\xf8\x3e\x9c\x5e\xdc\x8b\x1e\xff\x00\
\xcc\x75\x96\x1f\x57\xec\xf5\xb3\xe9\xff\x00\x39\xff\x00\x90\xb3\
\x63\xe6\xc3\x8e\x3a\xe9\x08\x7a\x23\x2e\x19\xe4\xd2\x32\xdb\x86\
\x6e\x10\xa8\x73\x19\x67\xde\x79\x2f\x24\xa2\x25\x8f\x17\xaa\x70\
\x31\x94\xb8\xe1\xf3\x39\x7d\x6f\x0c\x60\x5c\xcc\x67\x55\x45\x76\
\x16\x0b\x1c\x68\x75\xc7\x47\x4b\x5a\xcb\x06\x53\xdf\xb5\xde\xdd\
\xcb\xbd\xe8\xdf\xf2\x46\x0f\xfe\x17\xab\xfe\xa1\xab\x93\x7e\x4f\
\xd5\xce\xb7\x69\xb7\x37\xd4\xe9\xb9\xd6\x46\xfb\x43\xb7\x54\xe2\
\x00\x63\x25\xcf\x0e\x63\x5a\xd6\xb7\xf3\x99\x8e\xbb\x0e\x9f\x53\
\x29\xc0\xc6\xa5\x8f\x16\xb2\xba\x98\xc6\xd8\x38\x70\x6b\x43\x5b\
\x60\x82\xef\xa7\xf4\x95\x7e\x76\x64\xe2\xc7\x09\x89\x0c\x91\x3e\
\xae\x21\xff\x00\x46\x5e\xae\x26\xcf\xc3\xb1\xc4\x66\xcb\x93\x1c\
\xa1\x2c\x52\x03\x83\x80\xeb\xfe\x1c\x3d\x3c\x32\x6c\x24\x92\x4b\
\x3d\xd4\x52\x49\x24\x92\x94\x92\x49\x24\xa7\xff\xd1\xf5\x54\x93\
\x20\xdb\x99\x89\x4b\xf6\x5d\x7d\x75\xbe\x27\x6b\xde\xd6\x98\x3d\
\xf6\xb8\xf9\x24\xa4\xe9\x2a\xbf\xb4\xba\x77\xfd\xca\xa7\xfe\xdc\
\x6f\xfe\x49\x4d\xb9\xb8\x6f\x63\xde\xcb\xea\x73\x2a\x13\x63\x83\
\xda\x43\x41\xee\xf3\x3e\xdf\xa2\x92\x93\xa4\xaa\x9e\xa7\xd3\x40\
\x93\x97\x48\x03\x9f\xd2\x37\xff\x00\x24\x8d\xeb\xd1\xea\x8a\x7d\
\x46\xfa\xa5\xbb\xc5\x7b\x86\xe2\xde\x37\xec\xfa\x5b\x12\x53\x99\
\xd5\xbe\xac\xf4\xfe\xa9\x78\xc8\xb5\xcf\xaa\xdd\xbb\x5c\xea\xcb\
\x46\xe0\x3e\x8e\xf0\xf6\xbf\xe8\xaa\x23\xea\x27\x4c\x1c\x64\x5e\
\x3e\x75\xff\x00\xe9\x25\xd0\x7d\xa2\x8f\x55\xd4\xfa\x8c\xf5\x5a\
\xdd\xee\xaf\x70\xdc\x1b\xfb\xee\x6f\xd2\xd8\xa0\xcc\xec\x1b\x1a\
\xe7\x57\x91\x53\xdb\x5b\x77\xbc\xb5\xed\x21\xad\xfd\xf7\x41\xf6\
\xb5\x4d\x1e\x6b\x3c\x62\x23\x19\x90\x06\xc1\xaf\x3e\x4f\x97\x9c\
\x8c\xa5\x8a\x26\x52\xdc\xb8\x6d\xfa\x8b\xd2\xc1\x05\xd7\xe4\x39\
\xbd\xdb\x2c\x13\xe5\xed\xaf\x72\xe8\x6a\xae\xba\xab\x65\x55\xb4\
\x36\xba\xda\x1a\xc6\x8e\x03\x40\xda\xd6\xa4\xc7\xb2\xc6\x36\xca\
\xdc\x1e\xc7\x09\x6b\x9a\x64\x10\x7b\xb5\xc1\x0d\xb9\x98\x8f\xb7\
\xd1\x65\xf5\xba\xe9\x23\xd3\x0f\x69\x74\xb7\xe9\xb7\x64\xee\xf6\
\xc2\x6e\x4c\xd9\x32\x57\x1c\x8c\xab\x6b\x5f\x8b\x97\xc5\x8a\xfd\
\xb8\x08\x71\x6f\x49\xd2\x4d\x31\xa9\x40\xaf\x3b\x0a\xdd\xde\x96\
\x45\x56\x6d\x6e\xf7\x6d\x7b\x4c\x37\xf7\xdd\xb4\xfd\x15\x1b\x2b\
\x61\x25\x57\xf6\x97\x4e\xff\x00\xb9\x74\xff\x00\xdb\x8d\xff\x00\
\xc9\x24\x7a\x9f\x4e\x1a\x9c\xba\x63\xfe\x31\xbf\xf9\x24\x94\xda\
\x49\x33\x5c\x1c\x03\x9a\x64\x1d\x41\x1a\x82\x13\xa4\xa7\xff\xd2\
\xf5\x55\xe7\x9f\x58\x7a\x57\x49\xea\x5f\xe3\x07\x29\xbd\x5b\x18\
\x66\x63\xe2\xf4\x33\x94\xda\x77\x39\x92\xfa\xee\xd3\xdf\x53\x98\
\xef\xa0\xe7\xb1\x7a\x1a\xf3\xde\xbf\xd4\xba\x5f\x4f\xff\x00\x18\
\x39\x47\xaa\x65\x37\x0a\x8c\xae\x84\x71\x9b\x73\x81\x74\x3e\xcb\
\xb4\xf6\xb3\xf9\x2d\x7b\xd2\x53\xc8\xf4\xae\xaf\xf5\x07\xa9\x75\
\x3c\x2e\x9e\x3e\xab\x7a\x4e\xcc\xbe\xac\x7d\xff\x00\x6d\xb9\xc1\
\xa6\xd7\xb6\xad\xf1\xed\xdf\xb3\x7a\xdb\xc1\xe9\x35\xe3\xb7\xfc\
\x60\x74\xae\x95\x8c\xed\x8c\x66\x3d\x78\xf8\xd5\x07\x58\xef\xa3\
\x90\x76\xb0\x1f\x52\xd7\xbb\x72\xc5\xe9\x3d\x07\xea\x4f\x4d\xea\
\xb8\x5d\x47\xfe\x76\x57\x6f\xd8\xef\xab\x23\xd3\xfb\x25\x8d\xdd\
\xe9\x3d\xb6\xec\xdf\xea\xbf\x66\xfd\x9f\x4b\x6a\xe9\x7e\xaf\x7d\
\x61\xc5\xc7\xea\x3f\x5e\x3a\xfe\x14\x66\xe3\xd5\xf6\x6b\xea\x00\
\x96\x07\x86\xb7\x27\xf3\xdc\xc7\x39\xbf\xf6\xda\x4a\x68\xd7\xfe\
\x2d\x3a\x3f\x5f\xe9\x9d\x3f\xf6\x56\x5d\x38\x19\xf8\xb8\xd5\xb7\
\xab\xd3\x0e\xba\xd1\x92\xe6\xb3\xd4\x66\x55\x4e\xb8\x7d\x92\xda\
\xed\x65\xed\x7d\x5e\x9d\x6b\xa8\xcb\xc6\xe9\x1d\x5f\x26\x8b\x7e\
\xae\xf5\xac\x5a\x3e\xb1\x63\xd0\xdc\x66\xe5\xd4\xe6\xe4\x3b\xec\
\xec\xdd\xeb\x55\xf6\x2f\x55\xd4\xff\x00\x39\x66\xff\x00\x57\xd3\
\xf5\x16\x87\x45\xea\x3f\x57\xd8\x70\x6c\xaa\x9a\xb0\x3a\x97\xd6\
\x5a\x46\x77\xa0\xc6\x92\xeb\x1c\x59\xf6\xab\xb7\xdc\xd6\x35\x8f\
\x75\x5e\xb3\xff\x00\x9c\xd9\xbd\x72\xb4\x64\x7d\x5b\xe9\xff\x00\
\x5c\x1b\xf5\x93\xa7\x7a\x38\xdf\x57\x6a\xc5\x76\x16\x4e\x55\x4c\
\x2c\xac\x66\x9b\x1e\xf7\x52\xea\x9a\xdf\x59\xd6\x7a\x2e\xa7\xf4\
\xbe\x97\xa7\xff\x00\x08\x92\x94\xcc\x3c\xd7\x7d\x66\xca\xe9\x37\
\x66\xb5\xbd\x6e\xac\x31\x7f\x51\xeb\xcf\x63\x43\x6f\xc1\x9a\xd9\
\x6f\x4d\x76\x07\xf4\x7c\x7f\xe7\x2a\x7f\xdb\x58\xef\x5f\xf4\x0b\
\x2f\xaa\xe1\x62\xd5\x96\xfe\x9d\xf5\x47\xa7\xd9\xd3\xfa\x46\x66\
\xdc\x7c\xff\x00\xac\x35\x17\xe5\x62\x3f\x0d\xed\x07\x29\xce\xb6\
\xff\x00\x52\x8a\x6b\xc4\xb0\xd9\xf6\x8b\xab\xcb\xaf\xfa\x3d\x9e\
\xa5\xab\xa1\xfa\x9c\xca\x59\x85\x97\x83\xd7\xdf\xb3\xeb\x57\xd9\
\xae\x39\x97\x5d\x36\xe4\x37\x11\xc5\xbb\x1d\x66\x47\xbd\xb6\x54\
\xcf\xd1\x7e\x8b\xd6\x5c\xf7\xd5\xac\x8c\xce\x85\x99\x8f\xd3\x4b\
\x9f\xd7\x7e\xaa\x75\xb7\xb3\xa7\xe0\xe4\x58\xe3\x4d\x04\xda\xf1\
\xf6\xc7\xb3\x05\xfe\xbb\xdb\xb2\xdb\x32\x6a\x7b\x1f\xe9\x7a\xdb\
\x3f\x9c\x49\x4d\xdf\xb3\xfd\x6e\xe9\x39\x7f\x57\xba\x27\x4f\xfa\
\xcc\xcb\x70\x7a\x9b\x2c\x66\x2d\xd5\xe2\xd2\xe6\x57\x5d\x0c\x65\
\x8c\xdb\x3e\xa7\xda\x5a\xf6\x3f\xdb\xfa\x55\x91\xd3\x7e\xad\x66\
\xe1\x75\xfc\xee\xa9\xd4\x7e\xb0\x55\xd0\xfa\xb5\x19\x77\x8a\x2f\
\xcc\xa5\x8c\x39\x0d\x7f\xa9\x5d\xbd\x42\x8a\xb2\x5f\x55\x6e\xa7\
\x23\xd4\xb3\x67\xa7\x5d\x95\xae\xa2\xee\xa7\xd2\xba\xa6\x3f\x5b\
\xc2\x75\x75\xf4\x0f\xf9\xaa\xe6\xe2\xe1\xf5\x5a\xe6\xd7\xd2\xd7\
\xbd\xd4\xb9\xf8\xf5\x56\xca\x2c\xa3\xd4\x66\x2b\x6a\xd9\x55\xbf\
\xe1\x56\x67\x4c\x6b\x1b\x8f\x91\x4f\x5c\xc6\x6f\xd6\x7e\xb3\x93\
\x67\xa9\xd0\x2b\xcb\x23\x7e\x56\x16\x91\x91\x45\xd6\xfd\xa1\x98\
\xb4\xba\x9f\x5b\x33\xd0\xb5\xc9\x29\xdf\x65\xd9\xae\xfa\xb3\x69\
\x7f\xd6\xec\x4b\xac\x76\x58\x61\xea\xbb\x29\xf4\x83\x0b\x19\xbb\
\x00\xb5\xaf\xf4\x7d\x47\x7f\x3b\xf4\xbd\x4f\xd2\x2c\xa3\x8d\xf5\
\x67\xa6\x75\x1f\xad\x1d\x0f\xa5\x74\xaf\xb2\x64\x62\x74\x7b\x8b\
\xf3\x3d\x6b\x2c\xf5\x18\xfa\xab\xb5\xd4\xfa\x17\x17\xec\xf7\x5b\
\x5f\xbf\x7f\xf8\x35\x77\xa9\xf5\x6f\xaa\x78\x9f\x54\x5f\x91\xd3\
\x3a\x6e\x36\x56\x1f\xdb\x19\x4d\xf8\x8d\x1e\x9b\x2b\xca\x73\x5a\
\xd7\xd9\xee\xa7\xdf\x6d\x1f\xa2\xf7\x7a\x7e\xf5\x9d\x8f\xd0\x71\
\xfa\x4e\x57\xd6\x6f\xb4\x75\xe7\x75\x7e\xb3\xfb\x22\xe6\xe5\x53\
\x65\x4e\x63\xda\xc3\x5b\x1d\x5d\xaf\xbd\xf6\xdc\xdb\x3f\x46\xda\
\x5b\xb3\xf9\x69\x29\xe7\xab\xaf\xea\x8f\x47\xfa\xa1\xd1\x3a\x97\
\x52\xe8\x9f\xb4\xb2\xba\x97\xda\x05\x96\x0c\x8b\x29\x8f\x46\xc7\
\x31\xa7\x6b\x0b\x98\xef\x6b\x98\xdf\xa2\xa4\xca\xfe\xa7\x75\xbf\
\xaa\xdd\x7b\x3b\xa7\xf4\x3f\xd9\xd9\x3d\x2e\xba\x4d\x76\x1c\x8b\
\x6e\x93\x73\xdc\xd9\xda\xf2\xd6\xb7\x67\xa4\x95\x63\xea\xb7\x5a\
\xfa\x9d\xd0\xfa\x76\x7f\x5d\x67\x4b\xc9\xe9\xdf\x68\x36\x56\x69\
\x7d\xc4\xfa\xb6\xb9\xcd\x9d\xae\xab\x6f\xb5\xa9\xd8\xdf\xaa\x9d\
\x0b\xea\xaf\x5e\xc2\xc2\xeb\xd5\xf5\x3c\x9e\xa7\x5d\x02\xba\xc5\
\x0f\xa4\x83\x4b\xdc\xe8\x1b\x9d\x6e\xfd\xfe\xb2\x4a\x7d\x77\xa1\
\x69\xd1\x3a\x78\x1f\xf7\x16\x9f\xfc\xf6\xc5\x79\x51\xe8\x7f\xf2\
\x2f\x4f\xff\x00\xc2\xb4\xff\x00\xe7\xb6\x2b\xc9\x29\xff\xd3\xf5\
\x55\x95\xd6\xfa\x57\x47\xbb\x1f\x23\xa8\x66\x74\xdc\x5c\xdc\x8a\
\x29\x7b\x98\xec\x8a\x59\x63\x88\x63\x5d\x63\x2b\xdf\x63\x1c\xfd\
\x9b\x96\xaa\xe3\x7a\xf5\x27\xeb\x0f\xd6\xb7\x7d\x57\xce\x7b\xea\
\xe9\x94\xe0\x8e\xa2\x1f\x41\xf4\xed\xf5\xbd\x47\x61\xec\x7d\xde\
\xe6\xfa\x0e\xa6\xeb\x3f\x47\xb1\x25\x3e\x7f\x81\xf5\xfb\xa3\xd9\
\x9b\x8d\x5e\x77\xd5\xbe\x8f\x4e\x2b\xed\xad\xb9\x37\x37\x14\x12\
\xca\xcb\x9a\x2e\xb5\x8c\x0d\x7b\xbd\x95\xee\x77\xe7\xae\xc3\x29\
\xd5\x5b\xf5\x53\xeb\x36\x56\x0f\x4c\xc4\xc0\xe8\xf7\xe3\x35\xdd\
\x37\x2b\x16\xb6\xd4\xec\x9a\xc0\xb0\x3d\xf9\x15\x37\x6d\xad\xf4\
\x9f\xfc\xd7\xad\x4d\x3f\xce\xae\x4f\xeb\x17\xf8\xbd\xc7\xe9\x5f\
\x58\xba\x68\xae\xe6\xbf\xa1\x75\x4c\xca\x31\x69\x8b\x0b\xae\x0d\
\x77\xa4\xcc\x97\x58\xff\x00\x4d\xb5\x37\xde\xeb\xbd\x3d\x8e\x7a\
\xda\xc2\xce\xe9\xff\x00\x57\xbe\xb4\xd1\xf5\x6b\xa1\x33\x22\xdc\
\x5c\x9c\x86\xe3\x75\x53\x9e\x05\xb5\x6c\x6f\xba\x96\xe0\xb9\xae\
\xda\xc6\xfe\xb1\x91\xeb\x7a\x95\xff\x00\xa3\x49\x4f\x1f\xf5\x7f\
\xac\x7d\x62\xce\x67\xec\x3e\x9c\xd7\x65\xf5\x3b\x83\x59\xd3\xb2\
\x9d\x71\x6d\xf8\xb5\xd2\xd3\x65\xd4\xf4\xfc\x8b\x6c\x67\xd9\x2b\
\xb7\x1e\xbf\x4e\xd6\x57\x65\x5b\xe9\xfd\x12\xeb\xbe\xa1\xfd\x49\
\xfa\xd1\x87\xd5\x1d\x4f\xd6\x3c\x2d\xfd\x1a\xc6\xbe\xc7\xe3\x5f\
\x6d\x57\xd0\xeb\xce\xc0\xcb\xdd\x88\x2d\xb9\xae\xbf\x6b\x7f\x9e\
\xf4\x95\x3b\xfe\xad\x7d\x61\xe8\xff\x00\xe3\x16\x8c\xae\x99\x6e\
\x17\xda\x7a\xb5\xd9\xb9\x3d\x3b\xd4\x2f\x75\x4d\xac\xb6\xe7\xb8\
\x64\x0a\xeb\x6e\xd7\x7d\x9e\xdf\xd1\xfa\x5e\xa3\x3d\x45\xd7\xfe\
\xc1\xfa\xea\xf7\x8e\xb5\x66\x46\x17\xfc\xe2\xaf\xf5\x6a\x80\x75\
\xa3\x0b\xec\x87\xf4\x92\xfa\xbd\x2f\x59\xd9\x9e\xbb\x9f\xee\xfe\
\x6f\xd3\x49\x4e\x27\xd6\x5e\xb5\xd3\x7e\xa5\xe1\x3f\xa7\xd1\x77\
\xed\x7f\xac\x37\x4d\x59\x59\x39\xac\x79\xc8\xfb\x2d\xcc\x7b\xbf\
\xa7\x6d\xfd\x25\x75\xd8\xca\x36\x53\xf6\x87\xff\x00\x51\x5f\xff\
\x00\x15\xd9\xdd\x03\xa8\xfd\x5c\xc0\xe9\x4f\x15\xe4\xf5\x2e\x97\
\xea\xe4\x3a\xbb\x2a\x2e\x34\x97\x5f\x6b\xea\xba\xab\xac\xaf\xd2\
\x6d\x9b\x6c\x67\xf3\x36\x7a\x8b\x80\xc1\xbb\xea\x76\x57\xd6\x96\
\x3d\xcc\xea\x57\x74\xdd\x95\x36\x80\xf3\x5b\xef\x19\x02\xca\x9a\
\xdf\x5f\xde\xea\xfe\xc9\xb7\x7b\x17\x79\x9f\x97\xf5\x53\x1b\xeb\
\x8f\x53\xe9\x2e\xa3\xa8\x33\xa8\x75\xb6\x53\xd3\xf2\x2d\xa1\xb5\
\x8c\x76\x8b\xab\xa9\xb5\xd9\x43\xb7\x7a\x95\xfb\x1c\xcf\x55\xee\
\xae\xcf\x7e\xff\x00\x62\x4a\x4d\xf5\xc7\x3b\xea\xe6\x47\xd5\x8f\
\xac\xf4\xf4\x96\xd4\xdc\xdc\x73\x5b\x7a\xa1\xae\x93\x53\x8d\xa6\
\xed\xac\xf5\xad\x75\x75\x7d\xa5\xdb\xd9\x77\xbf\x7d\xbf\xf8\x22\
\xe0\xb3\x87\xd7\x1e\xa3\x9d\xf5\x73\x1b\x17\x18\xe1\xf5\x06\xf4\
\xe6\x33\xa5\xbf\x1e\xf6\xb2\xcb\x68\x6d\x6f\x77\xda\x3d\x61\x73\
\x7e\xcf\xea\x63\xb6\xcf\x63\xdf\x52\xda\xfa\xbb\x75\xff\x00\x57\
\xba\xbf\xd6\x7b\x18\x19\x91\xd0\xb0\x32\x5a\xde\xa5\x55\xc0\xdd\
\x95\x6b\x03\xb2\x2a\xc6\x18\xfb\xf6\x53\x63\xbd\x47\x6f\xc8\xf5\
\xde\xc5\xa9\xf5\xcf\x3f\xa8\xf5\xcc\xde\x91\xd0\x3a\x33\x68\xc4\
\xab\xad\xe0\xb7\x22\xab\x72\x1a\x6b\xb6\xa0\xdd\xd9\x82\xbf\x5a\
\x8f\x55\xd4\x7e\x8a\x8f\x49\xd5\xd6\xc7\xa4\xa4\xff\x00\x52\xb0\
\xf1\x5a\xc7\xf4\xfc\x3a\x59\xd6\x3e\xae\x6f\x7e\x47\x50\xcd\xcc\
\x60\x75\x95\xf5\x16\xb6\xbf\x57\x19\x98\xf7\x06\xba\xd6\xd7\x5b\
\x29\xb7\xd6\x66\x3d\xbf\xcf\x7f\x48\x58\x16\x7d\x64\xbf\x23\xeb\
\xa7\x5e\xeb\x3f\x56\xf1\x69\xeb\x18\x56\x60\x8f\xb4\x8b\xe6\xb6\
\x0c\x7a\xeb\xc7\x6e\x4b\xdd\x56\x4f\xa0\xfb\x3d\xd5\x7a\x7e\x9e\
\xcf\x7a\x27\x40\xbb\x03\xeb\x46\x7b\xb0\x7a\xd0\xc9\xc6\xea\xf8\
\xb5\xbc\x52\x30\x08\xa3\x15\xf4\xe3\x89\x0f\xb5\xa4\xba\xdb\x32\
\x6d\xbb\xd6\xdf\x67\xa7\xfc\xdf\xa6\x83\xd1\xb1\xce\x6f\x53\xc1\
\xfa\xdd\xd7\xe1\x94\x75\x8b\xe9\xc5\xc6\xc6\xe9\xa7\x63\x9b\x75\
\x76\x57\x4d\x5f\x6d\xc6\xbb\xd9\xf6\x1b\x1b\x8b\xfa\x6f\xd2\xdb\
\xf4\xd9\xfa\x34\x94\xec\x7d\x57\xea\x9d\x03\x39\xb8\xd6\xfd\x60\
\xe8\x1d\x2b\xa7\xd1\xd5\x9e\x2a\xe8\xce\xab\x15\x96\x1b\xed\x16\
\x1c\x7b\xd8\xef\x4d\x97\xfa\x1e\x9d\xae\xa5\x9f\xac\x7a\x0b\x2f\
\x37\xaf\xd5\xff\x00\x3a\x32\x7e\xaf\x74\xbf\xaa\xbd\x1f\x26\xea\
\xf2\x2c\xa3\x1c\x3a\x8a\xda\x5d\xe9\xee\xfa\x6e\x7f\xa5\x56\xef\
\x62\xee\x3e\xb9\x5b\xd5\xb0\x30\x59\x95\xd0\x87\x4f\x6b\x7a\x6b\
\x2e\xbf\x22\xac\xa6\xcb\xc0\x63\x5b\x6d\x63\x0a\xba\xc7\xb6\xd7\
\x7e\x93\xfd\x1f\xf8\x25\xc9\x57\xf5\xa3\x03\xeb\x0e\x4f\x48\x7e\
\x3e\x35\xb8\xdf\x5a\xb1\x83\xbd\x1c\x8b\x6a\x65\x58\x26\xfb\x1a\
\xdf\xb4\xbf\x2d\xcc\x7d\xb9\x2f\xab\x65\x4f\xf4\x7d\xa9\x29\xf4\
\xfc\x11\x60\xc3\xa0\x5b\x53\x71\xec\x15\x30\x3e\x86\x46\xd6\x3b\
\x68\xdd\x53\x36\xfb\x76\x57\xf4\x1a\x8e\x85\x89\xeb\xfd\x96\x9f\
\xb4\x96\x1c\x8d\x8d\xf5\x8d\x73\xb0\xbe\x07\xa9\xe9\xee\xf7\x7a\
\x7b\xfe\x82\x2a\x4a\x7f\xff\xd4\xf5\x55\xc8\xfd\x74\xea\x3d\x4e\
\xe7\x8e\x85\xd3\x6f\x67\x4b\xb6\xf6\x87\x59\xd4\x33\x5a\xd1\x89\
\x6b\x2c\x16\x63\xbb\xa6\xd5\x75\xac\xbb\x76\x75\xaf\x73\x2d\x65\
\x4c\x67\xa9\xe9\x55\x62\xeb\x97\x93\x7f\x8d\x1e\xb1\x98\xcf\xad\
\xbd\x33\xa5\xdb\x78\x6f\x4c\xac\xe3\x65\x9a\xdc\x1a\x1a\xdb\x05\
\x97\x54\xeb\x8d\xbb\x7d\x4f\xe6\xbf\x97\xb1\x25\x34\xfa\x66\x1b\
\x30\xfa\x9b\xfe\xa6\x7d\x6b\xa2\xce\xab\xd3\xfa\x57\xa6\xea\x1f\
\x8a\x1c\xda\x71\x4e\x41\x6e\x45\xf9\x99\x99\x4c\xfb\x2d\xcc\xc5\
\x65\x79\x5f\xa5\xb3\x23\x7d\x75\xae\xb7\x0f\xa4\xdd\x9d\xd2\x3a\
\xf7\x42\xe9\x7d\x4f\x07\x27\xa6\x3e\xa6\x53\xd1\xf1\xe9\xb4\x5b\
\xf6\x66\xbc\x5b\xbd\xb9\x96\xd6\xcb\x2f\xfd\x33\xff\x00\x9b\xf5\
\x2d\xc9\xfe\x6d\x46\xae\xab\xf5\x7f\xa9\x75\xaf\xad\x2d\xc0\xe9\
\xc3\xa8\x5a\x30\x01\xc8\xc9\xc6\xc8\x75\x83\x35\x9e\x88\x6f\xd8\
\xe9\x65\x3b\xd9\x4b\xff\x00\xed\x2e\xfc\x6f\xd2\x7a\x9f\xf0\x88\
\x7f\x52\xba\x97\xd5\xfe\x90\x73\x7e\xd3\xd2\x4f\xd5\x1f\x58\x55\
\xb7\xed\xf7\xbd\xbf\x69\xd9\xea\xee\xf4\x3e\xdf\xe9\x7f\x45\xf5\
\x3f\x4b\xe9\x7f\xdc\x9a\xfd\x5f\xcc\x49\x4c\x3a\xe3\x31\x70\x7e\
\xaf\x61\x1e\x97\x93\x4e\x57\xd7\x0e\x81\x8d\x56\x26\x25\x78\xb6\
\x0b\xed\x6b\xda\x2a\xc5\xea\x2d\x66\x07\xbf\xd6\xfd\x5f\xed\x1b\
\xfd\x6c\x5f\x52\x9a\xff\x00\x4b\xfa\x2d\x8a\x87\x4a\xfa\xd1\xf5\
\xdf\x2f\xa3\xbf\x0b\x36\xdb\x3a\x57\x57\x76\x48\x7d\x5d\x53\xa8\
\x63\xb3\x1f\x13\xd1\x21\x8d\x6e\x17\xa8\xfa\x76\x7d\xaa\xdb\xbd\
\x4f\x49\xbf\x67\xf7\xff\x00\xa5\x59\x58\x3d\x43\xf6\x1f\xd7\x0c\
\xfe\xa3\xfb\x03\x23\xaa\xe6\x67\xe6\x64\xe4\x74\x6c\x9a\x9d\x63\
\x45\x94\xb8\xdc\xeb\x2d\xc4\x6b\x2b\xb6\xbc\xca\xad\xc7\xbb\xd4\
\xf5\x58\xdb\x3f\x44\xba\x1c\xdf\xb1\x75\x7e\x82\xde\x99\xd5\x3e\
\xb6\x60\xdf\x96\x73\x2b\xca\x6d\xaf\x34\xb4\xb1\x8d\x0d\xfd\x48\
\xd3\x55\xb5\xfb\xd9\x66\xff\x00\x7a\x4a\x6a\x7d\x53\xbb\xea\x27\
\xd4\x8b\x2d\xaf\xa8\x75\x06\x3f\xaf\x52\x1f\x8f\x9b\x7d\x55\xe5\
\x3d\x80\x17\x56\xf7\x63\xfb\x6b\x7d\x1f\xa2\xb2\xb6\x7e\x95\xac\
\xde\xb5\xfa\x9f\xf8\xc5\xfa\xbd\x75\xd8\x4e\xe9\xfd\x75\xb8\x95\
\x55\x7b\x5f\x98\xc7\xe2\x5e\xf3\x75\x23\xe9\xd0\xc7\x3b\x1f\xf4\
\x4e\x77\xfa\x46\x2e\x2d\x96\xd9\x4f\xf8\xc3\xea\x2e\xa2\xb1\x90\
\xe3\x99\x94\xcb\x68\x23\x47\xb1\xe4\xd5\xe9\x3b\x4f\xcf\xb5\xd5\
\x2b\x97\xe3\xe2\x62\xe5\x5d\x4d\x15\x55\xb9\x8e\xdb\x63\xab\x60\
\xda\xfb\x07\xb6\xdf\x47\x9f\xd0\xb1\xff\x00\xa3\xa7\xf7\xd2\x00\
\x95\xd4\x03\x73\xa3\x65\xfd\x40\xc3\xfa\xcb\xd4\x3e\xb1\x66\x75\
\x31\x93\x91\x7e\x43\xb2\x30\x4b\x68\xcb\xac\xd2\x1f\xeb\x7a\xcd\
\x78\xf4\xfd\x3b\xf7\xb2\xd6\xb7\xe8\x7f\x83\x4b\xeb\x87\x4e\xc7\
\xea\xff\x00\x54\xba\x9f\xd6\xac\x9c\x96\x75\x48\xb5\xbf\xb1\x32\
\x98\x1f\x49\xab\x19\xd9\x0c\xa5\xf8\xb6\x63\xed\xa1\xaf\x7d\x6e\
\x7d\xd5\x7a\x97\xb2\xdb\x56\x57\x50\x77\x4e\xab\xa0\x66\x0a\x71\
\xab\x6f\x50\xb6\xc6\x83\x76\xc0\x62\x97\x11\xeb\x3a\xbd\x36\xd5\
\x6f\xe6\x7b\x3f\xd2\x2e\x9b\xa1\x36\xb7\x7f\x8a\x4a\x5b\x6f\x4d\
\xb3\xac\xb2\x5f\x3d\x3e\xa7\x3d\xaf\xb6\x33\x9f\x1b\x5d\x8e\xd7\
\xdd\xfa\x2f\xe7\xfd\xac\xff\x00\x06\x95\x10\x68\xa8\x81\x5a\x39\
\x79\x57\x75\x3c\x5e\x8e\xde\xaf\x8f\xd4\xb1\x7a\xaf\xd6\xea\x8b\
\x69\xc5\xb3\xa7\x96\x5c\xf6\x74\xfd\xa1\xf6\x52\xec\x0a\xd9\xe9\
\x7e\x8a\xc7\x5c\xfb\x6f\xfb\x2e\xf6\x7a\x9f\xcf\xaa\xfd\x0b\xae\
\xe5\x5e\xca\x3e\xb0\x35\xb6\xe3\x75\xcb\x1c\x4f\x53\xea\x57\xb5\
\xac\xa7\x3f\x1e\xa7\x35\xbf\xb2\x3a\x53\x0b\x5d\x8d\x67\x52\xb6\
\xaa\x71\xea\xa6\xaa\x28\xa2\xed\xf4\x59\xfa\x74\xba\x27\x44\xc3\
\xfa\xa1\xf5\xea\xaa\x33\x73\x6a\xa2\x9c\xce\x9d\x65\xed\x7d\xd1\
\x4b\x6a\x37\x17\xd6\xdc\x62\x6d\xb1\xdb\xdf\x5f\xa5\xfb\xff\x00\
\xa4\x5a\x74\x7d\x58\xfd\x93\xd3\xb2\xfa\x6e\x5f\x5c\xa7\xa8\xbb\
\xa0\xe2\xdd\x9f\x81\xd3\xab\x6b\x6b\xb7\x1b\x29\xa3\xed\x54\x67\
\xbb\x65\x8e\xba\xc6\x56\xeb\x7f\x9a\xc9\xf5\x31\xff\x00\x58\xfe\
\x6d\x25\xae\x57\x56\xb3\x08\xf5\x3e\xab\xf5\xa6\xcc\x0c\x9b\x73\
\xed\x6b\x6e\xe9\xf4\x30\x1f\xb4\xf4\xdb\xf1\x5a\xda\xeb\xca\xeb\
\x98\x9b\xbd\x3c\x6a\xae\xb6\xba\xf2\x71\xfd\x7f\xb4\xd7\x6d\x0c\
\xfa\x0b\xa5\xff\x00\x9d\xdf\x57\xfa\x8f\x42\xe8\xfd\x27\xeb\x06\
\x45\x79\x4f\xeb\x58\xff\x00\xaf\x5a\xcb\x6b\xad\x95\x3a\xb6\xd7\
\x73\x9d\x98\xea\xac\xa7\xec\xbb\xdf\xf9\xbf\xc8\xd8\xb8\xab\x2c\
\xeb\xbf\x64\xc1\xea\xd9\x3d\x6c\x54\xdf\xae\xae\x76\x2f\x54\x7b\
\xe9\xad\xad\xae\xaa\x9d\xf6\x1f\x51\xef\x25\xac\xd8\xda\x1e\xef\
\xe6\xfe\xc9\xff\x00\x18\xb7\x7a\x8f\xf8\xb1\xfa\xbb\x95\x85\xd1\
\xa8\xc0\xea\x98\xb8\x99\x57\xd4\xe0\x6f\x13\x67\xdb\x5c\x05\x47\
\xd5\xc7\xad\xf9\x1f\x99\xef\x77\xe8\x7f\xd3\x24\xa7\xd3\xb0\xea\
\xc7\xa7\x12\x9a\x71\x63\xec\xd5\xd6\xc6\x53\x07\x70\xd8\xd6\x86\
\xd7\x0f\x97\x6f\xf6\x7e\x72\x32\xaf\xd3\xf1\x8e\x26\x06\x36\x21\
\x76\xf3\x8f\x53\x2a\x2f\x02\x01\xd8\xd0\xcd\xdb\x7d\xdb\x77\x6d\
\x56\x12\x53\xff\xd5\xf5\x55\xc0\x7d\x6c\x2e\xea\x1f\x5b\x07\x44\
\xc7\xe8\x58\xbd\x4e\xfb\x30\x9b\x6d\xb9\x77\x16\x0b\x6a\xa5\xd6\
\x3f\x1d\xf6\x57\xeb\x96\x31\xde\x83\xac\xdf\x5b\x5b\xfa\x45\xdf\
\x2e\x1b\xeb\x47\x47\xfa\xe3\xff\x00\x3a\x6d\xea\xdf\x57\xf1\xa8\
\xba\xbb\xfa\x77\xd8\x2c\x7d\xf6\x6d\x8d\xd6\x3a\xdb\x0d\x41\xb6\
\xd3\x63\x6d\x66\xda\xf6\x58\x92\x90\xfd\x54\xe9\xb8\xdd\x3f\xa9\
\xf5\xaf\xaa\x18\x6c\x6d\x17\x61\x62\x06\x7e\xda\xad\xbb\x72\x9e\
\x72\x5b\xf6\x86\x3d\xfb\x7f\xee\x37\xda\x7f\x43\xef\xff\x00\x00\
\xc5\xc7\x7d\x72\xbf\x17\xa4\xf5\xbc\x0a\xee\xea\x77\x7d\x65\xb7\
\xa7\x5b\x67\xda\xf0\xf3\x9a\xed\x8c\xfe\x64\x8a\xb7\x58\xd7\x57\
\x63\x72\x3f\xc2\x6c\xf5\x7f\x9a\x56\x3a\x77\xd4\xbf\xae\xdd\x13\
\xaa\x53\xd7\x7a\x8b\x8b\x31\x30\xec\xab\x27\xa8\xda\xdc\x80\xf7\
\x3b\x1f\x1d\xcd\xba\xed\xed\x6b\xf7\xdf\xb2\x9a\x7f\x9a\x5d\x05\
\xdf\x58\xf3\x2f\xfa\xc9\xd3\x37\x74\xbe\x9b\x6f\x45\xeb\xf7\x91\
\x87\x97\x65\x04\xe4\xd9\x5b\x7d\x36\x59\x65\xbb\xac\xf6\x59\xfa\
\x46\xec\xf5\x29\x49\x4f\x08\xee\xbe\x72\xe8\xca\xea\xae\xea\x97\
\xe0\x75\x2c\x27\xc7\x43\xe9\xf5\x6f\x35\xd7\x4d\xc7\xd3\xc8\xc7\
\xc7\xb9\xad\xd9\x8d\x5e\x3e\x33\xb6\x57\xee\xab\xd9\x5a\xbd\xd0\
\x71\x70\x7e\xbb\xfd\x6b\xc7\xa9\xb8\xf5\xf4\x66\x53\x8c\x1e\xe6\
\xe2\xb4\x10\xfb\x2a\x76\xf3\x73\xf7\x6d\xf7\xdb\xea\x7b\xff\x00\
\xa8\xa8\x7d\x7e\xeb\x2f\xea\x1d\x73\x23\x0b\xec\x98\xb8\xb5\x74\
\xbc\x8c\x8c\x6a\x4e\x35\x7e\x9b\x9e\xc6\xd9\xe9\xb5\xd9\x1e\xe7\
\x35\xef\xfd\x17\xe6\xfa\x6b\x5f\x3b\xaf\x7d\x62\xfa\xb9\xf5\xaf\
\x07\x3f\x37\x0b\xa7\xe2\xe4\xd9\x85\x5d\x4c\xae\x96\x9f\x44\xe3\
\xd8\xf7\xfe\x9d\xfe\x9d\xdf\xcf\xfb\x5e\xdd\xfe\xa6\xcd\x89\x29\
\xbb\xd2\x5d\x5b\x3f\xc6\x5e\x79\x74\x02\x7a\x85\xa0\x4f\x3b\x8b\
\xdd\xe9\xff\x00\xe0\x85\x8b\x7f\xa7\xfd\x58\xae\xdc\x6c\x5c\x9d\
\xee\x22\xea\x2a\x2c\xdd\x0d\x2d\xdc\xcf\x51\xfe\xd7\x86\xb9\xfb\
\x5c\x7d\x9f\x4f\xfd\x2e\xf4\x3c\x4f\xa8\x99\xc7\xeb\x47\x55\xeb\
\x3d\x53\x1f\xd4\xc4\x37\xdb\x76\x16\x3b\x1f\xee\xb4\xb9\xfb\xeb\
\xb6\xcf\x4f\xe8\x36\xaa\xc6\xfa\xe9\x77\xf3\x97\xfa\x6b\x73\x3b\
\x1b\xa8\x60\xd6\xec\x9e\x95\x55\xaf\xa8\x03\x38\x85\xaf\x2f\x05\
\xef\xdc\xe7\xe2\x6f\x6d\x9e\x87\xbd\xdb\xee\xa7\x67\xf5\x3d\x3f\
\x4f\xd1\x4a\xc8\x1a\x68\x42\xea\x04\xf9\xe8\xf0\x9f\x59\x70\x7e\
\xc5\x76\x56\x1b\x5d\xbc\xb6\xb6\x97\x69\x10\x4b\x1b\x6b\x9b\xc7\
\xfd\x3d\x8b\x5f\xea\xbf\xd7\x2c\x6f\xab\x9f\x57\xbe\xad\x63\xe7\
\x6d\xaf\xa7\xe7\x0c\xf3\x91\x92\x43\xdc\xea\xfd\x2b\xee\x34\xec\
\xae\x96\xbd\xce\xf5\x2d\x7f\xa6\xef\x6a\x6f\xad\x9f\x57\xb3\x6b\
\xc4\xa3\x27\x0b\x0f\x2b\x2f\xa8\x1b\x1e\xdc\xab\x1a\xcb\x2d\x36\
\x7a\x8d\x73\xbd\x47\xb7\xe9\x6d\xa5\xed\xf4\xeb\x77\xee\x2c\xba\
\xf1\x3a\xd6\x1d\x5f\x53\x30\x71\x70\xea\x7f\x58\xad\x9d\x49\xed\
\xc0\xcf\x6c\x36\x1e\xfb\x6c\x6f\xda\x29\x73\xaa\x73\x3f\x41\xbe\
\xca\xb7\x7f\x84\x44\xf4\xf2\xa2\x8e\x89\xf3\xfe\xb1\xfd\x4d\xa3\
\x05\xf6\x57\x7b\x3e\xb6\x75\x7b\x32\x41\xa0\xf5\x0a\x2d\x6b\xd9\
\x4b\xcf\xf4\x6a\xee\xba\xa0\xd6\xd5\x4b\xf7\x3e\xb6\x6f\xff\x00\
\x0d\x62\xcb\xea\x3f\x5b\x7a\xaf\x46\xfa\xe3\xd5\xb3\x3a\xb7\x4a\
\xa4\x65\x67\x63\x33\x17\x2b\x01\xf6\x0b\x2b\x0c\x75\x74\x72\xfa\
\xbd\x46\x59\xea\xd3\x5f\xd0\xff\x00\x84\x59\xbf\x59\x3a\xa7\x4a\
\xc4\xc6\x7f\x43\xe8\x8d\x6d\xd8\xd7\x58\x32\xb2\xf2\x6f\xae\x32\
\x2b\xcb\x04\xb2\xec\x6c\x6b\x1a\x29\x63\x70\xeb\x6d\x55\xec\x6f\
\xa5\x67\xd3\xb7\xf4\xcb\x77\xa3\xf4\x5f\xaa\xd5\x74\x1e\x97\xf5\
\xcb\xeb\x36\x6e\x73\xf2\x72\x32\x08\x3a\xb6\xea\xdc\xfa\x2c\xb4\
\x54\xcb\x59\x65\x17\x5a\xfa\x9d\x56\x26\xd7\xee\xb5\x04\x3a\x9d\
\x3b\xa6\x66\xfd\x70\xe8\xd8\x79\xe7\xa4\x53\x83\x83\xd2\x77\xe4\
\x74\x9c\x2a\x5d\x5b\xa9\xcb\x79\x7b\x8d\xd8\x97\xb2\xc7\xfe\xaf\
\x5b\xf2\x31\xfd\x3b\x3d\x46\xff\x00\x86\xb1\x61\xf4\xb6\xfd\x76\
\xcd\xfa\xd6\xfc\x9c\x3e\x9f\xeb\x9f\xab\xd7\xb8\x37\xa5\x9b\xeb\
\x6d\x38\xa2\xd0\xfa\x9b\x8d\x41\x7d\xac\x67\xa7\xfa\x1f\xfb\x4f\
\xec\xfd\x0a\xe8\x19\xd7\x7a\x36\x1d\xdd\x5b\xa9\x66\xe4\x5d\x8b\
\xf5\x7b\xeb\x1d\x4d\xa3\xa4\xbb\x1d\xa4\x39\xa2\x96\x3b\x1b\x39\
\xd4\xe3\xb4\x3b\xec\x8f\x6d\xef\xde\xc7\x3e\xaf\xd2\xff\x00\x3a\
\xb4\x30\xf1\x3a\x7f\xd5\x2f\xaa\x7d\x4b\xeb\x47\x40\xbe\xfc\xeb\
\x33\xea\xa7\x20\x3b\xa8\x90\xfd\xd0\xe7\x06\x39\xfe\x93\x31\xad\
\xdc\xef\xb4\xd9\xbf\x75\x89\x29\xee\x31\x5f\x7b\xf1\xaa\x7e\x45\
\x62\xab\xdc\xc6\x9b\x6a\x04\x38\x35\xe4\x0f\x52\xbd\xc3\xe9\x6c\
\x72\x2a\xad\xd3\x32\x5f\x97\xd3\xb1\x72\xdf\x01\xf9\x14\xd7\x6b\
\x83\x7e\x8c\xbd\xad\x79\xdb\x3b\xbd\xbe\xe5\x65\x25\x3f\xff\xd6\
\xf5\x45\xc1\xff\x00\x8e\x0a\x5d\x97\xd0\x30\x30\xea\x73\x7d\x6b\
\x7a\x8d\x2d\x00\x9e\x37\x57\x93\x58\x7b\xe2\x5c\xda\xf7\x3b\xe9\
\x2e\xf1\x71\x39\xb5\x36\xdf\xf1\x8b\x9f\x53\xac\x6d\x2d\xb3\xea\
\xeb\xda\xeb\x5f\xf4\x5a\x0d\xe1\xbe\xa3\xfe\x8f\xb5\x89\x29\xe2\
\x3e\xb0\x7d\x5a\xfa\xcf\x89\xd2\xfa\x17\xd5\xbc\xbc\x8e\x9f\x66\
\x3b\xb3\x1d\x8f\x84\xea\x1d\x61\x78\xb6\xf7\xee\x71\xca\x7b\xeb\
\x6f\xe8\x9a\xfb\xff\x00\xc1\xd6\xac\x37\xa5\x65\xf4\x8e\x83\xd7\
\xba\x67\x48\xd8\x2f\xc3\xa1\xb5\xfd\x65\x7e\x49\x2e\x63\xff\x00\
\x9c\x7e\x2b\xba\x33\x98\xd0\xef\xe6\xdd\x91\xeb\x7d\xa9\x95\x7f\
\x81\xf4\xd7\x3d\x6f\xd5\x7f\xac\x1d\x2f\xab\xb2\xfe\x87\x55\xdd\
\x5a\xac\x4b\x2b\xbb\x17\xa9\xe1\x50\xfb\xb1\xde\xf6\x6c\xb7\x75\
\x36\x56\xdb\xe9\xb7\xd0\xbf\xf4\x36\x7b\xbf\x9c\xa9\x74\x5d\x67\
\xa9\x7f\x8c\x4c\xce\x91\x56\x30\xcb\x7f\x54\x7e\x75\x6f\x67\x53\
\xe9\xb8\xf8\x6c\x37\x62\x4e\xd1\x5d\x59\xad\xa2\xa7\x5f\x8e\xfc\
\x86\xef\xf4\xbd\x46\x51\xfc\xd5\x9b\x12\x52\x5f\xf1\x3b\xd6\xf1\
\xb0\x33\x2e\xe8\xf9\x35\xda\x32\x3a\xab\x85\x98\xf6\x6d\x1e\x96\
\xda\x6b\xb6\xd7\xfa\x8f\x73\xda\xff\x00\x73\x7e\x86\xca\xde\x8f\
\x92\x3a\x2f\xf8\xc2\xfa\xfb\x55\x76\xd5\x95\x4e\x1d\x38\x2e\xa9\
\xdb\x83\x6a\x79\xb2\x9b\x6c\x76\xe6\x96\xfa\xed\xf4\xb6\xe4\x2b\
\x7f\x59\x5b\xd2\xb0\xbe\xae\xfd\x5d\x7f\x5f\xe8\x19\x5d\x45\x98\
\xbd\x3e\x96\x5b\x6b\x5f\x6d\x2d\xc7\x76\xcc\x7a\x9d\x56\x4f\xa7\
\xb1\xac\xb2\xcb\x3d\x9f\xa5\xd9\xfb\x8b\x37\xea\xb7\xd7\xff\x00\
\xae\xf6\xe5\x3b\x2a\xcc\x2c\xbe\xb1\xd2\x98\x1f\x53\x69\xc5\xc7\
\x6c\x35\xfe\xd7\x54\xd7\x64\x63\xe3\xfd\x2a\xab\x3f\x47\x77\xe7\
\xa4\xa7\x23\x07\x27\xeb\x3f\xd7\x3f\xac\x4f\xcf\xb2\xc6\xe3\x3f\
\x12\x96\xe5\x5c\xc6\x9b\x6a\xad\xd5\x63\x3a\xb0\xe6\xd2\xc6\xfa\
\xdb\xaf\x7e\xff\x00\xea\x2b\x19\x9f\x5a\x7a\xaf\x58\xfa\xd7\x9e\
\x3a\x13\x1f\x56\x3f\xd6\x36\x53\x80\xcf\xb6\x35\xc3\xd3\x0f\x65\
\x58\xee\xb1\xbe\x83\xed\x65\x5e\xf6\xd9\xfa\x46\xfa\xdf\xa3\x5d\
\xa6\x76\x7f\xd6\xef\xaa\xb5\xd7\x97\xd6\xba\xa3\x3a\xb5\x39\xb6\
\x37\x07\x1e\xaa\xe8\xae\x83\x5d\xf6\xcb\xea\xcc\x7b\xd9\x5f\xe9\
\x19\x53\x69\xb1\xbe\x8f\xe7\xfa\x8b\x9b\xce\xfa\xcf\xf5\xfb\x0b\
\xeb\x83\x3e\xab\x3b\xad\x31\xf6\x3a\xea\x28\xfb\x50\xc5\xa0\x09\
\xbd\xb5\x59\xbf\xd2\xf4\xbf\x33\xd6\xfd\xf4\x94\x9b\xa8\xfa\x19\
\xf8\x78\xd8\xf9\x36\xe4\x8c\x7f\xa9\x75\x9c\x5e\xbb\xf6\x77\x16\
\xdb\x73\xec\x0c\xc7\xa9\xdd\x35\xdf\xe1\xeb\x6e\x46\x2b\xfd\x4f\
\xb5\xfd\x97\xf4\x2b\x9b\xeb\xcd\xea\x5f\x58\xfa\x5d\xfd\x71\x8f\
\xaa\xbe\x97\xd0\x0b\x3a\x7e\x3d\x76\x97\x0c\xb7\x55\xbd\xac\xc6\
\x75\xed\xfd\x2d\x76\x64\x6c\xb5\x9e\xbb\xfd\x5a\xff\x00\xc2\xae\
\xe3\xa5\x62\x37\xa1\x7e\xde\xf5\x3e\xb5\xf4\xda\xfa\xdf\x53\xb2\
\xb7\x1b\xdc\xea\x5a\x6a\xb6\xb7\xda\x72\x3d\x5c\x5b\x2c\xd9\xb9\
\xde\xab\xd9\xb3\xd3\xfd\x1a\x6f\xab\x7f\x56\x7e\xa6\xfd\x69\x39\
\xf9\x39\x78\x23\x23\x33\x1b\x29\xd4\xe5\x67\x57\x91\x6f\xa7\x95\
\x77\xd3\xbf\x3e\x96\x53\x6b\x2a\xaa\xac\xab\x5c\xfb\xab\xaa\xbf\
\xd1\xfe\xe2\x4a\x71\x3e\xb6\x7e\xc7\xfa\xbb\xf5\x6a\xaf\xab\x5d\
\x2e\xbc\x9b\x72\x32\xdf\x47\x55\xf5\x1c\x1b\x6d\x40\xb8\x7a\x4e\
\xac\xd8\xc2\xc7\xb7\xfa\x36\xed\x9e\x8f\xf6\xd6\x67\x4d\xea\xdf\
\x5a\x7a\xdf\x54\xeb\xdd\x52\xa6\x62\xd3\x91\x93\xd3\x6c\x6e\x63\
\x6d\x6d\xad\x69\xa1\x8c\xae\x97\x37\x0d\xad\xf5\x1d\xf6\xa7\x36\
\xb6\xfa\x7e\xa3\xb6\x2e\xb3\xa1\xe1\xf5\x31\x73\xf0\x7e\xad\xe4\
\xb7\xea\x9d\x62\xd7\x39\xdd\x1b\x35\x82\xfc\x8b\xcb\x76\xb5\xfd\
\x4e\x9f\xb6\xfe\xb5\xf6\x6b\xe9\x6d\x74\x7e\x8f\xf4\x1b\xf1\xad\
\x54\x7f\xc6\xb7\x50\xea\x58\x99\x94\xdd\x4f\x59\xc7\xb1\xb8\x99\
\x94\x5d\x8d\xd2\x9a\xda\x8d\xf8\xf6\xb2\xaf\x51\x99\x57\x7d\x2b\
\x9f\x5b\x9f\xef\xd9\x77\xe8\xbf\x4f\x52\x4a\x72\xf0\xba\x5f\xd6\
\xab\xbe\xab\x74\x8e\xb1\x5d\xbd\x3d\x98\x7f\x57\xfd\x6c\xec\x3a\
\x2c\x36\x8c\x87\x6c\xb1\xd7\xd8\xcb\xab\xd9\xb2\xcd\xf6\x51\xfa\
\x16\xb2\xca\x96\xab\x7e\xb8\x62\x7d\x66\xc8\xe9\x02\x9a\xef\xa7\
\xeb\x4e\x00\x73\x68\xb6\xe6\x36\xbc\x16\xdf\x6b\x5b\xf6\x9f\xb5\
\x6d\xb2\xec\x8f\x4b\x65\x0f\xf4\x76\xb1\x56\xfa\xad\x99\xd0\x3e\
\xb5\x5b\x6e\x57\x52\x35\xe2\xfd\x6e\xac\x56\x71\x7a\xa5\xd7\x6c\
\x16\xe5\xcb\x99\x80\xfa\x3a\x7b\x5d\x56\x35\x9f\x66\xf4\x71\x1b\
\xe8\xb6\x87\xfa\xdf\x9f\x57\xef\xed\xe7\xf4\x2a\x6a\xc2\xca\xb7\
\x0e\xf6\x75\x8c\x88\x07\xeb\x5f\x4e\xc4\x76\xfb\xb3\x6e\x0e\xfd\
\x5d\xbb\x69\x36\x5b\xd3\x3d\x3b\xfe\xd3\x66\xcc\x66\x51\xff\x00\
\x17\xfa\x34\x94\xf7\xd8\x9e\xbf\xd9\x69\xfb\x49\x61\xc8\xd8\xdf\
\x58\xd7\x3b\x0b\xe0\x7a\x9e\x9e\xef\x77\xa7\xbf\xe8\x22\xaa\xdd\
\x35\xac\x67\x4e\xc5\x6d\x75\x3b\x1d\x8d\xa6\xb0\xda\x1f\x3b\xab\
\x01\xad\xdb\x53\xf7\x7b\xb7\xd7\xf4\x1c\xac\xa4\xa7\xff\xd7\xf5\
\x45\xc5\x7d\x62\xeb\x8e\xc2\xfa\xd5\x66\x16\x07\xd5\xdf\xdb\x1d\
\x42\xde\x9e\x0d\xd7\x36\xef\x4d\xe7\x19\xd6\x16\x3e\x87\x56\xea\
\x6d\xfd\x1f\xab\xb3\xf3\x97\x6a\xb8\x6e\xa4\xf7\xd7\xfe\x30\x7a\
\x95\x8c\x71\x63\xd9\xf5\x72\xc7\x35\xed\x30\x41\x17\x02\x1c\xd7\
\x0f\xa3\xb5\x25\x30\xc0\xfa\xc9\xf5\x9b\xa6\xe2\x57\x85\x83\xf5\
\x26\xec\x7c\x6a\xa7\xd3\xa9\x99\x22\x06\xe2\x6c\x77\xfd\xa7\xfc\
\xe7\xbd\xce\x45\xfa\xbb\x9e\xff\x00\xac\x16\x7d\x63\xc4\xa3\xa7\
\x9f\xab\x5d\x63\xf4\x2c\xca\xc9\x65\x9e\xbd\x86\xc7\x8b\xbd\x3b\
\x1c\xd0\xcc\x6f\x75\x2d\x67\xe6\xbf\xfc\x2a\xf3\x5f\xab\x1f\x59\
\xfe\xb2\x5f\xf5\x93\xa4\xd3\x77\x56\xcd\xb6\xab\x73\x71\xd9\x65\
\x6f\xc8\xb5\xcd\x73\x5d\x6d\x6d\x7b\x1e\xc7\x59\xb5\xcc\x73\x57\
\x68\x72\x2f\xc6\xc9\xff\x00\x18\xb7\xe3\xd8\xfa\x6e\xad\xb8\xee\
\xae\xda\xdc\x58\xf6\x90\xcc\x88\x73\x1e\xc8\x73\x5c\x92\x93\x75\
\x4e\x93\xd5\xda\xf6\x7d\x49\xea\x7d\x5a\xce\xa4\xef\xac\x60\xd9\
\x5f\x50\xb5\x9b\x7e\xcc\x30\xe3\x31\xcd\x6e\x2f\xa8\xff\x00\xb4\
\x7d\xa7\xd2\xf4\xff\x00\xa4\x63\xfa\x5f\xce\x7e\x91\x5c\xff\x00\
\x15\xd4\x9e\x87\x87\x91\xf5\x7f\xa9\x4e\x37\x53\xb7\x26\xdc\xaa\
\x71\xac\x10\xf7\xe3\xec\xa2\x86\xe4\x80\x37\x37\x63\xac\xa6\xcf\
\xcf\x58\xd8\x7f\xf8\xe1\x67\x5f\xf5\x7b\xae\xb3\xa2\xb7\x2b\xf6\
\x6e\x21\x14\xda\xfc\xaa\xb7\x64\x36\xfa\x7d\x21\x93\x71\xb6\xef\
\x55\x8f\x7b\x1d\xeb\x7b\xbd\xfb\xd1\xfa\xf7\xf8\xbd\xfa\xcd\x55\
\x43\xab\x74\x8e\xab\x9f\x9b\xd6\x8e\xda\xc3\x5d\x78\xad\xcc\xa5\
\xc5\xd6\x5b\x53\x72\xac\xbd\x9f\xa2\xae\xc3\xfc\xdb\x6d\x49\x4f\
\x3d\xd1\x3a\x87\xd7\x3e\xa3\x88\xfc\xfe\xa1\x83\x91\xf5\x87\xa6\
\xb6\xbb\x3e\xcf\xea\xd8\x1a\xca\x6f\xaf\xe8\xe7\x30\xb9\xb6\x6e\
\xb7\x1d\x9e\xab\x3f\xeb\x8a\x8f\x48\xe9\x99\xdd\x53\x29\x9f\x59\
\x7a\xf7\x57\x77\x48\x16\x96\xbf\x0f\xaa\xdd\x5f\xab\xea\xdb\x49\
\xf4\x76\x33\x6d\x95\x7b\xe9\xf4\x3f\xf0\x35\xda\xf4\xec\x5f\xab\
\x5f\x53\x3a\x85\xfd\x17\x2f\xeb\x16\x53\x8e\x4d\x0e\xa1\x9d\x3e\
\xca\xed\x75\x4c\x76\x41\x61\x66\x45\x62\xa6\x59\x8d\xea\xe9\xff\
\x00\x82\x23\xfd\x66\xfa\x87\x8d\x8f\xf5\x09\x98\x1f\x6b\x7b\x9b\
\xd0\xab\xc9\xcb\xad\xfb\x00\x36\x38\xfa\xd9\x1e\x9b\xdb\xbb\xd8\
\xdd\xd6\x6d\x49\x4e\x0f\x4c\xfa\xa3\x46\x4f\x4e\xfa\xc9\x99\xf5\
\x82\xf6\xb6\x8c\x87\xd3\x66\x0f\xd6\x0b\xea\x9d\xed\x73\xec\x73\
\xf2\xe8\xac\x59\xbb\xf5\x9d\xd4\x7f\x84\xff\x00\x0a\xa3\xd0\x3a\
\xaf\x5a\xc6\xea\x34\xbf\xea\xaf\x4b\xb3\x33\xa4\x74\xad\xd8\x99\
\x83\x1a\xc1\x5d\x79\xd6\xb5\x8e\xa5\x9d\x46\xd6\x9a\xdd\xe8\xd9\
\x6b\x7d\x2c\x9f\x4f\xf5\x8f\xf8\xd5\x1e\x91\xd7\x1f\xd3\x7e\xab\
\xd9\x6e\x0b\x8f\xd6\x7c\x26\x51\x47\xed\x8c\x3c\xf2\xe1\x4e\x09\
\x1a\x63\x63\xe3\x53\x95\xec\xbd\x96\xda\xeb\x19\xfa\xb3\x2d\xfe\
\x89\x57\xfc\x1a\xad\xd3\xa9\xc7\xc1\x65\xb9\x7d\x63\xad\xe5\x7d\
\x54\x1d\x59\xe7\x3f\x07\x07\x00\xd8\xea\x5d\x8f\x77\xbe\xab\x1a\
\xdc\x0d\xec\xaf\x6f\xf3\x2c\xae\xdf\x4e\xcf\x4e\xaf\xa0\x92\x9e\
\x83\x33\x0b\xa8\xdf\xf5\x72\xfe\xaf\xd0\xf3\xec\xeb\x3d\x79\x99\
\x5e\x90\xce\xa9\xbb\x6e\xc7\xa4\x86\xdb\x77\x4d\xdc\xe7\xbb\x75\
\x54\x3e\xcd\xff\x00\xf5\xe5\xcd\x7d\x42\x1f\xf3\x87\xad\x75\x6c\
\xce\xb3\x8c\x3a\xde\x55\x78\x0e\xba\xba\x6e\x8d\xd6\x59\x51\xa5\
\x94\xd6\xd7\xc7\xb1\xef\x6b\x7d\x1d\xeb\x5b\xea\xf5\xb8\x59\x17\
\xbf\xea\x87\xd5\xce\xab\x7d\xf8\xd9\x25\xfd\x4a\xde\xa8\xc1\x65\
\x17\xfa\xcd\x02\xbb\x30\x8b\x2c\xf4\x77\xd5\x6d\x75\x54\xf7\xd9\
\xff\x00\x0a\xb9\x8e\xad\x97\xd4\x3a\x7f\xd7\x1b\x1b\x6b\x4f\xd5\
\x53\x6b\xa8\xaf\x32\xae\x9e\xf8\x6d\x34\xb9\xb4\x9b\x1e\xdf\xb0\
\x9d\xb6\xfb\x3f\x59\xf4\x99\xfe\x13\xf9\x69\x29\xd8\xfa\xf7\x8d\
\x4f\x4c\xe9\xbd\x03\xab\x60\xf4\xa6\xfd\x5e\xea\x36\x5b\x7d\x8f\
\xa1\x87\x75\x8c\x75\x4e\xaf\xec\xee\x75\x9b\x59\xbb\x8f\x59\xbe\
\xcf\x67\xa8\xba\xbf\xa9\xbf\x55\x7a\x93\xbe\xaf\x67\x75\x16\xf5\
\x8b\x19\x9f\xf5\x96\xaa\x2f\x39\x42\xa8\x7d\x0f\x1e\xa5\xaf\xf7\
\x0b\xbf\x4d\xbf\xd7\xd9\xbb\xf4\x0b\x8d\xc5\xca\xfa\xb1\x95\xf5\
\x81\xee\xeb\x9f\x59\x32\xb3\xfa\x5f\x4e\xb6\x8b\x7a\x79\xcb\xae\
\xec\x86\xde\x08\x6d\x99\x75\x5b\x4d\xac\xb7\xd2\x66\xe6\x7a\x0f\
\xfd\x17\xe9\x96\x97\xd6\xbc\x3e\xb3\x56\x5f\x4a\x77\xd5\x2e\xaf\
\x9b\x6e\x3f\x5f\x37\x59\x83\x85\x55\xcf\xc6\xa6\xaa\xeb\x15\x59\
\x55\x38\xd5\xba\xca\x2b\xa6\xa6\xd7\x6f\xb5\x8f\x6d\x5f\x41\x25\
\x3e\xb5\x8b\x55\x94\xe3\x55\x55\xb6\x1b\xac\xad\x8d\x6b\xee\x22\
\x0b\xdc\xd0\x1a\xeb\x0b\x75\xdb\xbd\xde\xe4\x55\x5b\xa6\x33\x22\
\xbe\x9d\x8a\xcc\xa9\xfb\x4b\x29\xad\xb7\x6e\x76\xe7\x6f\x0d\x68\
\xb3\x73\xe5\xdb\xdd\xbf\xf3\xf7\x2b\x29\x29\xff\xd0\xf5\x45\xc7\
\xf5\xce\x89\xf5\xac\x7d\x6b\x77\x5d\xe8\x4d\xc1\xb1\x96\x60\x8c\
\x1b\x19\x9c\x6c\x82\x0d\x86\xfb\x3f\x47\x46\xdf\xdd\xaf\xf3\xd7\
\x60\x92\x4a\x78\x5a\xfa\x67\xd7\xfa\xdc\xd7\xd7\xd2\xfe\xae\x31\
\xd5\x90\xe6\x39\xb5\x5c\x0b\x4b\x75\x6b\x9a\x41\xf6\xed\x57\x7e\
\xa9\x7d\x5c\xeb\x58\xb9\xfd\x73\x3b\xeb\x0b\x31\x1e\xee\xb2\x68\
\x2e\xab\x1f\x73\xea\x3e\x98\xb9\x96\xb5\xd5\xe4\x0f\xa2\xef\x51\
\x9f\xe9\x17\x5a\x92\x4a\x79\x1c\xaf\xf1\x6b\xd3\x32\x72\x6e\xbc\
\x75\x4e\xa9\x43\x6e\x7b\x9f\xe8\x53\x90\xc6\x54\xc0\xe2\x5d\xe8\
\xd1\x57\xa0\x7d\x3a\x6b\x9d\x95\xd7\xfb\x8b\x70\x74\x2a\x07\x58\
\xa3\xab\xfd\xa3\x20\xdb\x46\x37\xd9\x05\x05\xe3\xd1\x73\x41\x73\
\xfd\x5b\x6b\xd9\xb9\xd9\x1e\xef\xe7\x37\xad\x24\x92\x53\xe7\x5f\
\x51\xfe\xa0\x75\xce\x95\xd7\x6d\xea\x3f\x58\x5d\x46\x75\x6f\xc6\
\x35\x56\x5c\xf7\x5e\xf1\x60\x7d\x16\x54\xef\xd3\xd7\xed\xf4\xd9\
\x4b\xf6\xae\x93\xac\x7d\x56\xfb\x4b\x7a\xde\x56\x2e\x45\xce\xcc\
\xea\xf8\x6e\xc5\x18\xf6\xd8\x3e\xcc\xc3\xe9\x8a\x6b\x75\x75\x86\
\x6f\xaf\xe8\x7b\xfd\xcf\xff\x00\x08\xba\x14\xe9\x29\xe1\x7f\xc5\
\xdf\xd4\x7e\xa1\xf5\x7a\x9e\xa7\x47\x59\x6e\x3e\x45\x59\xde\x88\
\x6d\x6c\x26\xc6\x91\x5f\xad\xbf\xd5\x65\xb5\xb1\xbf\xe1\x58\xac\
\xfd\x62\xfa\xb9\xd6\xba\xef\x40\xea\x9d\x3e\xec\x6c\x0a\xf2\x7d\
\x56\xd7\xd2\x2c\xac\x16\x96\xe2\xb2\xda\xed\x63\x6e\xb1\xe2\xcf\
\x4a\xcf\x46\xbf\xa3\x47\xe8\x97\x62\x92\x4a\x79\x3c\xef\xaa\x99\
\x39\xb9\x18\xb8\x4d\xae\x8c\x1e\x98\xca\x18\xeb\xf2\xf0\xff\x00\
\x45\x9b\xf6\x86\x4f\xe8\xeb\xb7\x63\xab\xfb\x23\xdb\xe9\xee\xfd\
\x1e\xf5\x6f\x2b\xea\x47\x47\xcb\xea\xbd\x4b\xaa\xde\xeb\x5f\x7f\
\x55\xc6\x38\xb7\x34\xfa\x65\x95\xb4\xb2\xba\x7d\x5c\x60\xfa\x5c\
\xfa\xef\x6b\x69\xfa\x6f\x7d\x8b\xa1\x4c\x92\x9f\x32\xea\x3f\xe2\
\xf3\xeb\x0d\x59\x1d\x3f\x1f\xa3\xd7\x80\xfe\x9d\xd1\xae\xf5\xb0\
\xac\xcb\x2e\xf5\xee\xdc\x59\x91\x63\x3a\x8f\xa3\x5b\x6b\xba\xb6\
\xdd\xb9\x8c\xf4\xd9\x57\xe8\x57\x62\xcf\xab\x8d\xcc\x77\x44\xea\
\x1d\x48\x0c\x7c\xfe\x8c\xd7\x16\x51\x87\x0d\xc6\xdf\x6b\x58\xcb\
\x58\x19\x63\x1f\x67\xa2\xdf\x4f\xf4\x5b\x5f\x5a\xdd\x49\x25\x2c\
\x9d\x24\x92\x53\xff\xd9\xff\xed\x29\xfa\x50\x68\x6f\x74\x6f\x73\
\x68\x6f\x70\x20\x33\x2e\x30\x00\x38\x42\x49\x4d\x04\x25\x00\x00\
\x00\x00\x00\x10\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x38\x42\x49\x4d\x04\x3a\x00\x00\x00\x00\x00\xd7\
\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0b\x70\x72\
\x69\x6e\x74\x4f\x75\x74\x70\x75\x74\x00\x00\x00\x05\x00\x00\x00\
\x00\x50\x73\x74\x53\x62\x6f\x6f\x6c\x01\x00\x00\x00\x00\x49\x6e\
\x74\x65\x65\x6e\x75\x6d\x00\x00\x00\x00\x49\x6e\x74\x65\x00\x00\
\x00\x00\x49\x6d\x67\x20\x00\x00\x00\x0f\x70\x72\x69\x6e\x74\x53\
\x69\x78\x74\x65\x65\x6e\x42\x69\x74\x62\x6f\x6f\x6c\x00\x00\x00\
\x00\x0b\x70\x72\x69\x6e\x74\x65\x72\x4e\x61\x6d\x65\x54\x45\x58\
\x54\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0f\x70\x72\x69\x6e\x74\
\x50\x72\x6f\x6f\x66\x53\x65\x74\x75\x70\x4f\x62\x6a\x63\x00\x00\
\x00\x05\x68\x21\x68\x37\x8b\xbe\x7f\x6e\x00\x00\x00\x00\x00\x0a\
\x70\x72\x6f\x6f\x66\x53\x65\x74\x75\x70\x00\x00\x00\x01\x00\x00\
\x00\x00\x42\x6c\x74\x6e\x65\x6e\x75\x6d\x00\x00\x00\x0c\x62\x75\
\x69\x6c\x74\x69\x6e\x50\x72\x6f\x6f\x66\x00\x00\x00\x09\x70\x72\
\x6f\x6f\x66\x43\x4d\x59\x4b\x00\x38\x42\x49\x4d\x04\x3b\x00\x00\
\x00\x00\x02\x2d\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x12\x70\x72\x69\x6e\x74\x4f\x75\x74\x70\x75\x74\x4f\x70\x74\
\x69\x6f\x6e\x73\x00\x00\x00\x17\x00\x00\x00\x00\x43\x70\x74\x6e\
\x62\x6f\x6f\x6c\x00\x00\x00\x00\x00\x43\x6c\x62\x72\x62\x6f\x6f\
\x6c\x00\x00\x00\x00\x00\x52\x67\x73\x4d\x62\x6f\x6f\x6c\x00\x00\
\x00\x00\x00\x43\x72\x6e\x43\x62\x6f\x6f\x6c\x00\x00\x00\x00\x00\
\x43\x6e\x74\x43\x62\x6f\x6f\x6c\x00\x00\x00\x00\x00\x4c\x62\x6c\
\x73\x62\x6f\x6f\x6c\x00\x00\x00\x00\x00\x4e\x67\x74\x76\x62\x6f\
\x6f\x6c\x00\x00\x00\x00\x00\x45\x6d\x6c\x44\x62\x6f\x6f\x6c\x00\
\x00\x00\x00\x00\x49\x6e\x74\x72\x62\x6f\x6f\x6c\x00\x00\x00\x00\
\x00\x42\x63\x6b\x67\x4f\x62\x6a\x63\x00\x00\x00\x01\x00\x00\x00\
\x00\x00\x00\x52\x47\x42\x43\x00\x00\x00\x03\x00\x00\x00\x00\x52\
\x64\x20\x20\x64\x6f\x75\x62\x40\x6f\xe0\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x47\x72\x6e\x20\x64\x6f\x75\x62\x40\x6f\xe0\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x42\x6c\x20\x20\x64\x6f\x75\x62\x40\
\x6f\xe0\x00\x00\x00\x00\x00\x00\x00\x00\x00\x42\x72\x64\x54\x55\
\x6e\x74\x46\x23\x52\x6c\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x42\x6c\x64\x20\x55\x6e\x74\x46\x23\x52\x6c\x74\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x52\x73\x6c\x74\x55\
\x6e\x74\x46\x23\x50\x78\x6c\x40\x52\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x0a\x76\x65\x63\x74\x6f\x72\x44\x61\x74\x61\x62\x6f\x6f\
\x6c\x01\x00\x00\x00\x00\x50\x67\x50\x73\x65\x6e\x75\x6d\x00\x00\
\x00\x00\x50\x67\x50\x73\x00\x00\x00\x00\x50\x67\x50\x43\x00\x00\
\x00\x00\x4c\x65\x66\x74\x55\x6e\x74\x46\x23\x52\x6c\x74\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x54\x6f\x70\x20\x55\x6e\
\x74\x46\x23\x52\x6c\x74\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x53\x63\x6c\x20\x55\x6e\x74\x46\x23\x50\x72\x63\x40\x59\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x63\x72\x6f\x70\x57\x68\
\x65\x6e\x50\x72\x69\x6e\x74\x69\x6e\x67\x62\x6f\x6f\x6c\x00\x00\
\x00\x00\x0e\x63\x72\x6f\x70\x52\x65\x63\x74\x42\x6f\x74\x74\x6f\
\x6d\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x0c\x63\x72\x6f\
\x70\x52\x65\x63\x74\x4c\x65\x66\x74\x6c\x6f\x6e\x67\x00\x00\x00\
\x00\x00\x00\x00\x0d\x63\x72\x6f\x70\x52\x65\x63\x74\x52\x69\x67\
\x68\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x0b\x63\x72\
\x6f\x70\x52\x65\x63\x74\x54\x6f\x70\x6c\x6f\x6e\x67\x00\x00\x00\
\x00\x00\x38\x42\x49\x4d\x03\xed\x00\x00\x00\x00\x00\x10\x00\x48\
\x00\x00\x00\x01\x00\x01\x00\x48\x00\x00\x00\x01\x00\x01\x38\x42\
\x49\x4d\x04\x26\x00\x00\x00\x00\x00\x0e\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x3f\x80\x00\x00\x38\x42\x49\x4d\x04\x0d\x00\x00\
\x00\x00\x00\x04\x00\x00\x00\x1e\x38\x42\x49\x4d\x04\x19\x00\x00\
\x00\x00\x00\x04\x00\x00\x00\x1e\x38\x42\x49\x4d\x03\xf3\x00\x00\
\x00\x00\x00\x09\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x38\x42\
\x49\x4d\x27\x10\x00\x00\x00\x00\x00\x0a\x00\x01\x00\x00\x00\x00\
\x00\x00\x00\x01\x38\x42\x49\x4d\x03\xf5\x00\x00\x00\x00\x00\x48\
\x00\x2f\x66\x66\x00\x01\x00\x6c\x66\x66\x00\x06\x00\x00\x00\x00\
\x00\x01\x00\x2f\x66\x66\x00\x01\x00\xa1\x99\x9a\x00\x06\x00\x00\
\x00\x00\x00\x01\x00\x32\x00\x00\x00\x01\x00\x5a\x00\x00\x00\x06\
\x00\x00\x00\x00\x00\x01\x00\x35\x00\x00\x00\x01\x00\x2d\x00\x00\
\x00\x06\x00\x00\x00\x00\x00\x01\x38\x42\x49\x4d\x03\xf8\x00\x00\
\x00\x00\x00\x70\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\
\x00\x00\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\x03\xe8\x00\x00\x00\x00\xff\xff\xff\xff\xff\xff\
\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\
\x03\xe8\x00\x00\x38\x42\x49\x4d\x04\x00\x00\x00\x00\x00\x00\x02\
\x00\x04\x38\x42\x49\x4d\x04\x02\x00\x00\x00\x00\x00\x0a\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x38\x42\x49\x4d\x04\x30\x00\x00\
\x00\x00\x00\x05\x01\x01\x01\x01\x01\x00\x38\x42\x49\x4d\x04\x2d\
\x00\x00\x00\x00\x00\x06\x00\x01\x00\x00\x00\x07\x38\x42\x49\x4d\
\x04\x08\x00\x00\x00\x00\x00\x10\x00\x00\x00\x01\x00\x00\x02\x40\
\x00\x00\x02\x40\x00\x00\x00\x00\x38\x42\x49\x4d\x04\x1e\x00\x00\
\x00\x00\x00\x04\x00\x00\x00\x00\x38\x42\x49\x4d\x04\x1a\x00\x00\
\x00\x00\x03\x3b\x00\x00\x00\x06\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x01\xfc\x00\x00\x01\x86\x00\x00\x00\x03\x65\x2f\x4e\xd8\
\x5b\x9d\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x01\x86\x00\x00\x01\xfc\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x10\x00\
\x00\x00\x01\x00\x00\x00\x00\x00\x00\x6e\x75\x6c\x6c\x00\x00\x00\
\x02\x00\x00\x00\x06\x62\x6f\x75\x6e\x64\x73\x4f\x62\x6a\x63\x00\
\x00\x00\x01\x00\x00\x00\x00\x00\x00\x52\x63\x74\x31\x00\x00\x00\
\x04\x00\x00\x00\x00\x54\x6f\x70\x20\x6c\x6f\x6e\x67\x00\x00\x00\
\x00\x00\x00\x00\x00\x4c\x65\x66\x74\x6c\x6f\x6e\x67\x00\x00\x00\
\x00\x00\x00\x00\x00\x42\x74\x6f\x6d\x6c\x6f\x6e\x67\x00\x00\x01\
\xfc\x00\x00\x00\x00\x52\x67\x68\x74\x6c\x6f\x6e\x67\x00\x00\x01\
\x86\x00\x00\x00\x06\x73\x6c\x69\x63\x65\x73\x56\x6c\x4c\x73\x00\
\x00\x00\x01\x4f\x62\x6a\x63\x00\x00\x00\x01\x00\x00\x00\x00\x00\
\x05\x73\x6c\x69\x63\x65\x00\x00\x00\x12\x00\x00\x00\x07\x73\x6c\
\x69\x63\x65\x49\x44\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\
\x07\x67\x72\x6f\x75\x70\x49\x44\x6c\x6f\x6e\x67\x00\x00\x00\x00\
\x00\x00\x00\x06\x6f\x72\x69\x67\x69\x6e\x65\x6e\x75\x6d\x00\x00\
\x00\x0c\x45\x53\x6c\x69\x63\x65\x4f\x72\x69\x67\x69\x6e\x00\x00\
\x00\x0d\x61\x75\x74\x6f\x47\x65\x6e\x65\x72\x61\x74\x65\x64\x00\
\x00\x00\x00\x54\x79\x70\x65\x65\x6e\x75\x6d\x00\x00\x00\x0a\x45\
\x53\x6c\x69\x63\x65\x54\x79\x70\x65\x00\x00\x00\x00\x49\x6d\x67\
\x20\x00\x00\x00\x06\x62\x6f\x75\x6e\x64\x73\x4f\x62\x6a\x63\x00\
\x00\x00\x01\x00\x00\x00\x00\x00\x00\x52\x63\x74\x31\x00\x00\x00\
\x04\x00\x00\x00\x00\x54\x6f\x70\x20\x6c\x6f\x6e\x67\x00\x00\x00\
\x00\x00\x00\x00\x00\x4c\x65\x66\x74\x6c\x6f\x6e\x67\x00\x00\x00\
\x00\x00\x00\x00\x00\x42\x74\x6f\x6d\x6c\x6f\x6e\x67\x00\x00\x01\
\xfc\x00\x00\x00\x00\x52\x67\x68\x74\x6c\x6f\x6e\x67\x00\x00\x01\
\x86\x00\x00\x00\x03\x75\x72\x6c\x54\x45\x58\x54\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x6e\x75\x6c\x6c\x54\x45\x58\x54\x00\x00\
\x00\x01\x00\x00\x00\x00\x00\x00\x4d\x73\x67\x65\x54\x45\x58\x54\
\x00\x00\x00\x01\x00\x00\x00\x00\x00\x06\x61\x6c\x74\x54\x61\x67\
\x54\x45\x58\x54\x00\x00\x00\x01\x00\x00\x00\x00\x00\x0e\x63\x65\
\x6c\x6c\x54\x65\x78\x74\x49\x73\x48\x54\x4d\x4c\x62\x6f\x6f\x6c\
\x01\x00\x00\x00\x08\x63\x65\x6c\x6c\x54\x65\x78\x74\x54\x45\x58\
\x54\x00\x00\x00\x01\x00\x00\x00\x00\x00\x09\x68\x6f\x72\x7a\x41\
\x6c\x69\x67\x6e\x65\x6e\x75\x6d\x00\x00\x00\x0f\x45\x53\x6c\x69\
\x63\x65\x48\x6f\x72\x7a\x41\x6c\x69\x67\x6e\x00\x00\x00\x07\x64\
\x65\x66\x61\x75\x6c\x74\x00\x00\x00\x09\x76\x65\x72\x74\x41\x6c\
\x69\x67\x6e\x65\x6e\x75\x6d\x00\x00\x00\x0f\x45\x53\x6c\x69\x63\
\x65\x56\x65\x72\x74\x41\x6c\x69\x67\x6e\x00\x00\x00\x07\x64\x65\
\x66\x61\x75\x6c\x74\x00\x00\x00\x0b\x62\x67\x43\x6f\x6c\x6f\x72\
\x54\x79\x70\x65\x65\x6e\x75\x6d\x00\x00\x00\x11\x45\x53\x6c\x69\
\x63\x65\x42\x47\x43\x6f\x6c\x6f\x72\x54\x79\x70\x65\x00\x00\x00\
\x00\x4e\x6f\x6e\x65\x00\x00\x00\x09\x74\x6f\x70\x4f\x75\x74\x73\
\x65\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x0a\x6c\x65\
\x66\x74\x4f\x75\x74\x73\x65\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\
\x00\x00\x00\x0c\x62\x6f\x74\x74\x6f\x6d\x4f\x75\x74\x73\x65\x74\
\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\x00\x00\x0b\x72\x69\x67\x68\
\x74\x4f\x75\x74\x73\x65\x74\x6c\x6f\x6e\x67\x00\x00\x00\x00\x00\
\x38\x42\x49\x4d\x04\x28\x00\x00\x00\x00\x00\x0c\x00\x00\x00\x02\
\x3f\xf0\x00\x00\x00\x00\x00\x00\x38\x42\x49\x4d\x04\x14\x00\x00\
\x00\x00\x00\x04\x00\x00\x00\x08\x38\x42\x49\x4d\x04\x0c\x00\x00\
\x00\x00\x20\xf9\x00\x00\x00\x01\x00\x00\x00\x7b\x00\x00\x00\xa0\
\x00\x00\x01\x74\x00\x00\xe8\x80\x00\x00\x20\xdd\x00\x18\x00\x01\
\xff\xd8\xff\xed\x00\x0c\x41\x64\x6f\x62\x65\x5f\x43\x4d\x00\x01\
\xff\xee\x00\x0e\x41\x64\x6f\x62\x65\x00\x64\x80\x00\x00\x00\x01\
\xff\xdb\x00\x84\x00\x0c\x08\x08\x08\x09\x08\x0c\x09\x09\x0c\x11\
\x0b\x0a\x0b\x11\x15\x0f\x0c\x0c\x0f\x15\x18\x13\x13\x15\x13\x13\
\x18\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x01\x0d\x0b\x0b\x0d\x0e\x0d\x10\x0e\x0e\x10\
\x14\x0e\x0e\x0e\x14\x14\x0e\x0e\x0e\x0e\x14\x11\x0c\x0c\x0c\x0c\
\x0c\x11\x11\x0c\x0c\x0c\x0c\x0c\x0c\x11\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\x0c\
\x0c\x0c\x0c\x0c\x0c\x0c\xff\xc0\x00\x11\x08\x00\xa0\x00\x7b\x03\
\x01\x22\x00\x02\x11\x01\x03\x11\x01\xff\xdd\x00\x04\x00\x08\xff\
\xc4\x01\x3f\x00\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\
\x00\x00\x00\x00\x03\x00\x01\x02\x04\x05\x06\x07\x08\x09\x0a\x0b\
\x01\x00\x01\x05\x01\x01\x01\x01\x01\x01\x00\x00\x00\x00\x00\x00\
\x00\x01\x00\x02\x03\x04\x05\x06\x07\x08\x09\x0a\x0b\x10\x00\x01\
\x04\x01\x03\x02\x04\x02\x05\x07\x06\x08\x05\x03\x0c\x33\x01\x00\
\x02\x11\x03\x04\x21\x12\x31\x05\x41\x51\x61\x13\x22\x71\x81\x32\
\x06\x14\x91\xa1\xb1\x42\x23\x24\x15\x52\xc1\x62\x33\x34\x72\x82\
\xd1\x43\x07\x25\x92\x53\xf0\xe1\xf1\x63\x73\x35\x16\xa2\xb2\x83\
\x26\x44\x93\x54\x64\x45\xc2\xa3\x74\x36\x17\xd2\x55\xe2\x65\xf2\
\xb3\x84\xc3\xd3\x75\xe3\xf3\x46\x27\x94\xa4\x85\xb4\x95\xc4\xd4\
\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5\x56\x66\x76\x86\x96\xa6\xb6\xc6\
\xd6\xe6\xf6\x37\x47\x57\x67\x77\x87\x97\xa7\xb7\xc7\xd7\xe7\xf7\
\x11\x00\x02\x02\x01\x02\x04\x04\x03\x04\x05\x06\x07\x07\x06\x05\
\x35\x01\x00\x02\x11\x03\x21\x31\x12\x04\x41\x51\x61\x71\x22\x13\
\x05\x32\x81\x91\x14\xa1\xb1\x42\x23\xc1\x52\xd1\xf0\x33\x24\x62\
\xe1\x72\x82\x92\x43\x53\x15\x63\x73\x34\xf1\x25\x06\x16\xa2\xb2\
\x83\x07\x26\x35\xc2\xd2\x44\x93\x54\xa3\x17\x64\x45\x55\x36\x74\
\x65\xe2\xf2\xb3\x84\xc3\xd3\x75\xe3\xf3\x46\x94\xa4\x85\xb4\x95\
\xc4\xd4\xe4\xf4\xa5\xb5\xc5\xd5\xe5\xf5\x56\x66\x76\x86\x96\xa6\
\xb6\xc6\xd6\xe6\xf6\x27\x37\x47\x57\x67\x77\x87\x97\xa7\xb7\xc7\
\xff\xda\x00\x0c\x03\x01\x00\x02\x11\x03\x11\x00\x3f\x00\xf5\x54\
\x92\x49\x25\x29\x24\x92\x49\x4a\x49\x24\x92\x52\x92\x58\xdd\x63\
\xeb\x46\x1f\x4b\xc8\x18\xce\xad\xf7\xdd\x01\xcf\x0c\x80\x1a\x0f\
\xd1\xdc\xe7\x1f\xa4\xa8\xb7\xeb\xc5\x0e\x0e\x2c\xc2\xb9\xc1\xa2\
\x5c\x41\x69\x81\xe2\xe8\xfa\x2a\x78\xf2\xb9\xe5\x11\x21\x03\xc2\
\x76\x3a\x06\xb4\xf9\xde\x5a\x12\x30\x96\x40\x25\x1d\xc6\xa5\xe9\
\xd2\x5c\xc3\x7e\xbd\xe1\x48\xdf\x8b\x68\x6f\x72\x0b\x49\x8f\xea\
\xee\x0b\xa4\xaa\xda\xee\xa9\x97\x54\x77\x57\x63\x43\xd8\xe1\xdd\
\xae\x1b\x9a\x53\x32\xe0\xcb\x8a\xb8\xe2\x63\x7b\x2f\xc3\xcc\xe1\
\xcd\x7e\xd4\xc4\xf8\x77\xa6\x69\x24\x92\x8d\x99\x49\x24\x92\x4a\
\x52\x49\x24\x92\x9f\xff\xd0\xf5\x54\x92\x49\x25\x29\x24\x92\x49\
\x4a\x49\x24\x92\x53\xe7\xff\x00\x59\xe3\xfe\x72\x5d\x2c\xf5\x67\
\xd2\xfd\x19\xdd\xee\xf6\x37\xdb\xfa\x28\xb3\xfe\xdb\x57\x31\x73\
\x3a\x57\x4c\xa7\x37\x1e\xf1\x5d\x2e\xcb\xab\xd3\x6b\x45\x79\x8d\
\x0e\xd2\xc6\xfe\x98\x64\x9f\x53\x67\xe9\x3f\xc0\x7e\x91\x2e\xb2\
\xfb\x47\x5a\xea\x35\x62\xdc\xdc\x7c\xcb\x3e\xcf\xe9\xbc\xbc\x56\
\x5d\x58\x67\xe9\xa8\xaa\xf7\x47\xa5\x63\xec\xf4\x1f\xf4\xeb\xf5\
\x7d\x34\xd8\x79\xb9\x9d\x2e\xbb\x2d\xeb\x19\xbf\x68\x6f\xf8\x3e\
\x9c\x5e\xdc\x8b\x1e\xff\x00\xcc\x75\x96\x1f\x57\xec\xf5\xb3\xe9\
\xff\x00\x39\xff\x00\x90\xb3\x63\xe6\xc3\x8e\x3a\xe9\x08\x7a\x23\
\x2e\x19\xe4\xd2\x32\xdb\x86\x6e\x10\xa8\x73\x19\x67\xde\x79\x2f\
\x24\xa2\x25\x8f\x17\xaa\x70\x31\x94\xb8\xe1\xf3\x39\x7d\x6f\x0c\
\x60\x5c\xcc\x67\x55\x45\x76\x16\x0b\x1c\x68\x75\xc7\x47\x4b\x5a\
\xcb\x06\x53\xdf\xb5\xde\xdd\xcb\xbd\xe8\xdf\xf2\x46\x0f\xfe\x17\
\xab\xfe\xa1\xab\x93\x7e\x4f\xd5\xce\xb7\x69\xb7\x37\xd4\xe9\xb9\
\xd6\x46\xfb\x43\xb7\x54\xe2\x00\x63\x25\xcf\x0e\x63\x5a\xd6\xb7\
\xf3\x99\x8e\xbb\x0e\x9f\x53\x29\xc0\xc6\xa5\x8f\x16\xb2\xba\x98\
\xc6\xd8\x38\x70\x6b\x43\x5b\x60\x82\xef\xa7\xf4\x95\x7e\x76\x64\
\xe2\xc7\x09\x89\x0c\x91\x3e\xae\x21\xff\x00\x46\x5e\xae\x26\xcf\
\xc3\xb1\xc4\x66\xcb\x93\x1c\xa1\x2c\x52\x03\x83\x80\xeb\xfe\x1c\
\x3d\x3c\x32\x6c\x24\x92\x4b\x3d\xd4\x52\x49\x24\x92\x94\x92\x49\
\x24\xa7\xff\xd1\xf5\x54\x93\x20\xdb\x99\x89\x4b\xf6\x5d\x7d\x75\
\xbe\x27\x6b\xde\xd6\x98\x3d\xf6\xb8\xf9\x24\xa4\xe9\x2a\xbf\xb4\
\xba\x77\xfd\xca\xa7\xfe\xdc\x6f\xfe\x49\x4d\xb9\xb8\x6f\x63\xde\
\xcb\xea\x73\x2a\x13\x63\x83\xda\x43\x41\xee\xf3\x3e\xdf\xa2\x92\
\x93\xa4\xaa\x9e\xa7\xd3\x40\x93\x97\x48\x03\x9f\xd2\x37\xff\x00\
\x24\x8d\xeb\xd1\xea\x8a\x7d\x46\xfa\xa5\xbb\xc5\x7b\x86\xe2\xde\
\x37\xec\xfa\x5b\x12\x53\x99\xd5\xbe\xac\xf4\xfe\xa9\x78\xc8\xb5\
\xcf\xaa\xdd\xbb\x5c\xea\xcb\x46\xe0\x3e\x8e\xf0\xf6\xbf\xe8\xaa\
\x23\xea\x27\x4c\x1c\x64\x5e\x3e\x75\xff\x00\xe9\x25\xd0\x7d\xa2\
\x8f\x55\xd4\xfa\x8c\xf5\x5a\xdd\xee\xaf\x70\xdc\x1b\xfb\xee\x6f\
\xd2\xd8\xa0\xcc\xec\x1b\x1a\xe7\x57\x91\x53\xdb\x5b\x77\xbc\xb5\
\xed\x21\xad\xfd\xf7\x41\xf6\xb5\x4d\x1e\x6b\x3c\x62\x23\x19\x90\
\x06\xc1\xaf\x3e\x4f\x97\x9c\x8c\xa5\x8a\x26\x52\xdc\xb8\x6d\xfa\
\x8b\xd2\xc1\x05\xd7\xe4\x39\xbd\xdb\x2c\x13\xe5\xed\xaf\x72\xe8\
\x6a\xae\xba\xab\x65\x55\xb4\x36\xba\xda\x1a\xc6\x8e\x03\x40\xda\
\xd6\xa4\xc7\xb2\xc6\x36\xca\xdc\x1e\xc7\x09\x6b\x9a\x64\x10\x7b\
\xb5\xc1\x0d\xb9\x98\x8f\xb7\xd1\x65\xf5\xba\xe9\x23\xd3\x0f\x69\
\x74\xb7\xe9\xb7\x64\xee\xf6\xc2\x6e\x4c\xd9\x32\x57\x1c\x8c\xab\
\x6b\x5f\x8b\x97\xc5\x8a\xfd\xb8\x08\x71\x6f\x49\xd2\x4d\x31\xa9\
\x40\xaf\x3b\x0a\xdd\xde\x96\x45\x56\x6d\x6e\xf7\x6d\x7b\x4c\x37\
\xf7\xdd\xb4\xfd\x15\x1b\x2b\x61\x25\x57\xf6\x97\x4e\xff\x00\xb9\
\x74\xff\x00\xdb\x8d\xff\x00\xc9\x24\x7a\x9f\x4e\x1a\x9c\xba\x63\
\xfe\x31\xbf\xf9\x24\x94\xda\x49\x33\x5c\x1c\x03\x9a\x64\x1d\x41\
\x1a\x82\x13\xa4\xa7\xff\xd2\xf5\x55\xe7\x9f\x58\x7a\x57\x49\xea\
\x5f\xe3\x07\x29\xbd\x5b\x18\x66\x63\xe2\xf4\x33\x94\xda\x77\x39\
\x92\xfa\xee\xd3\xdf\x53\x98\xef\xa0\xe7\xb1\x7a\x1a\xf3\xde\xbf\
\xd4\xba\x5f\x4f\xff\x00\x18\x39\x47\xaa\x65\x37\x0a\x8c\xae\x84\
\x71\x9b\x73\x81\x74\x3e\xcb\xb4\xf6\xb3\xf9\x2d\x7b\xd2\x53\xc8\
\xf4\xae\xaf\xf5\x07\xa9\x75\x3c\x2e\x9e\x3e\xab\x7a\x4e\xcc\xbe\
\xac\x7d\xff\x00\x6d\xb9\xc1\xa6\xd7\xb6\xad\xf1\xed\xdf\xb3\x7a\
\xdb\xc1\xe9\x35\xe3\xb7\xfc\x60\x74\xae\x95\x8c\xed\x8c\x66\x3d\
\x78\xf8\xd5\x07\x58\xef\xa3\x90\x76\xb0\x1f\x52\xd7\xbb\x72\xc5\
\xe9\x3d\x07\xea\x4f\x4d\xea\xb8\x5d\x47\xfe\x76\x57\x6f\xd8\xef\
\xab\x23\xd3\xfb\x25\x8d\xdd\xe9\x3d\xb6\xec\xdf\xea\xbf\x66\xfd\
\x9f\x4b\x6a\xe9\x7e\xaf\x7d\x61\xc5\xc7\xea\x3f\x5e\x3a\xfe\x14\
\x66\xe3\xd5\xf6\x6b\xea\x00\x96\x07\x86\xb7\x27\xf3\xdc\xc7\x39\
\xbf\xf6\xda\x4a\x68\xd7\xfe\x2d\x3a\x3f\x5f\xe9\x9d\x3f\xf6\x56\
\x5d\x38\x19\xf8\xb8\xd5\xb7\xab\xd3\x0e\xba\xd1\x92\xe6\xb3\xd4\
\x66\x55\x4e\xb8\x7d\x92\xda\xed\x65\xed\x7d\x5e\x9d\x6b\xa8\xcb\
\xc6\xe9\x1d\x5f\x26\x8b\x7e\xae\xf5\xac\x5a\x3e\xb1\x63\xd0\xdc\
\x66\xe5\xd4\xe6\xe4\x3b\xec\xec\xdd\xeb\x55\xf6\x2f\x55\xd4\xff\
\x00\x39\x66\xff\x00\x57\xd3\xf5\x16\x87\x45\xea\x3f\x57\xd8\x70\
\x6c\xaa\x9a\xb0\x3a\x97\xd6\x5a\x46\x77\xa0\xc6\x92\xeb\x1c\x59\
\xf6\xab\xb7\xdc\xd6\x35\x8f\x75\x5e\xb3\xff\x00\x9c\xd9\xbd\x72\
\xb4\x64\x7d\x5b\xe9\xff\x00\x5c\x1b\xf5\x93\xa7\x7a\x38\xdf\x57\
\x6a\xc5\x76\x16\x4e\x55\x4c\x2c\xac\x66\x9b\x1e\xf7\x52\xea\x9a\
\xdf\x59\xd6\x7a\x2e\xa7\xf4\xbe\x97\xa7\xff\x00\x08\x92\x94\xcc\
\x3c\xd7\x7d\x66\xca\xe9\x37\x66\xb5\xbd\x6e\xac\x31\x7f\x51\xeb\
\xcf\x63\x43\x6f\xc1\x9a\xd9\x6f\x4d\x76\x07\xf4\x7c\x7f\xe7\x2a\
\x7f\xdb\x58\xef\x5f\xf4\x0b\x2f\xaa\xe1\x62\xd5\x96\xfe\x9d\xf5\
\x47\xa7\xd9\xd3\xfa\x46\x66\xdc\x7c\xff\x00\xac\x35\x17\xe5\x62\
\x3f\x0d\xed\x07\x29\xce\xb6\xff\x00\x52\x8a\x6b\xc4\xb0\xd9\xf6\
\x8b\xab\xcb\xaf\xfa\x3d\x9e\xa5\xab\xa1\xfa\x9c\xca\x59\x85\x97\
\x83\xd7\xdf\xb3\xeb\x57\xd9\xae\x39\x97\x5d\x36\xe4\x37\x11\xc5\
\xbb\x1d\x66\x47\xbd\xb6\x54\xcf\xd1\x7e\x8b\xd6\x5c\xf7\xd5\xac\
\x8c\xce\x85\x99\x8f\xd3\x4b\x9f\xd7\x7e\xaa\x75\xb7\xb3\xa7\xe0\
\xe4\x58\xe3\x4d\x04\xda\xf1\xf6\xc7\xb3\x05\xfe\xbb\xdb\xb2\xdb\
\x32\x6a\x7b\x1f\xe9\x7a\xdb\x3f\x9c\x49\x4d\xdf\xb3\xfd\x6e\xe9\
\x39\x7f\x57\xba\x27\x4f\xfa\xcc\xcb\x70\x7a\x9b\x2c\x66\x2d\xd5\
\xe2\xd2\xe6\x57\x5d\x0c\x65\x8c\xdb\x3e\xa7\xda\x5a\xf6\x3f\xdb\
\xfa\x55\x91\xd3\x7e\xad\x66\xe1\x75\xfc\xee\xa9\xd4\x7e\xb0\x55\
\xd0\xfa\xb5\x19\x77\x8a\x2f\xcc\xa5\x8c\x39\x0d\x7f\xa9\x5d\xbd\
\x42\x8a\xb2\x5f\x55\x6e\xa7\x23\xd4\xb3\x67\xa7\x5d\x95\xae\xa2\
\xee\xa7\xd2\xba\xa6\x3f\x5b\xc2\x75\x75\xf4\x0f\xf9\xaa\xe6\xe2\
\xe1\xf5\x5a\xe6\xd7\xd2\xd7\xbd\xd4\xb9\xf8\xf5\x56\xca\x2c\xa3\
\xd4\x66\x2b\x6a\xd9\x55\xbf\xe1\x56\x67\x4c\x6b\x1b\x8f\x91\x4f\
\x5c\xc6\x6f\xd6\x7e\xb3\x93\x67\xa9\xd0\x2b\xcb\x23\x7e\x56\x16\
\x91\x91\x45\xd6\xfd\xa1\x98\xb4\xba\x9f\x5b\x33\xd0\xb5\xc9\x29\
\xdf\x65\xd9\xae\xfa\xb3\x69\x7f\xd6\xec\x4b\xac\x76\x58\x61\xea\
\xbb\x29\xf4\x83\x0b\x19\xbb\x00\xb5\xaf\xf4\x7d\x47\x7f\x3b\xf4\
\xbd\x4f\xd2\x2c\xa3\x8d\xf5\x67\xa6\x75\x1f\xad\x1d\x0f\xa5\x74\
\xaf\xb2\x64\x62\x74\x7b\x8b\xf3\x3d\x6b\x2c\xf5\x18\xfa\xab\xb5\
\xd4\xfa\x17\x17\xec\xf7\x5b\x5f\xbf\x7f\xf8\x35\x77\xa9\xf5\x6f\
\xaa\x78\x9f\x54\x5f\x91\xd3\x3a\x6e\x36\x56\x1f\xdb\x19\x4d\xf8\
\x8d\x1e\x9b\x2b\xca\x73\x5a\xd7\xd9\xee\xa7\xdf\x6d\x1f\xa2\xf7\
\x7a\x7e\xf5\x9d\x8f\xd0\x71\xfa\x4e\x57\xd6\x6f\xb4\x75\xe7\x75\
\x7e\xb3\xfb\x22\xe6\xe5\x53\x65\x4e\x63\xda\xc3\x5b\x1d\x5d\xaf\
\xbd\xf6\xdc\xdb\x3f\x46\xda\x5b\xb3\xf9\x69\x29\xe7\xab\xaf\xea\
\x8f\x47\xfa\xa1\xd1\x3a\x97\x52\xe8\x9f\xb4\xb2\xba\x97\xda\x05\
\x96\x0c\x8b\x29\x8f\x46\xc7\x31\xa7\x6b\x0b\x98\xef\x6b\x98\xdf\
\xa2\xa4\xca\xfe\xa7\x75\xbf\xaa\xdd\x7b\x3b\xa7\xf4\x3f\xd9\xd9\
\x3d\x2e\xba\x4d\x76\x1c\x8b\x6e\x93\x73\xdc\xd9\xda\xf2\xd6\xb7\
\x67\xa4\x95\x63\xea\xb7\x5a\xfa\x9d\xd0\xfa\x76\x7f\x5d\x67\x4b\
\xc9\xe9\xdf\x68\x36\x56\x69\x7d\xc4\xfa\xb6\xb9\xcd\x9d\xae\xab\
\x6f\xb5\xa9\xd8\xdf\xaa\x9d\x0b\xea\xaf\x5e\xc2\xc2\xeb\xd5\xf5\
\x3c\x9e\xa7\x5d\x02\xba\xc5\x0f\xa4\x83\x4b\xdc\xe8\x1b\x9d\x6e\
\xfd\xfe\xb2\x4a\x7d\x77\xa1\x69\xd1\x3a\x78\x1f\xf7\x16\x9f\xfc\
\xf6\xc5\x79\x51\xe8\x7f\xf2\x2f\x4f\xff\x00\xc2\xb4\xff\x00\xe7\
\xb6\x2b\xc9\x29\xff\xd3\xf5\x55\x95\xd6\xfa\x57\x47\xbb\x1f\x23\
\xa8\x66\x74\xdc\x5c\xdc\x8a\x29\x7b\x98\xec\x8a\x59\x63\x88\x63\
\x5d\x63\x2b\xdf\x63\x1c\xfd\x9b\x96\xaa\xe3\x7a\xf5\x27\xeb\x0f\
\xd6\xb7\x7d\x57\xce\x7b\xea\xe9\x94\xe0\x8e\xa2\x1f\x41\xf4\xed\
\xf5\xbd\x47\x61\xec\x7d\xde\xe6\xfa\x0e\xa6\xeb\x3f\x47\xb1\x25\
\x3e\x7f\x81\xf5\xfb\xa3\xd9\x9b\x8d\x5e\x77\xd5\xbe\x8f\x4e\x2b\
\xed\xad\xb9\x37\x37\x14\x12\xca\xcb\x9a\x2e\xb5\x8c\x0d\x7b\xbd\
\x95\xee\x77\xe7\xae\xc3\x29\xd5\x5b\xf5\x53\xeb\x36\x56\x0f\x4c\
\xc4\xc0\xe8\xf7\xe3\x35\xdd\x37\x2b\x16\xb6\xd4\xec\x9a\xc0\xb0\
\x3d\xf9\x15\x37\x6d\xad\xf4\x9f\xfc\xd7\xad\x4d\x3f\xce\xae\x4f\
\xeb\x17\xf8\xbd\xc7\xe9\x5f\x58\xba\x68\xae\xe6\xbf\xa1\x75\x4c\
\xca\x31\x69\x8b\x0b\xae\x0d\x77\xa4\xcc\x97\x58\xff\x00\x4d\xb5\
\x37\xde\xeb\xbd\x3d\x8e\x7a\xda\xc2\xce\xe9\xff\x00\x57\xbe\xb4\
\xd1\xf5\x6b\xa1\x33\x22\xdc\x5c\x9c\x86\xe3\x75\x53\x9e\x05\xb5\
\x6c\x6f\xba\x96\xe0\xb9\xae\xda\xc6\xfe\xb1\x91\xeb\x7a\x95\xff\
\x00\xa3\x49\x4f\x1f\xf5\x7f\xac\x7d\x62\xce\x67\xec\x3e\x9c\xd7\
\x65\xf5\x3b\x83\x59\xd3\xb2\x9d\x71\x6d\xf8\xb5\xd2\xd3\x65\xd4\
\xf4\xfc\x8b\x6c\x67\xd9\x2b\xb7\x1e\xbf\x4e\xd6\x57\x65\x5b\xe9\
\xfd\x12\xeb\xbe\xa1\xfd\x49\xfa\xd1\x87\xd5\x1d\x4f\xd6\x3c\x2d\
\xfd\x1a\xc6\xbe\xc7\xe3\x5f\x6d\x57\xd0\xeb\xce\xc0\xcb\xdd\x88\
\x2d\xb9\xae\xbf\x6b\x7f\x9e\xf4\x95\x3b\xfe\xad\x7d\x61\xe8\xff\
\x00\xe3\x16\x8c\xae\x99\x6e\x17\xda\x7a\xb5\xd9\xb9\x3d\x3b\xd4\
\x2f\x75\x4d\xac\xb6\xe7\xb8\x64\x0a\xeb\x6e\xd7\x7d\x9e\xdf\xd1\
\xfa\x5e\xa3\x3d\x45\xd7\xfe\xc1\xfa\xea\xf7\x8e\xb5\x66\x46\x17\
\xfc\xe2\xaf\xf5\x6a\x80\x75\xa3\x0b\xec\x87\xf4\x92\xfa\xbd\x2f\
\x59\xd9\x9e\xbb\x9f\xee\xfe\x6f\xd3\x49\x4e\x27\xd6\x5e\xb5\xd3\
\x7e\xa5\xe1\x3f\xa7\xd1\x77\xed\x7f\xac\x37\x4d\x59\x59\x39\xac\
\x79\xc8\xfb\x2d\xcc\x7b\xbf\xa7\x6d\xfd\x25\x75\xd8\xca\x36\x53\
\xf6\x87\xff\x00\x51\x5f\xff\x00\x15\xd9\xdd\x03\xa8\xfd\x5c\xc0\
\xe9\x4f\x15\xe4\xf5\x2e\x97\xea\xe4\x3a\xbb\x2a\x2e\x34\x97\x5f\
\x6b\xea\xba\xab\xac\xaf\xd2\x6d\x9b\x6c\x67\xf3\x36\x7a\x8b\x80\
\xc1\xbb\xea\x76\x57\xd6\x96\x3d\xcc\xea\x57\x74\xdd\x95\x36\x80\
\xf3\x5b\xef\x19\x02\xca\x9a\xdf\x5f\xde\xea\xfe\xc9\xb7\x7b\x17\
\x79\x9f\x97\xf5\x53\x1b\xeb\x8f\x53\xe9\x2e\xa3\xa8\x33\xa8\x75\
\xb6\x53\xd3\xf2\x2d\xa1\xb5\x8c\x76\x8b\xab\xa9\xb5\xd9\x43\xb7\
\x7a\x95\xfb\x1c\xcf\x55\xee\xae\xcf\x7e\xff\x00\x62\x4a\x4d\xf5\
\xc7\x3b\xea\xe6\x47\xd5\x8f\xac\xf4\xf4\x96\xd4\xdc\xdc\x73\x5b\
\x7a\xa1\xae\x93\x53\x8d\xa6\xed\xac\xf5\xad\x75\x75\x7d\xa5\xdb\
\xd9\x77\xbf\x7d\xbf\xf8\x22\xe0\xb3\x87\xd7\x1e\xa3\x9d\xf5\x73\
\x1b\x17\x18\xe1\xf5\x06\xf4\xe6\x33\xa5\xbf\x1e\xf6\xb2\xcb\x68\
\x6d\x6f\x77\xda\x3d\x61\x73\x7e\xcf\xea\x63\xb6\xcf\x63\xdf\x52\
\xda\xfa\xbb\x75\xff\x00\x57\xba\xbf\xd6\x7b\x18\x19\x91\xd0\xb0\
\x32\x5a\xde\xa5\x55\xc0\xdd\x95\x6b\x03\xb2\x2a\xc6\x18\xfb\xf6\
\x53\x63\xbd\x47\x6f\xc8\xf5\xde\xc5\xa9\xf5\xcf\x3f\xa8\xf5\xcc\
\xde\x91\xd0\x3a\x33\x68\xc4\xab\xad\xe0\xb7\x22\xab\x72\x1a\x6b\
\xb6\xa0\xdd\xd9\x82\xbf\x5a\x8f\x55\xd4\x7e\x8a\x8f\x49\xd5\xd6\
\xc7\xa4\xa4\xff\x00\x52\xb0\xf1\x5a\xc7\xf4\xfc\x3a\x59\xd6\x3e\
\xae\x6f\x7e\x47\x50\xcd\xcc\x60\x75\x95\xf5\x16\xb6\xbf\x57\x19\
\x98\xf7\x06\xba\xd6\xd7\x5b\x29\xb7\xd6\x66\x3d\xbf\xcf\x7f\x48\
\x58\x16\x7d\x64\xbf\x23\xeb\xa7\x5e\xeb\x3f\x56\xf1\x69\xeb\x18\
\x56\x60\x8f\xb4\x8b\xe6\xb6\x0c\x7a\xeb\xc7\x6e\x4b\xdd\x56\x4f\
\xa0\xfb\x3d\xd5\x7a\x7e\x9e\xcf\x7a\x27\x40\xbb\x03\xeb\x46\x7b\
\xb0\x7a\xd0\xc9\xc6\xea\xf8\xb5\xbc\x52\x30\x08\xa3\x15\xf4\xe3\
\x89\x0f\xb5\xa4\xba\xdb\x32\x6d\xbb\xd6\xdf\x67\xa7\xfc\xdf\xa6\
\x83\xd1\xb1\xce\x6f\x53\xc1\xfa\xdd\xd7\xe1\x94\x75\x8b\xe9\xc5\
\xc6\xc6\xe9\xa7\x63\x9b\x75\x76\x57\x4d\x5f\x6d\xc6\xbb\xd9\xf6\
\x1b\x1b\x8b\xfa\x6f\xd2\xdb\xf4\xd9\xfa\x34\x94\xec\x7d\x57\xea\
\x9d\x03\x39\xb8\xd6\xfd\x60\xe8\x1d\x2b\xa7\xd1\xd5\x9e\x2a\xe8\
\xce\xab\x15\x96\x1b\xed\x16\x1c\x7b\xd8\xef\x4d\x97\xfa\x1e\x9d\
\xae\xa5\x9f\xac\x7a\x0b\x2f\x37\xaf\xd5\xff\x00\x3a\x32\x7e\xaf\
\x74\xbf\xaa\xbd\x1f\x26\xea\xf2\x2c\xa3\x1c\x3a\x8a\xda\x5d\xe9\
\xee\xfa\x6e\x7f\xa5\x56\xef\x62\xee\x3e\xb9\x5b\xd5\xb0\x30\x59\
\x95\xd0\x87\x4f\x6b\x7a\x6b\x2e\xbf\x22\xac\xa6\xcb\xc0\x63\x5b\
\x6d\x63\x0a\xba\xc7\xb6\xd7\x7e\x93\xfd\x1f\xf8\x25\xc9\x57\xf5\
\xa3\x03\xeb\x0e\x4f\x48\x7e\x3e\x35\xb8\xdf\x5a\xb1\x83\xbd\x1c\
\x8b\x6a\x65\x58\x26\xfb\x1a\xdf\xb4\xbf\x2d\xcc\x7d\xb9\x2f\xab\
\x65\x4f\xf4\x7d\xa9\x29\xf4\xfc\x11\x60\xc3\xa0\x5b\x53\x71\xec\
\x15\x30\x3e\x86\x46\xd6\x3b\x68\xdd\x53\x36\xfb\x76\x57\xf4\x1a\
\x8e\x85\x89\xeb\xfd\x96\x9f\xb4\x96\x1c\x8d\x8d\xf5\x8d\x73\xb0\
\xbe\x07\xa9\xe9\xee\xf7\x7a\x7b\xfe\x82\x2a\x4a\x7f\xff\xd4\xf5\
\x55\xc8\xfd\x74\xea\x3d\x4e\xe7\x8e\x85\xd3\x6f\x67\x4b\xb6\xf6\
\x87\x59\xd4\x33\x5a\xd1\x89\x6b\x2c\x16\x63\xbb\xa6\xd5\x75\xac\
\xbb\x76\x75\xaf\x73\x2d\x65\x4c\x67\xa9\xe9\x55\x62\xeb\x97\x93\
\x7f\x8d\x1e\xb1\x98\xcf\xad\xbd\x33\xa5\xdb\x78\x6f\x4c\xac\xe3\
\x65\x9a\xdc\x1a\x1a\xdb\x05\x97\x54\xeb\x8d\xbb\x7d\x4f\xe6\xbf\
\x97\xb1\x25\x34\xfa\x66\x1b\x30\xfa\x9b\xfe\xa6\x7d\x6b\xa2\xce\
\xab\xd3\xfa\x57\xa6\xea\x1f\x8a\x1c\xda\x71\x4e\x41\x6e\x45\xf9\
\x99\x99\x4c\xfb\x2d\xcc\xc5\x65\x79\x5f\xa5\xb3\x23\x7d\x75\xae\
\xb7\x0f\xa4\xdd\x9d\xd2\x3a\xf7\x42\xe9\x7d\x4f\x07\x27\xa6\x3e\
\xa6\x53\xd1\xf1\xe9\xb4\x5b\xf6\x66\xbc\x5b\xbd\xb9\x96\xd6\xcb\
\x2f\xfd\x33\xff\x00\x9b\xf5\x2d\xc9\xfe\x6d\x46\xae\xab\xf5\x7f\
\xa9\x75\xaf\xad\x2d\xc0\xe9\xc3\xa8\x5a\x30\x01\xc8\xc9\xc6\xc8\
\x75\x83\x35\x9e\x88\x6f\xd8\xe9\x65\x3b\xd9\x4b\xff\x00\xed\x2e\
\xfc\x6f\xd2\x7a\x9f\xf0\x88\x7f\x52\xba\x97\xd5\xfe\x90\x73\x7e\
\xd3\xd2\x4f\xd5\x1f\x58\x55\xb7\xed\xf7\xbd\xbf\x69\xd9\xea\xee\
\xf4\x3e\xdf\xe9\x7f\x45\xf5\x3f\x4b\xe9\x7f\xdc\x9a\xfd\x5f\xcc\
\x49\x4c\x3a\xe3\x31\x70\x7e\xaf\x61\x1e\x97\x93\x4e\x57\xd7\x0e\
\x81\x8d\x56\x26\x25\x78\xb6\x0b\xed\x6b\xda\x2a\xc5\xea\x2d\x66\
\x07\xbf\xd6\xfd\x5f\xed\x1b\xfd\x6c\x5f\x52\x9a\xff\x00\x4b\xfa\
\x2d\x8a\x87\x4a\xfa\xd1\xf5\xdf\x2f\xa3\xbf\x0b\x36\xdb\x3a\x57\
\x57\x76\x48\x7d\x5d\x53\xa8\x63\xb3\x1f\x13\xd1\x21\x8d\x6e\x17\
\xa8\xfa\x76\x7d\xaa\xdb\xbd\x4f\x49\xbf\x67\xf7\xff\x00\xa5\x59\
\x58\x3d\x43\xf6\x1f\xd7\x0c\xfe\xa3\xfb\x03\x23\xaa\xe6\x67\xe6\
\x64\xe4\x74\x6c\x9a\x9d\x63\x45\x94\xb8\xdc\xeb\x2d\xc4\x6b\x2b\
\xb6\xbc\xca\xad\xc7\xbb\xd4\xf5\x58\xdb\x3f\x44\xba\x1c\xdf\xb1\
\x75\x7e\x82\xde\x99\xd5\x3e\xb6\x60\xdf\x96\x73\x2b\xca\x6d\xaf\
\x34\xb4\xb1\x8d\x0d\xfd\x48\xd3\x55\xb5\xfb\xd9\x66\xff\x00\x7a\
\x4a\x6a\x7d\x53\xbb\xea\x27\xd4\x8b\x2d\xaf\xa8\x75\x06\x3f\xaf\
\x52\x1f\x8f\x9b\x7d\x55\xe5\x3d\x80\x17\x56\xf7\x63\xfb\x6b\x7d\
\x1f\xa2\xb2\xb6\x7e\x95\xac\xde\xb5\xfa\x9f\xf8\xc5\xfa\xbd\x75\
\xd8\x4e\xe9\xfd\x75\xb8\x95\x55\x7b\x5f\x98\xc7\xe2\x5e\xf3\x75\
\x23\xe9\xd0\xc7\x3b\x1f\xf4\x4e\x77\xfa\x46\x2e\x2d\x96\xd9\x4f\
\xf8\xc3\xea\x2e\xa2\xb1\x90\xe3\x99\x94\xcb\x68\x23\x47\xb1\xe4\
\xd5\xe9\x3b\x4f\xcf\xb5\xd5\x2b\x97\xe3\xe2\x62\xe5\x5d\x4d\x15\
\x55\xb9\x8e\xdb\x63\xab\x60\xda\xfb\x07\xb6\xdf\x47\x9f\xd0\xb1\
\xff\x00\xa3\xa7\xf7\xd2\x00\x95\xd4\x03\x73\xa3\x65\xfd\x40\xc3\
\xfa\xcb\xd4\x3e\xb1\x66\x75\x31\x93\x91\x7e\x43\xb2\x30\x4b\x68\
\xcb\xac\xd2\x1f\xeb\x7a\xcd\x78\xf4\xfd\x3b\xf7\xb2\xd6\xb7\xe8\
\x7f\x83\x4b\xeb\x87\x4e\xc7\xea\xff\x00\x54\xba\x9f\xd6\xac\x9c\
\x96\x75\x48\xb5\xbf\xb1\x32\x98\x1f\x49\xab\x19\xd9\x0c\xa5\xf8\
\xb6\x63\xed\xa1\xaf\x7d\x6e\x7d\xd5\x7a\x97\xb2\xdb\x56\x57\x50\
\x77\x4e\xab\xa0\x66\x0a\x71\xab\x6f\x50\xb6\xc6\x83\x76\xc0\x62\
\x97\x11\xeb\x3a\xbd\x36\xd5\x6f\xe6\x7b\x3f\xd2\x2e\x9b\xa1\x36\
\xb7\x7f\x8a\x4a\x5b\x6f\x4d\xb3\xac\xb2\x5f\x3d\x3e\xa7\x3d\xaf\
\xb6\x33\x9f\x1b\x5d\x8e\xd7\xdd\xfa\x2f\xe7\xfd\xac\xff\x00\x06\
\x95\x10\x68\xa8\x81\x5a\x39\x79\x57\x75\x3c\x5e\x8e\xde\xaf\x8f\
\xd4\xb1\x7a\xaf\xd6\xea\x8b\x69\xc5\xb3\xa7\x96\x5c\xf6\x74\xfd\
\xa1\xf6\x52\xec\x0a\xd9\xe9\x7e\x8a\xc7\x5c\xfb\x6f\xfb\x2e\xf6\
\x7a\x9f\xcf\xaa\xfd\x0b\xae\xe5\x5e\xca\x3e\xb0\x35\xb6\xe3\x75\
\xcb\x1c\x4f\x53\xea\x57\xb5\xac\xa7\x3f\x1e\xa7\x35\xbf\xb2\x3a\
\x53\x0b\x5d\x8d\x67\x52\xb6\xaa\x71\xea\xa6\xaa\x28\xa2\xed\xf4\
\x59\xfa\x74\xba\x27\x44\xc3\xfa\xa1\xf5\xea\xaa\x33\x73\x6a\xa2\
\x9c\xce\x9d\x65\xed\x7d\xd1\x4b\x6a\x37\x17\xd6\xdc\x62\x6d\xb1\
\xdb\xdf\x5f\xa5\xfb\xff\x00\xa4\x5a\x74\x7d\x58\xfd\x93\xd3\xb2\
\xfa\x6e\x5f\x5c\xa7\xa8\xbb\xa0\xe2\xdd\x9f\x81\xd3\xab\x6b\x6b\
\xb7\x1b\x29\xa3\xed\x54\x67\xbb\x65\x8e\xba\xc6\x56\xeb\x7f\x9a\
\xc9\xf5\x31\xff\x00\x58\xfe\x6d\x25\xae\x57\x56\xb3\x08\xf5\x3e\
\xab\xf5\xa6\xcc\x0c\x9b\x73\xed\x6b\x6e\xe9\xf4\x30\x1f\xb4\xf4\
\xdb\xf1\x5a\xda\xeb\xca\xeb\x98\x9b\xbd\x3c\x6a\xae\xb6\xba\xf2\
\x71\xfd\x7f\xb4\xd7\x6d\x0c\xfa\x0b\xa5\xff\x00\x9d\xdf\x57\xfa\
\x8f\x42\xe8\xfd\x27\xeb\x06\x45\x79\x4f\xeb\x58\xff\x00\xaf\x5a\
\xcb\x6b\xad\x95\x3a\xb6\xd7\x73\x9d\x98\xea\xac\xa7\xec\xbb\xdf\
\xf9\xbf\xc8\xd8\xb8\xab\x2c\xeb\xbf\x64\xc1\xea\xd9\x3d\x6c\x54\
\xdf\xae\xae\x76\x2f\x54\x7b\xe9\xad\xad\xae\xaa\x9d\xf6\x1f\x51\
\xef\x25\xac\xd8\xda\x1e\xef\xe6\xfe\xc9\xff\x00\x18\xb7\x7a\x8f\
\xf8\xb1\xfa\xbb\x95\x85\xd1\xa8\xc0\xea\x98\xb8\x99\x57\xd4\xe0\
\x6f\x13\x67\xdb\x5c\x05\x47\xd5\xc7\xad\xf9\x1f\x99\xef\x77\xe8\
\x7f\xd3\x24\xa7\xd3\xb0\xea\xc7\xa7\x12\x9a\x71\x63\xec\xd5\xd6\
\xc6\x53\x07\x70\xd8\xd6\x86\xd7\x0f\x97\x6f\xf6\x7e\x72\x32\xaf\
\xd3\xf1\x8e\x26\x06\x36\x21\x76\xf3\x8f\x53\x2a\x2f\x02\x01\xd8\
\xd0\xcd\xdb\x7d\xdb\x77\x6d\x56\x12\x53\xff\xd5\xf5\x55\xc0\x7d\
\x6c\x2e\xea\x1f\x5b\x07\x44\xc7\xe8\x58\xbd\x4e\xfb\x30\x9b\x6d\
\xb9\x77\x16\x0b\x6a\xa5\xd6\x3f\x1d\xf6\x57\xeb\x96\x31\xde\x83\
\xac\xdf\x5b\x5b\xfa\x45\xdf\x2e\x1b\xeb\x47\x47\xfa\xe3\xff\x00\
\x3a\x6d\xea\xdf\x57\xf1\xa8\xba\xbb\xfa\x77\xd8\x2c\x7d\xf6\x6d\
\x8d\xd6\x3a\xdb\x0d\x41\xb6\xd3\x63\x6d\x66\xda\xf6\x58\x92\x90\
\xfd\x54\xe9\xb8\xdd\x3f\xa9\xf5\xaf\xaa\x18\x6c\x6d\x17\x61\x62\
\x06\x7e\xda\xad\xbb\x72\x9e\x72\x5b\xf6\x86\x3d\xfb\x7f\xee\x37\
\xda\x7f\x43\xef\xff\x00\x00\xc5\xc7\x7d\x72\xbf\x17\xa4\xf5\xbc\
\x0a\xee\xea\x77\x7d\x65\xb7\xa7\x5b\x67\xda\xf0\xf3\x9a\xed\x8c\
\xfe\x64\x8a\xb7\x58\xd7\x57\x63\x72\x3f\xc2\x6c\xf5\x7f\x9a\x56\
\x3a\x77\xd4\xbf\xae\xdd\x13\xaa\x53\xd7\x7a\x8b\x8b\x31\x30\xec\
\xab\x27\xa8\xda\xdc\x80\xf7\x3b\x1f\x1d\xcd\xba\xed\xed\x6b\xf7\
\xdf\xb2\x9a\x7f\x9a\x5d\x05\xdf\x58\xf3\x2f\xfa\xc9\xd3\x37\x74\
\xbe\x9b\x6f\x45\xeb\xf7\x91\x87\x97\x65\x04\xe4\xd9\x5b\x7d\x36\
\x59\x65\xbb\xac\xf6\x59\xfa\x46\xec\xf5\x29\x49\x4f\x08\xee\xbe\
\x72\xe8\xca\xea\xae\xea\x97\xe0\x75\x2c\x27\xc7\x43\xe9\xf5\x6f\
\x35\xd7\x4d\xc7\xd3\xc8\xc7\xc7\xb9\xad\xd9\x8d\x5e\x3e\x33\xb6\
\x57\xee\xab\xd9\x5a\xbd\xd0\x71\x70\x7e\xbb\xfd\x6b\xc7\xa9\xb8\
\xf5\xf4\x66\x53\x8c\x1e\xe6\xe2\xb4\x10\xfb\x2a\x76\xf3\x73\xf7\
\x6d\xf7\xdb\xea\x7b\xff\x00\xa8\xa8\x7d\x7e\xeb\x2f\xea\x1d\x73\
\x23\x0b\xec\x98\xb8\xb5\x74\xbc\x8c\x8c\x6a\x4e\x35\x7e\x9b\x9e\
\xc6\xd9\xe9\xb5\xd9\x1e\xe7\x35\xef\xfd\x17\xe6\xfa\x6b\x5f\x3b\
\xaf\x7d\x62\xfa\xb9\xf5\xaf\x07\x3f\x37\x0b\xa7\xe2\xe4\xd9\x85\
\x5d\x4c\xae\x96\x9f\x44\xe3\xd8\xf7\xfe\x9d\xfe\x9d\xdf\xcf\xfb\
\x5e\xdd\xfe\xa6\xcd\x89\x29\xbb\xd2\x5d\x5b\x3f\xc6\x5e\x79\x74\
\x02\x7a\x85\xa0\x4f\x3b\x8b\xdd\xe9\xff\x00\xe0\x85\x8b\x7f\xa7\
\xfd\x58\xae\xdc\x6c\x5c\x9d\xee\x22\xea\x2a\x2c\xdd\x0d\x2d\xdc\
\xcf\x51\xfe\xd7\x86\xb9\xfb\x5c\x7d\x9f\x4f\xfd\x2e\xf4\x3c\x4f\
\xa8\x99\xc7\xeb\x47\x55\xeb\x3d\x53\x1f\xd4\xc4\x37\xdb\x76\x16\
\x3b\x1f\xee\xb4\xb9\xfb\xeb\xb6\xcf\x4f\xe8\x36\xaa\xc6\xfa\xe9\
\x77\xf3\x97\xfa\x6b\x73\x3b\x1b\xa8\x60\xd6\xec\x9e\x95\x55\xaf\
\xa8\x03\x38\x85\xaf\x2f\x05\xef\xdc\xe7\xe2\x6f\x6d\x9e\x87\xbd\
\xdb\xee\xa7\x67\xf5\x3d\x3f\x4f\xd1\x4a\xc8\x1a\x68\x42\xea\x04\
\xf9\xe8\xf0\x9f\x59\x70\x7e\xc5\x76\x56\x1b\x5d\xbc\xb6\xb6\x97\
\x69\x10\x4b\x1b\x6b\x9b\xc7\xfd\x3d\x8b\x5f\xea\xbf\xd7\x2c\x6f\
\xab\x9f\x57\xbe\xad\x63\xe7\x6d\xaf\xa7\xe7\x0c\xf3\x91\x92\x43\
\xdc\xea\xfd\x2b\xee\x34\xec\xae\x96\xbd\xce\xf5\x2d\x7f\xa6\xef\
\x6a\x6f\xad\x9f\x57\xb3\x6b\xc4\xa3\x27\x0b\x0f\x2b\x2f\xa8\x1b\
\x1e\xdc\xab\x1a\xcb\x2d\x36\x7a\x8d\x73\xbd\x47\xb7\xe9\x6d\xa5\
\xed\xf4\xeb\x77\xee\x2c\xba\xf1\x3a\xd6\x1d\x5f\x53\x30\x71\x70\
\xea\x7f\x58\xad\x9d\x49\xed\xc0\xcf\x6c\x36\x1e\xfb\x6c\x6f\xda\
\x29\x73\xaa\x73\x3f\x41\xbe\xca\xb7\x7f\x84\x44\xf4\xf2\xa2\x8e\
\x89\xf3\xfe\xb1\xfd\x4d\xa3\x05\xf6\x57\x7b\x3e\xb6\x75\x7b\x32\
\x41\xa0\xf5\x0a\x2d\x6b\xd9\x4b\xcf\xf4\x6a\xee\xba\xa0\xd6\xd5\
\x4b\xf7\x3e\xb6\x6f\xff\x00\x0d\x62\xcb\xea\x3f\x5b\x7a\xaf\x46\
\xfa\xe3\xd5\xb3\x3a\xb7\x4a\xa4\x65\x67\x63\x33\x17\x2b\x01\xf6\
\x0b\x2b\x0c\x75\x74\x72\xfa\xbd\x46\x59\xea\xd3\x5f\xd0\xff\x00\
\x84\x59\xbf\x59\x3a\xa7\x4a\xc4\xc6\x7f\x43\xe8\x8d\x6d\xd8\xd7\
\x58\x32\xb2\xf2\x6f\xae\x32\x2b\xcb\x04\xb2\xec\x6c\x6b\x1a\x29\
\x63\x70\xeb\x6d\x55\xec\x6f\xa5\x67\xd3\xb7\xf4\xcb\x77\xa3\xf4\
\x5f\xaa\xd5\x74\x1e\x97\xf5\xcb\xeb\x36\x6e\x73\xf2\x72\x32\x08\
\x3a\xb6\xea\xdc\xfa\x2c\xb4\x54\xcb\x59\x65\x17\x5a\xfa\x9d\x56\
\x26\xd7\xee\xb5\x04\x3a\x9d\x3b\xa6\x66\xfd\x70\xe8\xd8\x79\xe7\
\xa4\x53\x83\x83\xd2\x77\xe4\x74\x9c\x2a\x5d\x5b\xa9\xcb\x79\x7b\
\x8d\xd8\x97\xb2\xc7\xfe\xaf\x5b\xf2\x31\xfd\x3b\x3d\x46\xff\x00\
\x86\xb1\x61\xf4\xb6\xfd\x76\xcd\xfa\xd6\xfc\x9c\x3e\x9f\xeb\x9f\
\xab\xd7\xb8\x37\xa5\x9b\xeb\x6d\x38\xa2\xd0\xfa\x9b\x8d\x41\x7d\
\xac\x67\xa7\xfa\x1f\xfb\x4f\xec\xfd\x0a\xe8\x19\xd7\x7a\x36\x1d\
\xdd\x5b\xa9\x66\xe4\x5d\x8b\xf5\x7b\xeb\x1d\x4d\xa3\xa4\xbb\x1d\
\xa4\x39\xa2\x96\x3b\x1b\x39\xd4\xe3\xb4\x3b\xec\x8f\x6d\xef\xde\
\xc7\x3e\xaf\xd2\xff\x00\x3a\xb4\x30\xf1\x3a\x7f\xd5\x2f\xaa\x7d\
\x4b\xeb\x47\x40\xbe\xfc\xeb\x33\xea\xa7\x20\x3b\xa8\x90\xfd\xd0\
\xe7\x06\x39\xfe\x93\x31\xad\xdc\xef\xb4\xd9\xbf\x75\x89\x29\xee\
\x31\x5f\x7b\xf1\xaa\x7e\x45\x62\xab\xdc\xc6\x9b\x6a\x04\x38\x35\
\xe4\x0f\x52\xbd\xc3\xe9\x6c\x72\x2a\xad\xd3\x32\x5f\x97\xd3\xb1\
\x72\xdf\x01\xf9\x14\xd7\x6b\x83\x7e\x8c\xbd\xad\x79\xdb\x3b\xbd\
\xbe\xe5\x65\x25\x3f\xff\xd6\xf5\x45\xc1\xff\x00\x8e\x0a\x5d\x97\
\xd0\x30\x30\xea\x73\x7d\x6b\x7a\x8d\x2d\x00\x9e\x37\x57\x93\x58\
\x7b\xe2\x5c\xda\xf7\x3b\xe9\x2e\xf1\x71\x39\xb5\x36\xdf\xf1\x8b\
\x9f\x53\xac\x6d\x2d\xb3\xea\xeb\xda\xeb\x5f\xf4\x5a\x0d\xe1\xbe\
\xa3\xfe\x8f\xb5\x89\x29\xe2\x3e\xb0\x7d\x5a\xfa\xcf\x89\xd2\xfa\
\x17\xd5\xbc\xbc\x8e\x9f\x66\x3b\xb3\x1d\x8f\x84\xea\x1d\x61\x78\
\xb6\xf7\xee\x71\xca\x7b\xeb\x6f\xe8\x9a\xfb\xff\x00\xc1\xd6\xac\
\x37\xa5\x65\xf4\x8e\x83\xd7\xba\x67\x48\xd8\x2f\xc3\xa1\xb5\xfd\
\x65\x7e\x49\x2e\x63\xff\x00\x9c\x7e\x2b\xba\x33\x98\xd0\xef\xe6\
\xdd\x91\xeb\x7d\xa9\x95\x7f\x81\xf4\xd7\x3d\x6f\xd5\x7f\xac\x1d\
\x2f\xab\xb2\xfe\x87\x55\xdd\x5a\xac\x4b\x2b\xbb\x17\xa9\xe1\x50\
\xfb\xb1\xde\xf6\x6c\xb7\x75\x36\x56\xdb\xe9\xb7\xd0\xbf\xf4\x36\
\x7b\xbf\x9c\xa9\x74\x5d\x67\xa9\x7f\x8c\x4c\xce\x91\x56\x30\xcb\
\x7f\x54\x7e\x75\x6f\x67\x53\xe9\xb8\xf8\x6c\x37\x62\x4e\xd1\x5d\
\x59\xad\xa2\xa7\x5f\x8e\xfc\x86\xef\xf4\xbd\x46\x51\xfc\xd5\x9b\
\x12\x52\x5f\xf1\x3b\xd6\xf1\xb0\x33\x2e\xe8\xf9\x35\xda\x32\x3a\
\xab\x85\x98\xf6\x6d\x1e\x96\xda\x6b\xb6\xd7\xfa\x8f\x73\xda\xff\
\x00\x73\x7e\x86\xca\xde\x8f\x92\x3a\x2f\xf8\xc2\xfa\xfb\x55\x76\
\xd5\x95\x4e\x1d\x38\x2e\xa9\xdb\x83\x6a\x79\xb2\x9b\x6c\x76\xe6\
\x96\xfa\xed\xf4\xb6\xe4\x2b\x7f\x59\x5b\xd2\xb0\xbe\xae\xfd\x5d\
\x7f\x5f\xe8\x19\x5d\x45\x98\xbd\x3e\x96\x5b\x6b\x5f\x6d\x2d\xc7\
\x76\xcc\x7a\x9d\x56\x4f\xa7\xb1\xac\xb2\xcb\x3d\x9f\xa5\xd9\xfb\
\x8b\x37\xea\xb7\xd7\xff\x00\xae\xf6\xe5\x3b\x2a\xcc\x2c\xbe\xb1\
\xd2\x98\x1f\x53\x69\xc5\xc7\x6c\x35\xfe\xd7\x54\xd7\x64\x63\xe3\
\xfd\x2a\xab\x3f\x47\x77\xe7\xa4\xa7\x23\x07\x27\xeb\x3f\xd7\x3f\
\xac\x4f\xcf\xb2\xc6\xe3\x3f\x12\x96\xe5\x5c\xc6\x9b\x6a\xad\xd5\
\x63\x3a\xb0\xe6\xd2\xc6\xfa\xdb\xaf\x7e\xff\x00\xea\x2b\x19\x9f\
\x5a\x7a\xaf\x58\xfa\xd7\x9e\x3a\x13\x1f\x56\x3f\xd6\x36\x53\x80\
\xcf\xb6\x35\xc3\xd3\x0f\x65\x58\xee\xb1\xbe\x83\xed\x65\x5e\xf6\
\xd9\xfa\x46\xfa\xdf\xa3\x5d\xa6\x76\x7f\xd6\xef\xaa\xb5\xd7\x97\
\xd6\xba\xa3\x3a\xb5\x39\xb6\x37\x07\x1e\xaa\xe8\xae\x83\x5d\xf6\
\xcb\xea\xcc\x7b\xd9\x5f\xe9\x19\x53\x69\xb1\xbe\x8f\xe7\xfa\x8b\
\x9b\xce\xfa\xcf\xf5\xfb\x0b\xeb\x83\x3e\xab\x3b\xad\x31\xf6\x3a\
\xea\x28\xfb\x50\xc5\xa0\x09\xbd\xb5\x59\xbf\xd2\xf4\xbf\x33\xd6\
\xfd\xf4\x94\x9b\xa8\xfa\x19\xf8\x78\xd8\xf9\x36\xe4\x8c\x7f\xa9\
\x75\x9c\x5e\xbb\xf6\x77\x16\xdb\x73\xec\x0c\xc7\xa9\xdd\x35\xdf\
\xe1\xeb\x6e\x46\x2b\xfd\x4f\xb5\xfd\x97\xf4\x2b\x9b\xeb\xcd\xea\
\x5f\x58\xfa\x5d\xfd\x71\x8f\xaa\xbe\x97\xd0\x0b\x3a\x7e\x3d\x76\
\x97\x0c\xb7\x55\xbd\xac\xc6\x75\xed\xfd\x2d\x76\x64\x6c\xb5\x9e\
\xbb\xfd\x5a\xff\x00\xc2\xae\xe3\xa5\x62\x37\xa1\x7e\xde\xf5\x3e\
\xb5\xf4\xda\xfa\xdf\x53\xb2\xb7\x1b\xdc\xea\x5a\x6a\xb6\xb7\xda\
\x72\x3d\x5c\x5b\x2c\xd9\xb9\xde\xab\xd9\xb3\xd3\xfd\x1a\x6f\xab\
\x7f\x56\x7e\xa6\xfd\x69\x39\xf9\x39\x78\x23\x23\x33\x1b\x29\xd4\
\xe5\x67\x57\x91\x6f\xa7\x95\x77\xd3\xbf\x3e\x96\x53\x6b\x2a\xaa\
\xac\xab\x5c\xfb\xab\xaa\xbf\xd1\xfe\xe2\x4a\x71\x3e\xb6\x7e\xc7\
\xfa\xbb\xf5\x6a\xaf\xab\x5d\x2e\xbc\x9b\x72\x32\xdf\x47\x55\xf5\
\x1c\x1b\x6d\x40\xb8\x7a\x4e\xac\xd8\xc2\xc7\xb7\xfa\x36\xed\x9e\
\x8f\xf6\xd6\x67\x4d\xea\xdf\x5a\x7a\xdf\x54\xeb\xdd\x52\xa6\x62\
\xd3\x91\x93\xd3\x6c\x6e\x63\x6d\x6d\xad\x69\xa1\x8c\xae\x97\x37\
\x0d\xad\xf5\x1d\xf6\xa7\x36\xb6\xfa\x7e\xa3\xb6\x2e\xb3\xa1\xe1\
\xf5\x31\x73\xf0\x7e\xad\xe4\xb7\xea\x9d\x62\xd7\x39\xdd\x1b\x35\
\x82\xfc\x8b\xcb\x76\xb5\xfd\x4e\x9f\xb6\xfe\xb5\xf6\x6b\xe9\x6d\
\x74\x7e\x8f\xf4\x1b\xf1\xad\x54\x7f\xc6\xb7\x50\xea\x58\x99\x94\
\xdd\x4f\x59\xc7\xb1\xb8\x99\x94\x5d\x8d\xd2\x9a\xda\x8d\xf8\xf6\
\xb2\xaf\x51\x99\x57\x7d\x2b\x9f\x5b\x9f\xef\xd9\x77\xe8\xbf\x4f\
\x52\x4a\x72\xf0\xba\x5f\xd6\xab\xbe\xab\x74\x8e\xb1\x5d\xbd\x3d\
\x98\x7f\x57\xfd\x6c\xec\x3a\x2c\x36\x8c\x87\x6c\xb1\xd7\xd8\xcb\
\xab\xd9\xb2\xcd\xf6\x51\xfa\x16\xb2\xca\x96\xab\x7e\xb8\x62\x7d\
\x66\xc8\xe9\x02\x9a\xef\xa7\xeb\x4e\x00\x73\x68\xb6\xe6\x36\xbc\
\x16\xdf\x6b\x5b\xf6\x9f\xb5\x6d\xb2\xec\x8f\x4b\x65\x0f\xf4\x76\
\xb1\x56\xfa\xad\x99\xd0\x3e\xb5\x5b\x6e\x57\x52\x35\xe2\xfd\x6e\
\xac\x56\x71\x7a\xa5\xd7\x6c\x16\xe5\xcb\x99\x80\xfa\x3a\x7b\x5d\
\x56\x35\x9f\x66\xf4\x71\x1b\xe8\xb6\x87\xfa\xdf\x9f\x57\xef\xed\
\xe7\xf4\x2a\x6a\xc2\xca\xb7\x0e\xf6\x75\x8c\x88\x07\xeb\x5f\x4e\
\xc4\x76\xfb\xb3\x6e\x0e\xfd\x5d\xbb\x69\x36\x5b\xd3\x3d\x3b\xfe\
\xd3\x66\xcc\x66\x51\xff\x00\x17\xfa\x34\x94\xf7\xd8\x9e\xbf\xd9\
\x69\xfb\x49\x61\xc8\xd8\xdf\x58\xd7\x3b\x0b\xe0\x7a\x9e\x9e\xef\
\x77\xa7\xbf\xe8\x22\xaa\xdd\x35\xac\x67\x4e\xc5\x6d\x75\x3b\x1d\
\x8d\xa6\xb0\xda\x1f\x3b\xab\x01\xad\xdb\x53\xf7\x7b\xb7\xd7\xf4\
\x1c\xac\xa4\xa7\xff\xd7\xf5\x45\xc5\x7d\x62\xeb\x8e\xc2\xfa\xd5\
\x66\x16\x07\xd5\xdf\xdb\x1d\x42\xde\x9e\x0d\xd7\x36\xef\x4d\xe7\
\x19\xd6\x16\x3e\x87\x56\xea\x6d\xfd\x1f\xab\xb3\xf3\x97\x6a\xb8\
\x6e\xa4\xf7\xd7\xfe\x30\x7a\x95\x8c\x71\x63\xd9\xf5\x72\xc7\x35\
\xed\x30\x41\x17\x02\x1c\xd7\x0f\xa3\xb5\x25\x30\xc0\xfa\xc9\xf5\
\x9b\xa6\xe2\x57\x85\x83\xf5\x26\xec\x7c\x6a\xa7\xd3\xa9\x99\x22\
\x06\xe2\x6c\x77\xfd\xa7\xfc\xe7\xbd\xce\x45\xfa\xbb\x9e\xff\x00\
\xac\x16\x7d\x63\xc4\xa3\xa7\x9f\xab\x5d\x63\xf4\x2c\xca\xc9\x65\
\x9e\xbd\x86\xc7\x8b\xbd\x3b\x1c\xd0\xcc\x6f\x75\x2d\x67\xe6\xbf\
\xfc\x2a\xf3\x5f\xab\x1f\x59\xfe\xb2\x5f\xf5\x93\xa4\xd3\x77\x56\
\xcd\xb6\xab\x73\x71\xd9\x65\x6f\xc8\xb5\xcd\x73\x5d\x6d\x6d\x7b\
\x1e\xc7\x59\xb5\xcc\x73\x57\x68\x72\x2f\xc6\xc9\xff\x00\x18\xb7\
\xe3\xd8\xfa\x6e\xad\xb8\xee\xae\xda\xdc\x58\xf6\x90\xcc\x88\x73\
\x1e\xc8\x73\x5c\x92\x93\x75\x4e\x93\xd5\xda\xf6\x7d\x49\xea\x7d\
\x5a\xce\xa4\xef\xac\x60\xd9\x5f\x50\xb5\x9b\x7e\xcc\x30\xe3\x31\
\xcd\x6e\x2f\xa8\xff\x00\xb4\x7d\xa7\xd2\xf4\xff\x00\xa4\x63\xfa\
\x5f\xce\x7e\x91\x5c\xff\x00\x15\xd4\x9e\x87\x87\x91\xf5\x7f\xa9\
\x4e\x37\x53\xb7\x26\xdc\xaa\x71\xac\x10\xf7\xe3\xec\xa2\x86\xe4\
\x80\x37\x37\x63\xac\xa6\xcf\xcf\x58\xd8\x7f\xf8\xe1\x67\x5f\xf5\
\x7b\xae\xb3\xa2\xb7\x2b\xf6\x6e\x21\x14\xda\xfc\xaa\xb7\x64\x36\
\xfa\x7d\x21\x93\x71\xb6\xef\x55\x8f\x7b\x1d\xeb\x7b\xbd\xfb\xd1\
\xfa\xf7\xf8\xbd\xfa\xcd\x55\x43\xab\x74\x8e\xab\x9f\x9b\xd6\x8e\
\xda\xc3\x5d\x78\xad\xcc\xa5\xc5\xd6\x5b\x53\x72\xac\xbd\x9f\xa2\
\xae\xc3\xfc\xdb\x6d\x49\x4f\x3d\xd1\x3a\x87\xd7\x3e\xa3\x88\xfc\
\xfe\xa1\x83\x91\xf5\x87\xa6\xb6\xbb\x3e\xcf\xea\xd8\x1a\xca\x6f\
\xaf\xe8\xe7\x30\xb9\xb6\x6e\xb7\x1d\x9e\xab\x3f\xeb\x8a\x8f\x48\
\xe9\x99\xdd\x53\x29\x9f\x59\x7a\xf7\x57\x77\x48\x16\x96\xbf\x0f\
\xaa\xdd\x5f\xab\xea\xdb\x49\xf4\x76\x33\x6d\x95\x7b\xe9\xf4\x3f\
\xf0\x35\xda\xf4\xec\x5f\xab\x5f\x53\x3a\x85\xfd\x17\x2f\xeb\x16\
\x53\x8e\x4d\x0e\xa1\x9d\x3e\xca\xed\x75\x4c\x76\x41\x61\x66\x45\
\x62\xa6\x59\x8d\xea\xe9\xff\x00\x82\x23\xfd\x66\xfa\x87\x8d\x8f\
\xf5\x09\x98\x1f\x6b\x7b\x9b\xd0\xab\xc9\xcb\xad\xfb\x00\x36\x38\
\xfa\xd9\x1e\x9b\xdb\xbb\xd8\xdd\xd6\x6d\x49\x4e\x0f\x4c\xfa\xa3\
\x46\x4f\x4e\xfa\xc9\x99\xf5\x82\xf6\xb6\x8c\x87\xd3\x66\x0f\xd6\
\x0b\xea\x9d\xed\x73\xec\x73\xf2\xe8\xac\x59\xbb\xf5\x9d\xd4\x7f\
\x84\xff\x00\x0a\xa3\xd0\x3a\xaf\x5a\xc6\xea\x34\xbf\xea\xaf\x4b\
\xb3\x33\xa4\x74\xad\xd8\x99\x83\x1a\xc1\x5d\x79\xd6\xb5\x8e\xa5\
\x9d\x46\xd6\x9a\xdd\xe8\xd9\x6b\x7d\x2c\x9f\x4f\xf5\x8f\xf8\xd5\
\x1e\x91\xd7\x1f\xd3\x7e\xab\xd9\x6e\x0b\x8f\xd6\x7c\x26\x51\x47\
\xed\x8c\x3c\xf2\xe1\x4e\x09\x1a\x63\x63\xe3\x53\x95\xec\xbd\x96\
\xda\xeb\x19\xfa\xb3\x2d\xfe\x89\x57\xfc\x1a\xad\xd3\xa9\xc7\xc1\
\x65\xb9\x7d\x63\xad\xe5\x7d\x54\x1d\x59\xe7\x3f\x07\x07\x00\xd8\
\xea\x5d\x8f\x77\xbe\xab\x1a\xdc\x0d\xec\xaf\x6f\xf3\x2c\xae\xdf\
\x4e\xcf\x4e\xaf\xa0\x92\x9e\x83\x33\x0b\xa8\xdf\xf5\x72\xfe\xaf\
\xd0\xf3\xec\xeb\x3d\x79\x99\x5e\x90\xce\xa9\xbb\x6e\xc7\xa4\x86\
\xdb\x77\x4d\xdc\xe7\xbb\x75\x54\x3e\xcd\xff\x00\xf5\xe5\xcd\x7d\
\x42\x1f\xf3\x87\xad\x75\x6c\xce\xb3\x8c\x3a\xde\x55\x78\x0e\xba\
\xba\x6e\x8d\xd6\x59\x51\xa5\x94\xd6\xd7\xc7\xb1\xef\x6b\x7d\x1d\
\xeb\x5b\xea\xf5\xb8\x59\x17\xbf\xea\x87\xd5\xce\xab\x7d\xf8\xd9\
\x25\xfd\x4a\xde\xa8\xc1\x65\x17\xfa\xcd\x02\xbb\x30\x8b\x2c\xf4\
\x77\xd5\x6d\x75\x54\xf7\xd9\xff\x00\x0a\xb9\x8e\xad\x97\xd4\x3a\
\x7f\xd7\x1b\x1b\x6b\x4f\xd5\x53\x6b\xa8\xaf\x32\xae\x9e\xf8\x6d\
\x34\xb9\xb4\x9b\x1e\xdf\xb0\x9d\xb6\xfb\x3f\x59\xf4\x99\xfe\x13\
\xf9\x69\x29\xd8\xfa\xf7\x8d\x4f\x4c\xe9\xbd\x03\xab\x60\xf4\xa6\
\xfd\x5e\xea\x36\x5b\x7d\x8f\xa1\x87\x75\x8c\x75\x4e\xaf\xec\xee\
\x75\x9b\x59\xbb\x8f\x59\xbe\xcf\x67\xa8\xba\xbf\xa9\xbf\x55\x7a\
\x93\xbe\xaf\x67\x75\x16\xf5\x8b\x19\x9f\xf5\x96\xaa\x2f\x39\x42\
\xa8\x7d\x0f\x1e\xa5\xaf\xf7\x0b\xbf\x4d\xbf\xd7\xd9\xbb\xf4\x0b\
\x8d\xc5\xca\xfa\xb1\x95\xf5\x81\xee\xeb\x9f\x59\x32\xb3\xfa\x5f\
\x4e\xb6\x8b\x7a\x79\xcb\xae\xec\x86\xde\x08\x6d\x99\x75\x5b\x4d\
\xac\xb7\xd2\x66\xe6\x7a\x0f\xfd\x17\xe9\x96\x97\xd6\xbc\x3e\xb3\
\x56\x5f\x4a\x77\xd5\x2e\xaf\x9b\x6e\x3f\x5f\x37\x59\x83\x85\x55\
\xcf\xc6\xa6\xaa\xeb\x15\x59\x55\x38\xd5\xba\xca\x2b\xa6\xa6\xd7\
\x6f\xb5\x8f\x6d\x5f\x41\x25\x3e\xb5\x8b\x55\x94\xe3\x55\x55\xb6\
\x1b\xac\xad\x8d\x6b\xee\x22\x0b\xdc\xd0\x1a\xeb\x0b\x75\xdb\xbd\
\xde\xe4\x55\x5b\xa6\x33\x22\xbe\x9d\x8a\xcc\xa9\xfb\x4b\x29\xad\
\xb7\x6e\x76\xe7\x6f\x0d\x68\xb3\x73\xe5\xdb\xdd\xbf\xf3\xf7\x2b\
\x29\x29\xff\xd0\xf5\x45\xc7\xf5\xce\x89\xf5\xac\x7d\x6b\x77\x5d\
\xe8\x4d\xc1\xb1\x96\x60\x8c\x1b\x19\x9c\x6c\x82\x0d\x86\xfb\x3f\
\x47\x46\xdf\xdd\xaf\xf3\xd7\x60\x92\x4a\x78\x5a\xfa\x67\xd7\xfa\
\xdc\xd7\xd7\xd2\xfe\xae\x31\xd5\x90\xe6\x39\xb5\x5c\x0b\x4b\x75\
\x6b\x9a\x41\xf6\xed\x57\x7e\xa9\x7d\x5c\xeb\x58\xb9\xfd\x73\x3b\
\xeb\x0b\x31\x1e\xee\xb2\x68\x2e\xab\x1f\x73\xea\x3e\x98\xb9\x96\
\xb5\xd5\xe4\x0f\xa2\xef\x51\x9f\xe9\x17\x5a\x92\x4a\x79\x1c\xaf\
\xf1\x6b\xd3\x32\x72\x6e\xbc\x75\x4e\xa9\x43\x6e\x7b\x9f\xe8\x53\
\x90\xc6\x54\xc0\xe2\x5d\xe8\xd1\x57\xa0\x7d\x3a\x6b\x9d\x95\xd7\
\xfb\x8b\x70\x74\x2a\x07\x58\xa3\xab\xfd\xa3\x20\xdb\x46\x37\xd9\
\x05\x05\xe3\xd1\x73\x41\x73\xfd\x5b\x6b\xd9\xb9\xd9\x1e\xef\xe7\
\x37\xad\x24\x92\x53\xe7\x5f\x51\xfe\xa0\x75\xce\x95\xd7\x6d\xea\
\x3f\x58\x5d\x46\x75\x6f\xc6\x35\x56\x5c\xf7\x5e\xf1\x60\x7d\x16\
\x54\xef\xd3\xd7\xed\xf4\xd9\x4b\xf6\xae\x93\xac\x7d\x56\xfb\x4b\
\x7a\xde\x56\x2e\x45\xce\xcc\xea\xf8\x6e\xc5\x18\xf6\xd8\x3e\xcc\
\xc3\xe9\x8a\x6b\x75\x75\x86\x6f\xaf\xe8\x7b\xfd\xcf\xff\x00\x08\
\xba\x14\xe9\x29\xe1\x7f\xc5\xdf\xd4\x7e\xa1\xf5\x7a\x9e\xa7\x47\
\x59\x6e\x3e\x45\x59\xde\x88\x6d\x6c\x26\xc6\x91\x5f\xad\xbf\xd5\
\x65\xb5\xb1\xbf\xe1\x58\xac\xfd\x62\xfa\xb9\xd6\xba\xef\x40\xea\
\x9d\x3e\xec\x6c\x0a\xf2\x7d\x56\xd7\xd2\x2c\xac\x16\x96\xe2\xb2\
\xda\xed\x63\x6e\xb1\xe2\xcf\x4a\xcf\x46\xbf\xa3\x47\xe8\x97\x62\
\x92\x4a\x79\x3c\xef\xaa\x99\x39\xb9\x18\xb8\x4d\xae\x8c\x1e\x98\
\xca\x18\xeb\xf2\xf0\xff\x00\x45\x9b\xf6\x86\x4f\xe8\xeb\xb7\x63\
\xab\xfb\x23\xdb\xe9\xee\xfd\x1e\xf5\x6f\x2b\xea\x47\x47\xcb\xea\
\xbd\x4b\xaa\xde\xeb\x5f\x7f\x55\xc6\x38\xb7\x34\xfa\x65\x95\xb4\
\xb2\xba\x7d\x5c\x60\xfa\x5c\xfa\xef\x6b\x69\xfa\x6f\x7d\x8b\xa1\
\x4c\x92\x9f\x32\xea\x3f\xe2\xf3\xeb\x0d\x59\x1d\x3f\x1f\xa3\xd7\
\x80\xfe\x9d\xd1\xae\xf5\xb0\xac\xcb\x2e\xf5\xee\xdc\x59\x91\x63\
\x3a\x8f\xa3\x5b\x6b\xba\xb6\xdd\xb9\x8c\xf4\xd9\x57\xe8\x57\x62\
\xcf\xab\x8d\xcc\x77\x44\xea\x1d\x48\x0c\x7c\xfe\x8c\xd7\x16\x51\
\x87\x0d\xc6\xdf\x6b\x58\xcb\x58\x19\x63\x1f\x67\xa2\xdf\x4f\xf4\
\x5b\x5f\x5a\xdd\x49\x25\x2c\x9d\x24\x92\x53\xff\xd9\x00\x38\x42\
\x49\x4d\x04\x21\x00\x00\x00\x00\x00\x53\x00\x00\x00\x01\x01\x00\
\x00\x00\x0f\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\x20\x00\
\x50\x00\x68\x00\x6f\x00\x74\x00\x6f\x00\x73\x00\x68\x00\x6f\x00\
\x70\x00\x00\x00\x12\x00\x41\x00\x64\x00\x6f\x00\x62\x00\x65\x00\
\x20\x00\x50\x00\x68\x00\x6f\x00\x74\x00\x6f\x00\x73\x00\x68\x00\
\x6f\x00\x70\x00\x20\x00\x43\x00\x43\x00\x00\x00\x01\x00\x38\x42\
\x49\x4d\x04\x06\x00\x00\x00\x00\x00\x07\x00\x08\x00\x00\x00\x01\
\x01\x00\xff\xe1\x0e\x48\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\
\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\
\x30\x2f\x00\x3c\x3f\x78\x70\x61\x63\x6b\x65\x74\x20\x62\x65\x67\
\x69\x6e\x3d\x22\xef\xbb\xbf\x22\x20\x69\x64\x3d\x22\x57\x35\x4d\
\x30\x4d\x70\x43\x65\x68\x69\x48\x7a\x72\x65\x53\x7a\x4e\x54\x63\
\x7a\x6b\x63\x39\x64\x22\x3f\x3e\x20\x3c\x78\x3a\x78\x6d\x70\x6d\
\x65\x74\x61\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x3d\x22\x61\x64\x6f\
\x62\x65\x3a\x6e\x73\x3a\x6d\x65\x74\x61\x2f\x22\x20\x78\x3a\x78\
\x6d\x70\x74\x6b\x3d\x22\x41\x64\x6f\x62\x65\x20\x58\x4d\x50\x20\
\x43\x6f\x72\x65\x20\x35\x2e\x36\x2d\x63\x31\x34\x32\x20\x37\x39\
\x2e\x31\x36\x30\x39\x32\x34\x2c\x20\x32\x30\x31\x37\x2f\x30\x37\
\x2f\x31\x33\x2d\x30\x31\x3a\x30\x36\x3a\x33\x39\x20\x20\x20\x20\
\x20\x20\x20\x20\x22\x3e\x20\x3c\x72\x64\x66\x3a\x52\x44\x46\x20\
\x78\x6d\x6c\x6e\x73\x3a\x72\x64\x66\x3d\x22\x68\x74\x74\x70\x3a\
\x2f\x2f\x77\x77\x77\x2e\x77\x33\x2e\x6f\x72\x67\x2f\x31\x39\x39\
\x39\x2f\x30\x32\x2f\x32\x32\x2d\x72\x64\x66\x2d\x73\x79\x6e\x74\
\x61\x78\x2d\x6e\x73\x23\x22\x3e\x20\x3c\x72\x64\x66\x3a\x44\x65\
\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x20\x72\x64\x66\x3a\x61\x62\
\x6f\x75\x74\x3d\x22\x22\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\
\x3d\x22\x68\x74\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\
\x65\x2e\x63\x6f\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x22\x20\
\x78\x6d\x6c\x6e\x73\x3a\x64\x63\x3d\x22\x68\x74\x74\x70\x3a\x2f\
\x2f\x70\x75\x72\x6c\x2e\x6f\x72\x67\x2f\x64\x63\x2f\x65\x6c\x65\
\x6d\x65\x6e\x74\x73\x2f\x31\x2e\x31\x2f\x22\x20\x78\x6d\x6c\x6e\
\x73\x3a\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3d\x22\x68\x74\x74\
\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\
\x2f\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x2f\x31\x2e\x30\x2f\x22\
\x20\x78\x6d\x6c\x6e\x73\x3a\x78\x6d\x70\x4d\x4d\x3d\x22\x68\x74\
\x74\x70\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\
\x6d\x2f\x78\x61\x70\x2f\x31\x2e\x30\x2f\x6d\x6d\x2f\x22\x20\x78\
\x6d\x6c\x6e\x73\x3a\x73\x74\x45\x76\x74\x3d\x22\x68\x74\x74\x70\
\x3a\x2f\x2f\x6e\x73\x2e\x61\x64\x6f\x62\x65\x2e\x63\x6f\x6d\x2f\
\x78\x61\x70\x2f\x31\x2e\x30\x2f\x73\x54\x79\x70\x65\x2f\x52\x65\
\x73\x6f\x75\x72\x63\x65\x45\x76\x65\x6e\x74\x23\x22\x20\x78\x6d\
\x70\x3a\x43\x72\x65\x61\x74\x6f\x72\x54\x6f\x6f\x6c\x3d\x22\x41\
\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\x43\
\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x78\x6d\x70\
\x3a\x43\x72\x65\x61\x74\x65\x44\x61\x74\x65\x3d\x22\x32\x30\x32\
\x30\x2d\x30\x37\x2d\x30\x35\x54\x31\x35\x3a\x35\x35\x3a\x34\x33\
\x2b\x30\x38\x3a\x30\x30\x22\x20\x78\x6d\x70\x3a\x4d\x6f\x64\x69\
\x66\x79\x44\x61\x74\x65\x3d\x22\x32\x30\x32\x30\x2d\x30\x37\x2d\
\x30\x35\x54\x31\x36\x3a\x33\x33\x3a\x34\x31\x2b\x30\x38\x3a\x30\
\x30\x22\x20\x78\x6d\x70\x3a\x4d\x65\x74\x61\x64\x61\x74\x61\x44\
\x61\x74\x65\x3d\x22\x32\x30\x32\x30\x2d\x30\x37\x2d\x30\x35\x54\
\x31\x36\x3a\x33\x33\x3a\x34\x31\x2b\x30\x38\x3a\x30\x30\x22\x20\
\x64\x63\x3a\x66\x6f\x72\x6d\x61\x74\x3d\x22\x69\x6d\x61\x67\x65\
\x2f\x6a\x70\x65\x67\x22\x20\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\
\x3a\x43\x6f\x6c\x6f\x72\x4d\x6f\x64\x65\x3d\x22\x33\x22\x20\x70\
\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\x49\x43\x43\x50\x72\x6f\x66\
\x69\x6c\x65\x3d\x22\x73\x52\x47\x42\x20\x49\x45\x43\x36\x31\x39\
\x36\x36\x2d\x32\x2e\x31\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x49\x6e\
\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\
\x64\x3a\x31\x37\x32\x32\x62\x38\x35\x39\x2d\x39\x36\x64\x62\x2d\
\x34\x62\x34\x65\x2d\x61\x36\x61\x34\x2d\x30\x34\x30\x63\x66\x33\
\x33\x33\x62\x33\x33\x39\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x44\x6f\
\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\x61\x64\x6f\x62\x65\x3a\
\x64\x6f\x63\x69\x64\x3a\x70\x68\x6f\x74\x6f\x73\x68\x6f\x70\x3a\
\x61\x36\x38\x62\x36\x36\x37\x66\x2d\x32\x64\x35\x65\x2d\x36\x61\
\x34\x32\x2d\x62\x37\x32\x66\x2d\x63\x63\x64\x38\x36\x35\x62\x64\
\x33\x30\x34\x33\x22\x20\x78\x6d\x70\x4d\x4d\x3a\x4f\x72\x69\x67\
\x69\x6e\x61\x6c\x44\x6f\x63\x75\x6d\x65\x6e\x74\x49\x44\x3d\x22\
\x78\x6d\x70\x2e\x64\x69\x64\x3a\x32\x39\x39\x65\x39\x34\x62\x38\
\x2d\x61\x31\x62\x31\x2d\x39\x33\x34\x36\x2d\x61\x30\x35\x36\x2d\
\x30\x62\x66\x63\x62\x31\x38\x34\x32\x38\x64\x33\x22\x3e\x20\x3c\
\x78\x6d\x70\x4d\x4d\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\
\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\
\x20\x73\x74\x45\x76\x74\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x63\
\x72\x65\x61\x74\x65\x64\x22\x20\x73\x74\x45\x76\x74\x3a\x69\x6e\
\x73\x74\x61\x6e\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\
\x64\x3a\x32\x39\x39\x65\x39\x34\x62\x38\x2d\x61\x31\x62\x31\x2d\
\x39\x33\x34\x36\x2d\x61\x30\x35\x36\x2d\x30\x62\x66\x63\x62\x31\
\x38\x34\x32\x38\x64\x33\x22\x20\x73\x74\x45\x76\x74\x3a\x77\x68\
\x65\x6e\x3d\x22\x32\x30\x32\x30\x2d\x30\x37\x2d\x30\x35\x54\x31\
\x35\x3a\x35\x35\x3a\x34\x33\x2b\x30\x38\x3a\x30\x30\x22\x20\x73\
\x74\x45\x76\x74\x3a\x73\x6f\x66\x74\x77\x61\x72\x65\x41\x67\x65\
\x6e\x74\x3d\x22\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\
\x68\x6f\x70\x20\x43\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\
\x22\x2f\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\x74\x45\x76\
\x74\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x63\x6f\x6e\x76\x65\x72\
\x74\x65\x64\x22\x20\x73\x74\x45\x76\x74\x3a\x70\x61\x72\x61\x6d\
\x65\x74\x65\x72\x73\x3d\x22\x66\x72\x6f\x6d\x20\x69\x6d\x61\x67\
\x65\x2f\x70\x6e\x67\x20\x74\x6f\x20\x69\x6d\x61\x67\x65\x2f\x6a\
\x70\x65\x67\x22\x2f\x3e\x20\x3c\x72\x64\x66\x3a\x6c\x69\x20\x73\
\x74\x45\x76\x74\x3a\x61\x63\x74\x69\x6f\x6e\x3d\x22\x73\x61\x76\
\x65\x64\x22\x20\x73\x74\x45\x76\x74\x3a\x69\x6e\x73\x74\x61\x6e\
\x63\x65\x49\x44\x3d\x22\x78\x6d\x70\x2e\x69\x69\x64\x3a\x31\x37\
\x32\x32\x62\x38\x35\x39\x2d\x39\x36\x64\x62\x2d\x34\x62\x34\x65\
\x2d\x61\x36\x61\x34\x2d\x30\x34\x30\x63\x66\x33\x33\x33\x62\x33\
\x33\x39\x22\x20\x73\x74\x45\x76\x74\x3a\x77\x68\x65\x6e\x3d\x22\
\x32\x30\x32\x30\x2d\x30\x37\x2d\x30\x35\x54\x31\x36\x3a\x33\x33\
\x3a\x34\x31\x2b\x30\x38\x3a\x30\x30\x22\x20\x73\x74\x45\x76\x74\
\x3a\x73\x6f\x66\x74\x77\x61\x72\x65\x41\x67\x65\x6e\x74\x3d\x22\
\x41\x64\x6f\x62\x65\x20\x50\x68\x6f\x74\x6f\x73\x68\x6f\x70\x20\
\x43\x43\x20\x28\x57\x69\x6e\x64\x6f\x77\x73\x29\x22\x20\x73\x74\
\x45\x76\x74\x3a\x63\x68\x61\x6e\x67\x65\x64\x3d\x22\x2f\x22\x2f\
\x3e\x20\x3c\x2f\x72\x64\x66\x3a\x53\x65\x71\x3e\x20\x3c\x2f\x78\
\x6d\x70\x4d\x4d\x3a\x48\x69\x73\x74\x6f\x72\x79\x3e\x20\x3c\x2f\
\x72\x64\x66\x3a\x44\x65\x73\x63\x72\x69\x70\x74\x69\x6f\x6e\x3e\
\x20\x3c\x2f\x72\x64\x66\x3a\x52\x44\x46\x3e\x20\x3c\x2f\x78\x3a\
\x78\x6d\x70\x6d\x65\x74\x61\x3e\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\
\x20\x20\x20\x20\x20\x20\x20\x20\x20\x3c\x3f\x78\x70\x61\x63\x6b\
\x65\x74\x20\x65\x6e\x64\x3d\x22\x77\x22\x3f\x3e\xff\xe2\x0c\x58\
\x49\x43\x43\x5f\x50\x52\x4f\x46\x49\x4c\x45\x00\x01\x01\x00\x00\
\x0c\x48\x4c\x69\x6e\x6f\x02\x10\x00\x00\x6d\x6e\x74\x72\x52\x47\
\x42\x20\x58\x59\x5a\x20\x07\xce\x00\x02\x00\x09\x00\x06\x00\x31\
\x00\x00\x61\x63\x73\x70\x4d\x53\x46\x54\x00\x00\x00\x00\x49\x45\
\x43\x20\x73\x52\x47\x42\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\xf6\xd6\x00\x01\x00\x00\x00\x00\xd3\x2d\x48\x50\
\x20\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x11\x63\x70\x72\x74\x00\x00\x01\x50\x00\x00\x00\x33\x64\x65\
\x73\x63\x00\x00\x01\x84\x00\x00\x00\x6c\x77\x74\x70\x74\x00\x00\
\x01\xf0\x00\x00\x00\x14\x62\x6b\x70\x74\x00\x00\x02\x04\x00\x00\
\x00\x14\x72\x58\x59\x5a\x00\x00\x02\x18\x00\x00\x00\x14\x67\x58\
\x59\x5a\x00\x00\x02\x2c\x00\x00\x00\x14\x62\x58\x59\x5a\x00\x00\
\x02\x40\x00\x00\x00\x14\x64\x6d\x6e\x64\x00\x00\x02\x54\x00\x00\
\x00\x70\x64\x6d\x64\x64\x00\x00\x02\xc4\x00\x00\x00\x88\x76\x75\
\x65\x64\x00\x00\x03\x4c\x00\x00\x00\x86\x76\x69\x65\x77\x00\x00\
\x03\xd4\x00\x00\x00\x24\x6c\x75\x6d\x69\x00\x00\x03\xf8\x00\x00\
\x00\x14\x6d\x65\x61\x73\x00\x00\x04\x0c\x00\x00\x00\x24\x74\x65\
\x63\x68\x00\x00\x04\x30\x00\x00\x00\x0c\x72\x54\x52\x43\x00\x00\
\x04\x3c\x00\x00\x08\x0c\x67\x54\x52\x43\x00\x00\x04\x3c\x00\x00\
\x08\x0c\x62\x54\x52\x43\x00\x00\x04\x3c\x00\x00\x08\x0c\x74\x65\
\x78\x74\x00\x00\x00\x00\x43\x6f\x70\x79\x72\x69\x67\x68\x74\x20\
\x28\x63\x29\x20\x31\x39\x39\x38\x20\x48\x65\x77\x6c\x65\x74\x74\
\x2d\x50\x61\x63\x6b\x61\x72\x64\x20\x43\x6f\x6d\x70\x61\x6e\x79\
\x00\x00\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\x12\x73\x52\
\x47\x42\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x12\x73\x52\x47\x42\x20\
\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x58\x59\
\x5a\x20\x00\x00\x00\x00\x00\x00\xf3\x51\x00\x01\x00\x00\x00\x01\
\x16\xcc\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x00\
\x6f\xa2\x00\x00\x38\xf5\x00\x00\x03\x90\x58\x59\x5a\x20\x00\x00\
\x00\x00\x00\x00\x62\x99\x00\x00\xb7\x85\x00\x00\x18\xda\x58\x59\
\x5a\x20\x00\x00\x00\x00\x00\x00\x24\xa0\x00\x00\x0f\x84\x00\x00\
\xb6\xcf\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\x16\x49\x45\
\x43\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x65\x63\
\x2e\x63\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x16\x49\
\x45\x43\x20\x68\x74\x74\x70\x3a\x2f\x2f\x77\x77\x77\x2e\x69\x65\
\x63\x2e\x63\x68\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x64\x65\x73\x63\x00\x00\x00\x00\x00\x00\x00\x2e\x49\x45\
\x43\x20\x36\x31\x39\x36\x36\x2d\x32\x2e\x31\x20\x44\x65\x66\x61\
\x75\x6c\x74\x20\x52\x47\x42\x20\x63\x6f\x6c\x6f\x75\x72\x20\x73\
\x70\x61\x63\x65\x20\x2d\x20\x73\x52\x47\x42\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x2e\x49\x45\x43\x20\x36\x31\x39\x36\x36\
\x2d\x32\x2e\x31\x20\x44\x65\x66\x61\x75\x6c\x74\x20\x52\x47\x42\
\x20\x63\x6f\x6c\x6f\x75\x72\x20\x73\x70\x61\x63\x65\x20\x2d\x20\
\x73\x52\x47\x42\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x64\x65\x73\x63\x00\x00\
\x00\x00\x00\x00\x00\x2c\x52\x65\x66\x65\x72\x65\x6e\x63\x65\x20\
\x56\x69\x65\x77\x69\x6e\x67\x20\x43\x6f\x6e\x64\x69\x74\x69\x6f\
\x6e\x20\x69\x6e\x20\x49\x45\x43\x36\x31\x39\x36\x36\x2d\x32\x2e\
\x31\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x2c\x52\x65\x66\
\x65\x72\x65\x6e\x63\x65\x20\x56\x69\x65\x77\x69\x6e\x67\x20\x43\
\x6f\x6e\x64\x69\x74\x69\x6f\x6e\x20\x69\x6e\x20\x49\x45\x43\x36\
\x31\x39\x36\x36\x2d\x32\x2e\x31\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x76\x69\x65\x77\x00\x00\x00\x00\x00\x13\xa4\xfe\x00\x14\
\x5f\x2e\x00\x10\xcf\x14\x00\x03\xed\xcc\x00\x04\x13\x0b\x00\x03\
\x5c\x9e\x00\x00\x00\x01\x58\x59\x5a\x20\x00\x00\x00\x00\x00\x4c\
\x09\x56\x00\x50\x00\x00\x00\x57\x1f\xe7\x6d\x65\x61\x73\x00\x00\
\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x00\x02\x8f\x00\x00\x00\x02\x73\x69\
\x67\x20\x00\x00\x00\x00\x43\x52\x54\x20\x63\x75\x72\x76\x00\x00\
\x00\x00\x00\x00\x04\x00\x00\x00\x00\x05\x00\x0a\x00\x0f\x00\x14\
\x00\x19\x00\x1e\x00\x23\x00\x28\x00\x2d\x00\x32\x00\x37\x00\x3b\
\x00\x40\x00\x45\x00\x4a\x00\x4f\x00\x54\x00\x59\x00\x5e\x00\x63\
\x00\x68\x00\x6d\x00\x72\x00\x77\x00\x7c\x00\x81\x00\x86\x00\x8b\
\x00\x90\x00\x95\x00\x9a\x00\x9f\x00\xa4\x00\xa9\x00\xae\x00\xb2\
\x00\xb7\x00\xbc\x00\xc1\x00\xc6\x00\xcb\x00\xd0\x00\xd5\x00\xdb\
\x00\xe0\x00\xe5\x00\xeb\x00\xf0\x00\xf6\x00\xfb\x01\x01\x01\x07\
\x01\x0d\x01\x13\x01\x19\x01\x1f\x01\x25\x01\x2b\x01\x32\x01\x38\
\x01\x3e\x01\x45\x01\x4c\x01\x52\x01\x59\x01\x60\x01\x67\x01\x6e\
\x01\x75\x01\x7c\x01\x83\x01\x8b\x01\x92\x01\x9a\x01\xa1\x01\xa9\
\x01\xb1\x01\xb9\x01\xc1\x01\xc9\x01\xd1\x01\xd9\x01\xe1\x01\xe9\
\x01\xf2\x01\xfa\x02\x03\x02\x0c\x02\x14\x02\x1d\x02\x26\x02\x2f\
\x02\x38\x02\x41\x02\x4b\x02\x54\x02\x5d\x02\x67\x02\x71\x02\x7a\
\x02\x84\x02\x8e\x02\x98\x02\xa2\x02\xac\x02\xb6\x02\xc1\x02\xcb\
\x02\xd5\x02\xe0\x02\xeb\x02\xf5\x03\x00\x03\x0b\x03\x16\x03\x21\
\x03\x2d\x03\x38\x03\x43\x03\x4f\x03\x5a\x03\x66\x03\x72\x03\x7e\
\x03\x8a\x03\x96\x03\xa2\x03\xae\x03\xba\x03\xc7\x03\xd3\x03\xe0\
\x03\xec\x03\xf9\x04\x06\x04\x13\x04\x20\x04\x2d\x04\x3b\x04\x48\
\x04\x55\x04\x63\x04\x71\x04\x7e\x04\x8c\x04\x9a\x04\xa8\x04\xb6\
\x04\xc4\x04\xd3\x04\xe1\x04\xf0\x04\xfe\x05\x0d\x05\x1c\x05\x2b\
\x05\x3a\x05\x49\x05\x58\x05\x67\x05\x77\x05\x86\x05\x96\x05\xa6\
\x05\xb5\x05\xc5\x05\xd5\x05\xe5\x05\xf6\x06\x06\x06\x16\x06\x27\
\x06\x37\x06\x48\x06\x59\x06\x6a\x06\x7b\x06\x8c\x06\x9d\x06\xaf\
\x06\xc0\x06\xd1\x06\xe3\x06\xf5\x07\x07\x07\x19\x07\x2b\x07\x3d\
\x07\x4f\x07\x61\x07\x74\x07\x86\x07\x99\x07\xac\x07\xbf\x07\xd2\
\x07\xe5\x07\xf8\x08\x0b\x08\x1f\x08\x32\x08\x46\x08\x5a\x08\x6e\
\x08\x82\x08\x96\x08\xaa\x08\xbe\x08\xd2\x08\xe7\x08\xfb\x09\x10\
\x09\x25\x09\x3a\x09\x4f\x09\x64\x09\x79\x09\x8f\x09\xa4\x09\xba\
\x09\xcf\x09\xe5\x09\xfb\x0a\x11\x0a\x27\x0a\x3d\x0a\x54\x0a\x6a\
\x0a\x81\x0a\x98\x0a\xae\x0a\xc5\x0a\xdc\x0a\xf3\x0b\x0b\x0b\x22\
\x0b\x39\x0b\x51\x0b\x69\x0b\x80\x0b\x98\x0b\xb0\x0b\xc8\x0b\xe1\
\x0b\xf9\x0c\x12\x0c\x2a\x0c\x43\x0c\x5c\x0c\x75\x0c\x8e\x0c\xa7\
\x0c\xc0\x0c\xd9\x0c\xf3\x0d\x0d\x0d\x26\x0d\x40\x0d\x5a\x0d\x74\
\x0d\x8e\x0d\xa9\x0d\xc3\x0d\xde\x0d\xf8\x0e\x13\x0e\x2e\x0e\x49\
\x0e\x64\x0e\x7f\x0e\x9b\x0e\xb6\x0e\xd2\x0e\xee\x0f\x09\x0f\x25\
\x0f\x41\x0f\x5e\x0f\x7a\x0f\x96\x0f\xb3\x0f\xcf\x0f\xec\x10\x09\
\x10\x26\x10\x43\x10\x61\x10\x7e\x10\x9b\x10\xb9\x10\xd7\x10\xf5\
\x11\x13\x11\x31\x11\x4f\x11\x6d\x11\x8c\x11\xaa\x11\xc9\x11\xe8\
\x12\x07\x12\x26\x12\x45\x12\x64\x12\x84\x12\xa3\x12\xc3\x12\xe3\
\x13\x03\x13\x23\x13\x43\x13\x63\x13\x83\x13\xa4\x13\xc5\x13\xe5\
\x14\x06\x14\x27\x14\x49\x14\x6a\x14\x8b\x14\xad\x14\xce\x14\xf0\
\x15\x12\x15\x34\x15\x56\x15\x78\x15\x9b\x15\xbd\x15\xe0\x16\x03\
\x16\x26\x16\x49\x16\x6c\x16\x8f\x16\xb2\x16\xd6\x16\xfa\x17\x1d\
\x17\x41\x17\x65\x17\x89\x17\xae\x17\xd2\x17\xf7\x18\x1b\x18\x40\
\x18\x65\x18\x8a\x18\xaf\x18\xd5\x18\xfa\x19\x20\x19\x45\x19\x6b\
\x19\x91\x19\xb7\x19\xdd\x1a\x04\x1a\x2a\x1a\x51\x1a\x77\x1a\x9e\
\x1a\xc5\x1a\xec\x1b\x14\x1b\x3b\x1b\x63\x1b\x8a\x1b\xb2\x1b\xda\
\x1c\x02\x1c\x2a\x1c\x52\x1c\x7b\x1c\xa3\x1c\xcc\x1c\xf5\x1d\x1e\
\x1d\x47\x1d\x70\x1d\x99\x1d\xc3\x1d\xec\x1e\x16\x1e\x40\x1e\x6a\
\x1e\x94\x1e\xbe\x1e\xe9\x1f\x13\x1f\x3e\x1f\x69\x1f\x94\x1f\xbf\
\x1f\xea\x20\x15\x20\x41\x20\x6c\x20\x98\x20\xc4\x20\xf0\x21\x1c\
\x21\x48\x21\x75\x21\xa1\x21\xce\x21\xfb\x22\x27\x22\x55\x22\x82\
\x22\xaf\x22\xdd\x23\x0a\x23\x38\x23\x66\x23\x94\x23\xc2\x23\xf0\
\x24\x1f\x24\x4d\x24\x7c\x24\xab\x24\xda\x25\x09\x25\x38\x25\x68\
\x25\x97\x25\xc7\x25\xf7\x26\x27\x26\x57\x26\x87\x26\xb7\x26\xe8\
\x27\x18\x27\x49\x27\x7a\x27\xab\x27\xdc\x28\x0d\x28\x3f\x28\x71\
\x28\xa2\x28\xd4\x29\x06\x29\x38\x29\x6b\x29\x9d\x29\xd0\x2a\x02\
\x2a\x35\x2a\x68\x2a\x9b\x2a\xcf\x2b\x02\x2b\x36\x2b\x69\x2b\x9d\
\x2b\xd1\x2c\x05\x2c\x39\x2c\x6e\x2c\xa2\x2c\xd7\x2d\x0c\x2d\x41\
\x2d\x76\x2d\xab\x2d\xe1\x2e\x16\x2e\x4c\x2e\x82\x2e\xb7\x2e\xee\
\x2f\x24\x2f\x5a\x2f\x91\x2f\xc7\x2f\xfe\x30\x35\x30\x6c\x30\xa4\
\x30\xdb\x31\x12\x31\x4a\x31\x82\x31\xba\x31\xf2\x32\x2a\x32\x63\
\x32\x9b\x32\xd4\x33\x0d\x33\x46\x33\x7f\x33\xb8\x33\xf1\x34\x2b\
\x34\x65\x34\x9e\x34\xd8\x35\x13\x35\x4d\x35\x87\x35\xc2\x35\xfd\
\x36\x37\x36\x72\x36\xae\x36\xe9\x37\x24\x37\x60\x37\x9c\x37\xd7\
\x38\x14\x38\x50\x38\x8c\x38\xc8\x39\x05\x39\x42\x39\x7f\x39\xbc\
\x39\xf9\x3a\x36\x3a\x74\x3a\xb2\x3a\xef\x3b\x2d\x3b\x6b\x3b\xaa\
\x3b\xe8\x3c\x27\x3c\x65\x3c\xa4\x3c\xe3\x3d\x22\x3d\x61\x3d\xa1\
\x3d\xe0\x3e\x20\x3e\x60\x3e\xa0\x3e\xe0\x3f\x21\x3f\x61\x3f\xa2\
\x3f\xe2\x40\x23\x40\x64\x40\xa6\x40\xe7\x41\x29\x41\x6a\x41\xac\
\x41\xee\x42\x30\x42\x72\x42\xb5\x42\xf7\x43\x3a\x43\x7d\x43\xc0\
\x44\x03\x44\x47\x44\x8a\x44\xce\x45\x12\x45\x55\x45\x9a\x45\xde\
\x46\x22\x46\x67\x46\xab\x46\xf0\x47\x35\x47\x7b\x47\xc0\x48\x05\
\x48\x4b\x48\x91\x48\xd7\x49\x1d\x49\x63\x49\xa9\x49\xf0\x4a\x37\
\x4a\x7d\x4a\xc4\x4b\x0c\x4b\x53\x4b\x9a\x4b\xe2\x4c\x2a\x4c\x72\
\x4c\xba\x4d\x02\x4d\x4a\x4d\x93\x4d\xdc\x4e\x25\x4e\x6e\x4e\xb7\
\x4f\x00\x4f\x49\x4f\x93\x4f\xdd\x50\x27\x50\x71\x50\xbb\x51\x06\
\x51\x50\x51\x9b\x51\xe6\x52\x31\x52\x7c\x52\xc7\x53\x13\x53\x5f\
\x53\xaa\x53\xf6\x54\x42\x54\x8f\x54\xdb\x55\x28\x55\x75\x55\xc2\
\x56\x0f\x56\x5c\x56\xa9\x56\xf7\x57\x44\x57\x92\x57\xe0\x58\x2f\
\x58\x7d\x58\xcb\x59\x1a\x59\x69\x59\xb8\x5a\x07\x5a\x56\x5a\xa6\
\x5a\xf5\x5b\x45\x5b\x95\x5b\xe5\x5c\x35\x5c\x86\x5c\xd6\x5d\x27\
\x5d\x78\x5d\xc9\x5e\x1a\x5e\x6c\x5e\xbd\x5f\x0f\x5f\x61\x5f\xb3\
\x60\x05\x60\x57\x60\xaa\x60\xfc\x61\x4f\x61\xa2\x61\xf5\x62\x49\
\x62\x9c\x62\xf0\x63\x43\x63\x97\x63\xeb\x64\x40\x64\x94\x64\xe9\
\x65\x3d\x65\x92\x65\xe7\x66\x3d\x66\x92\x66\xe8\x67\x3d\x67\x93\
\x67\xe9\x68\x3f\x68\x96\x68\xec\x69\x43\x69\x9a\x69\xf1\x6a\x48\
\x6a\x9f\x6a\xf7\x6b\x4f\x6b\xa7\x6b\xff\x6c\x57\x6c\xaf\x6d\x08\
\x6d\x60\x6d\xb9\x6e\x12\x6e\x6b\x6e\xc4\x6f\x1e\x6f\x78\x6f\xd1\
\x70\x2b\x70\x86\x70\xe0\x71\x3a\x71\x95\x71\xf0\x72\x4b\x72\xa6\
\x73\x01\x73\x5d\x73\xb8\x74\x14\x74\x70\x74\xcc\x75\x28\x75\x85\
\x75\xe1\x76\x3e\x76\x9b\x76\xf8\x77\x56\x77\xb3\x78\x11\x78\x6e\
\x78\xcc\x79\x2a\x79\x89\x79\xe7\x7a\x46\x7a\xa5\x7b\x04\x7b\x63\
\x7b\xc2\x7c\x21\x7c\x81\x7c\xe1\x7d\x41\x7d\xa1\x7e\x01\x7e\x62\
\x7e\xc2\x7f\x23\x7f\x84\x7f\xe5\x80\x47\x80\xa8\x81\x0a\x81\x6b\
\x81\xcd\x82\x30\x82\x92\x82\xf4\x83\x57\x83\xba\x84\x1d\x84\x80\
\x84\xe3\x85\x47\x85\xab\x86\x0e\x86\x72\x86\xd7\x87\x3b\x87\x9f\
\x88\x04\x88\x69\x88\xce\x89\x33\x89\x99\x89\xfe\x8a\x64\x8a\xca\
\x8b\x30\x8b\x96\x8b\xfc\x8c\x63\x8c\xca\x8d\x31\x8d\x98\x8d\xff\
\x8e\x66\x8e\xce\x8f\x36\x8f\x9e\x90\x06\x90\x6e\x90\xd6\x91\x3f\
\x91\xa8\x92\x11\x92\x7a\x92\xe3\x93\x4d\x93\xb6\x94\x20\x94\x8a\
\x94\xf4\x95\x5f\x95\xc9\x96\x34\x96\x9f\x97\x0a\x97\x75\x97\xe0\
\x98\x4c\x98\xb8\x99\x24\x99\x90\x99\xfc\x9a\x68\x9a\xd5\x9b\x42\
\x9b\xaf\x9c\x1c\x9c\x89\x9c\xf7\x9d\x64\x9d\xd2\x9e\x40\x9e\xae\
\x9f\x1d\x9f\x8b\x9f\xfa\xa0\x69\xa0\xd8\xa1\x47\xa1\xb6\xa2\x26\
\xa2\x96\xa3\x06\xa3\x76\xa3\xe6\xa4\x56\xa4\xc7\xa5\x38\xa5\xa9\
\xa6\x1a\xa6\x8b\xa6\xfd\xa7\x6e\xa7\xe0\xa8\x52\xa8\xc4\xa9\x37\
\xa9\xa9\xaa\x1c\xaa\x8f\xab\x02\xab\x75\xab\xe9\xac\x5c\xac\xd0\
\xad\x44\xad\xb8\xae\x2d\xae\xa1\xaf\x16\xaf\x8b\xb0\x00\xb0\x75\
\xb0\xea\xb1\x60\xb1\xd6\xb2\x4b\xb2\xc2\xb3\x38\xb3\xae\xb4\x25\
\xb4\x9c\xb5\x13\xb5\x8a\xb6\x01\xb6\x79\xb6\xf0\xb7\x68\xb7\xe0\
\xb8\x59\xb8\xd1\xb9\x4a\xb9\xc2\xba\x3b\xba\xb5\xbb\x2e\xbb\xa7\
\xbc\x21\xbc\x9b\xbd\x15\xbd\x8f\xbe\x0a\xbe\x84\xbe\xff\xbf\x7a\
\xbf\xf5\xc0\x70\xc0\xec\xc1\x67\xc1\xe3\xc2\x5f\xc2\xdb\xc3\x58\
\xc3\xd4\xc4\x51\xc4\xce\xc5\x4b\xc5\xc8\xc6\x46\xc6\xc3\xc7\x41\
\xc7\xbf\xc8\x3d\xc8\xbc\xc9\x3a\xc9\xb9\xca\x38\xca\xb7\xcb\x36\
\xcb\xb6\xcc\x35\xcc\xb5\xcd\x35\xcd\xb5\xce\x36\xce\xb6\xcf\x37\
\xcf\xb8\xd0\x39\xd0\xba\xd1\x3c\xd1\xbe\xd2\x3f\xd2\xc1\xd3\x44\
\xd3\xc6\xd4\x49\xd4\xcb\xd5\x4e\xd5\xd1\xd6\x55\xd6\xd8\xd7\x5c\
\xd7\xe0\xd8\x64\xd8\xe8\xd9\x6c\xd9\xf1\xda\x76\xda\xfb\xdb\x80\
\xdc\x05\xdc\x8a\xdd\x10\xdd\x96\xde\x1c\xde\xa2\xdf\x29\xdf\xaf\
\xe0\x36\xe0\xbd\xe1\x44\xe1\xcc\xe2\x53\xe2\xdb\xe3\x63\xe3\xeb\
\xe4\x73\xe4\xfc\xe5\x84\xe6\x0d\xe6\x96\xe7\x1f\xe7\xa9\xe8\x32\
\xe8\xbc\xe9\x46\xe9\xd0\xea\x5b\xea\xe5\xeb\x70\xeb\xfb\xec\x86\
\xed\x11\xed\x9c\xee\x28\xee\xb4\xef\x40\xef\xcc\xf0\x58\xf0\xe5\
\xf1\x72\xf1\xff\xf2\x8c\xf3\x19\xf3\xa7\xf4\x34\xf4\xc2\xf5\x50\
\xf5\xde\xf6\x6d\xf6\xfb\xf7\x8a\xf8\x19\xf8\xa8\xf9\x38\xf9\xc7\
\xfa\x57\xfa\xe7\xfb\x77\xfc\x07\xfc\x98\xfd\x29\xfd\xba\xfe\x4b\
\xfe\xdc\xff\x6d\xff\xff\xff\xee\x00\x0e\x41\x64\x6f\x62\x65\x00\
\x64\x40\x00\x00\x00\x01\xff\xdb\x00\x84\x00\x01\x01\x01\x01\x01\
\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\
\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\x01\
\x01\x01\x01\x01\x01\x01\x02\x02\x02\x02\x02\x02\x02\x02\x02\x02\
\x02\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x01\x01\x01\x01\x01\
\x01\x01\x01\x01\x01\x01\x02\x02\x01\x02\x02\x03\x03\x03\x03\x03\
\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\
\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\
\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\x03\xff\xc0\x00\x11\
\x08\x01\xfc\x01\x86\x03\x01\x11\x00\x02\x11\x01\x03\x11\x01\xff\
\xdd\x00\x04\x00\x31\xff\xc4\x01\xa2\x00\x00\x00\x06\x02\x03\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x07\x08\x06\x05\x04\x09\
\x03\x0a\x02\x01\x00\x0b\x01\x00\x00\x06\x03\x01\x01\x01\x00\x00\
\x00\x00\x00\x00\x00\x00\x00\x06\x05\x04\x03\x07\x02\x08\x01\x09\
\x00\x0a\x0b\x10\x00\x02\x01\x03\x04\x01\x03\x03\x02\x03\x03\x03\
\x02\x06\x09\x75\x01\x02\x03\x04\x11\x05\x12\x06\x21\x07\x13\x22\
\x00\x08\x31\x14\x41\x32\x23\x15\x09\x51\x42\x16\x61\x24\x33\x17\
\x52\x71\x81\x18\x62\x91\x25\x43\xa1\xb1\xf0\x26\x34\x72\x0a\x19\
\xc1\xd1\x35\x27\xe1\x53\x36\x82\xf1\x92\xa2\x44\x54\x73\x45\x46\
\x37\x47\x63\x28\x55\x56\x57\x1a\xb2\xc2\xd2\xe2\xf2\x64\x83\x74\
\x93\x84\x65\xa3\xb3\xc3\xd3\xe3\x29\x38\x66\xf3\x75\x2a\x39\x3a\
\x48\x49\x4a\x58\x59\x5a\x67\x68\x69\x6a\x76\x77\x78\x79\x7a\x85\
\x86\x87\x88\x89\x8a\x94\x95\x96\x97\x98\x99\x9a\xa4\xa5\xa6\xa7\
\xa8\xa9\xaa\xb4\xb5\xb6\xb7\xb8\xb9\xba\xc4\xc5\xc6\xc7\xc8\xc9\
\xca\xd4\xd5\xd6\xd7\xd8\xd9\xda\xe4\xe5\xe6\xe7\xe8\xe9\xea\xf4\
\xf5\xf6\xf7\xf8\xf9\xfa\x11\x00\x02\x01\x03\x02\x04\x04\x03\x05\
\x04\x04\x04\x06\x06\x05\x6d\x01\x02\x03\x11\x04\x21\x12\x05\x31\
\x06\x00\x22\x13\x41\x51\x07\x32\x61\x14\x71\x08\x42\x81\x23\x91\
\x15\x52\xa1\x62\x16\x33\x09\xb1\x24\xc1\xd1\x43\x72\xf0\x17\xe1\
\x82\x34\x25\x92\x53\x18\x63\x44\xf1\xa2\xb2\x26\x35\x19\x54\x36\
\x45\x64\x27\x0a\x73\x83\x93\x46\x74\xc2\xd2\xe2\xf2\x55\x65\x75\
\x56\x37\x84\x85\xa3\xb3\xc3\xd3\xe3\xf3\x29\x1a\x94\xa4\xb4\xc4\
\xd4\xe4\xf4\x95\xa5\xb5\xc5\xd5\xe5\xf5\x28\x47\x57\x66\x38\x76\
\x86\x96\xa6\xb6\xc6\xd6\xe6\xf6\x67\x77\x87\x97\xa7\xb7\xc7\xd7\
\xe7\xf7\x48\x58\x68\x78\x88\x98\xa8\xb8\xc8\xd8\xe8\xf8\x39\x49\
\x59\x69\x79\x89\x99\xa9\xb9\xc9\xd9\xe9\xf9\x2a\x3a\x4a\x5a\x6a\
\x7a\x8a\x9a\xaa\xba\xca\xda\xea\xfa\xff\xda\x00\x0c\x03\x01\x00\
\x02\x11\x03\x11\x00\x3f\x00\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd0\xdf\xe3\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd1\xdf\
\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5f\xff\xd2\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5f\xff\xd3\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xe2\x6d\xc9\xf7\xee\xbd\xd7\
\x1d\x6b\xfd\x7f\xde\x0f\xfc\x53\xdf\xba\xf7\x4c\x15\x3b\xbb\x6a\
\xd1\x4c\xf4\xd5\x9b\x97\x01\x49\x51\x11\xd3\x25\x3d\x4e\x63\x1f\
\x04\xd1\x9f\xe8\xf1\x4b\x50\x8e\x87\xfd\x71\xed\x7c\x7b\x56\xe7\
\x32\x2c\x90\xed\xd3\xbc\x67\x81\x11\xb9\x07\xec\x20\x53\xa2\xb9\
\xb7\xcd\x96\xde\x46\x86\x7d\xe2\xd5\x25\x1c\x55\xa5\x8c\x11\xf6\
\x82\xc0\x8e\xb0\x7f\x7e\x36\x5f\xfc\xf5\xdb\x67\xff\x00\x3f\xd8\
\xbf\xfe\xaa\xf7\x7f\xdc\xdb\xc7\xfd\x1a\xae\x7f\xe7\x13\xff\x00\
\xd0\x3d\x35\xfd\x62\xe5\xff\x00\xfa\x3e\xd9\xff\x00\xce\x68\xff\
\x00\xe8\x2e\xbd\xfd\xf8\xd9\x7f\xf3\xd7\x6d\x9f\xfc\xff\x00\x62\
\xff\x00\xfa\xab\xdf\xbf\x73\x6f\x1f\xf4\x6a\xb9\xff\x00\x9c\x4f\
\xff\x00\x40\xf5\xef\xeb\x17\x2f\xff\x00\xd1\xf6\xcf\xfe\x73\x47\
\xff\x00\x41\x75\xef\xef\xc6\xcb\xff\x00\x9e\xbb\x6c\xff\x00\xe7\
\xfb\x17\xff\x00\xd5\x5e\xfd\xfb\x9b\x78\xff\x00\xa3\x55\xcf\xfc\
\xe2\x7f\xfa\x07\xaf\x7f\x58\xb9\x7f\xfe\x8f\xb6\x7f\xf3\x9a\x3f\
\xfa\x0b\xaf\x7f\x7e\x36\x5f\xfc\xf5\xdb\x67\xff\x00\x3f\xd8\xbf\
\xfe\xaa\xf7\xef\xdc\xdb\xc7\xfd\x1a\xae\x7f\xe7\x13\xff\x00\xd0\
\x3d\x7b\xfa\xc5\xcb\xff\x00\xf4\x7d\xb3\xff\x00\x9c\xd1\xff\x00\
\xd0\x5d\x7b\xfb\xf1\xb2\xff\x00\xe7\xae\xdb\x3f\xf9\xfe\xc5\xff\
\x00\xf5\x57\xbf\x7e\xe6\xde\x3f\xe8\xd5\x73\xff\x00\x38\x9f\xfe\
\x81\xeb\xdf\xd6\x2e\x5f\xff\x00\xa3\xed\x9f\xfc\xe6\x8f\xfe\x82\
\xea\x65\x0e\xe6\xdb\x79\x39\xbe\xdb\x1b\x9f\xc2\xe4\x2a\x2c\x5b\
\xc1\x43\x94\xa2\xab\x9b\x48\xfa\x9f\x15\x3c\xf2\x3d\x87\xfa\xde\
\xd9\x9f\x6e\xdc\x2d\x93\xc4\xb9\xb0\x9a\x38\xfd\x59\x19\x47\xed\
\x20\x0e\x94\x5b\x6e\xfb\x4d\xe4\x9e\x0d\x9e\xe9\x6f\x2c\xbf\xc2\
\x92\x23\x1f\xd8\xac\x4f\x4f\x5a\x97\xfa\xfb\x47\xd1\x8f\x5c\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xff\xd4\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xc2\x42\x15\x19\x98\x85\x55\x17\
\x66\x24\x00\x00\xe4\x92\x4f\x00\x01\xef\xc0\x12\x40\x03\x3d\x68\
\x90\x01\x24\xd0\x0e\xb5\x1c\xf9\xf1\xfc\xc6\xbb\x27\xbf\x77\xde\
\xe5\xd8\xbd\x61\xbb\x32\xdb\x43\xa2\xb0\x39\x1a\xcc\x2e\x2e\x97\
\x6d\xd7\xd4\xe2\xea\xfb\x12\x3a\x29\x9a\x9e\x6d\xcb\xb9\x72\x14\
\x72\x43\x59\x5b\x8a\xca\x4b\x11\x96\x8b\x1e\x59\x69\xa2\xa6\x31\
\xb4\xb1\xb4\xfa\x98\x75\x6b\xd8\xaf\xbb\xd7\x2e\xf2\x26\xc7\xb7\
\x6f\x7c\xcb\xb5\x45\x77\xce\xf3\xc6\xb2\x3b\x4c\xa1\xd6\xd0\xb0\
\xa8\x86\x15\x60\x55\x5d\x01\xa4\x92\xd0\xb9\x7d\x41\x58\x25\x07\
\x5c\x28\xfb\xcf\xfd\xed\x79\xbf\xdd\x0e\x66\xdd\xf9\x6b\x93\x77\
\xc9\xec\x3d\xb4\xb5\x95\xe2\x8d\x6d\xdd\xa3\x6b\xe0\x87\x49\xb8\
\xb8\x75\x21\xde\x39\x08\xd5\x14\x04\x88\xd6\x3d\x05\xd0\xcb\x56\
\x15\x61\xef\x27\xba\xc2\x8e\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\
\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xac\xb0\x4f\x3d\
\x2c\xf0\xd4\xd3\x4d\x2d\x3d\x4d\x3c\x89\x34\x15\x10\x48\xf0\xcf\
\x04\xd1\xb0\x78\xe5\x86\x58\xca\xc9\x1c\x91\xb8\x05\x59\x48\x20\
\x8b\x8f\x74\x78\xd2\x54\x78\xe5\x40\xd1\xb0\xa1\x04\x54\x10\x78\
\x82\x0e\x08\x3e\x9d\x39\x14\xb2\xc1\x24\x73\x43\x23\x24\xc8\x41\
\x56\x52\x41\x04\x64\x10\x46\x41\x07\x81\x19\x1d\x5e\xbf\xf2\xc1\
\xfe\x62\x9d\x83\x4f\xd8\xbb\x63\xe3\xa7\x78\x6e\x8c\x86\xf1\xda\
\xbb\xd6\xaa\x1d\xbf\xd7\xbb\xb7\x71\x55\xcd\x90\xdc\x5b\x5f\x74\
\x4e\x04\x58\x4d\xb9\x5b\x97\xa9\x69\x2b\xb2\xf8\x0c\xfd\x40\x5a\
\x3a\x65\x9d\xa5\x9a\x92\xae\x48\x55\x1d\x69\xcb\x2a\x61\x17\xde\
\x5b\xee\xfb\xb0\x49\xcb\xdb\x9f\xb8\x5c\x95\xb6\x47\x67\xba\x59\
\x29\x96\xea\x08\x94\x2c\x53\x42\x33\x24\xab\x18\xa2\xc7\x2c\x42\
\xb2\x39\x50\xaa\xe8\x1c\x90\x64\xa1\x3d\x2d\xfb\x99\xfd\xec\x79\
\xaa\x2e\x6d\xd9\xbd\xa6\xf7\x23\x79\x97\x70\xd9\x37\x17\x10\x58\
\xdd\x4e\xc5\xe7\xb6\xb9\x38\x86\x07\x95\x89\x79\x60\x9d\xa9\x14\
\x61\xcb\x34\x52\xb4\x61\x58\x44\x48\x5d\x96\x07\xd0\x7f\xac\x3f\
\xde\xbd\xf3\x9f\xae\xbf\x75\xdf\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\
\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\
\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\
\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\
\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\
\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd5\xdf\xe3\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x74\x13\x77\xdd\x6d\
\x4e\x33\xa2\xfb\x9f\x25\x47\x2b\x43\x59\x8f\xea\x8e\xc4\xad\xa4\
\x99\x09\x57\x8a\xa6\x93\x68\xe6\x27\x82\x55\x65\x21\x83\x47\x2c\
\x60\x82\x0d\xee\x3d\x8a\x79\x1a\x18\xee\x79\xdb\x93\xed\xe6\x50\
\xd0\xc9\xba\xda\x2b\x0f\x50\xd3\xc6\x08\xfc\xc1\xe8\x0f\xee\x75\
\xc4\xd6\x7e\xdb\x7b\x85\x77\x6e\xe5\x6e\x22\xd8\xef\xdd\x48\xe2\
\x19\x6d\x65\x65\x3f\x91\x00\xf5\xa1\x1f\xbe\xe7\xf5\xf3\x11\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x0b\x9f\x1f\xf6\xfe\x1f\x76\x77\
\xcf\x49\x6d\x6d\xc3\x43\x16\x4f\x01\xb9\x7b\x73\xad\xb6\xfe\x73\
\x1b\x39\x91\x61\xc8\x61\xf3\x3b\xcb\x0d\x8e\xc9\xd0\xcc\xd1\x3c\
\x72\xac\x55\x74\x55\x2f\x1b\x15\x65\x60\x1b\x82\x0f\x3e\xc2\x9c\
\xf9\x7f\x77\xb5\xf2\x37\x39\xee\x7b\x7c\xe6\x2b\xfb\x6d\xa6\xee\
\x58\xdc\x52\xa9\x24\x76\xf2\x3a\x30\xad\x45\x55\x80\x22\xa0\x8c\
\x74\x3c\xf6\xb7\x6b\xb0\xdf\x3d\xce\xf6\xe7\x64\xdd\x6d\x96\x6d\
\xae\xf3\x7e\xdb\xe0\x9a\x33\x5a\x49\x14\xb7\x71\x47\x22\x1a\x10\
\x68\xc8\xc5\x4d\x08\x34\x38\x3d\x6d\xdf\xd9\x7f\x0a\x3e\x24\x62\
\xfa\xdf\xb0\x32\x58\xef\x8e\xbd\x4b\x47\x5f\x8e\xd9\x1b\xae\xba\
\x86\xb2\x9f\x66\xe2\x63\xa8\xa5\xac\xa4\xc0\xd7\xcf\x4d\x53\x04\
\xa2\x0d\x49\x34\x13\x46\xac\xac\x39\x0c\x01\xf7\xc9\xce\x5c\xf7\
\x9b\xdd\x6b\x9e\x62\xd8\x6d\xee\x3d\xc1\xdd\x5e\x09\x2f\x60\x56\
\x53\x70\xe4\x32\xb4\xaa\x08\x22\xb9\x04\x12\x08\xf4\xeb\xbc\x5c\
\xe1\xf7\x74\xf6\x26\xcf\x94\x79\xa6\xee\xd3\xda\x6d\x8a\x3b\xa8\
\xb6\xeb\x97\x46\x5b\x48\x83\x2b\x2c\x2e\xca\xc0\xd3\x04\x10\x08\
\x3e\xa3\xad\x2d\x3d\xf6\x3b\xaf\x9e\x1e\xbd\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xe9\x79\xd5\x95\xb5\x38\xde\xce\xeb\x9c\x8d\x14\xad\x05\
\x66\x3f\x7e\x6d\x0a\xda\x49\x90\x95\x78\x6a\x69\x77\x06\x3a\x78\
\x25\x52\xa4\x10\xd1\xcb\x18\x20\x83\x7b\x8f\x64\x7c\xcf\x0c\x77\
\x3c\xb5\xcc\x36\xf3\x2e\xa8\x64\xb1\x9d\x58\x7a\x86\x89\xc1\x1f\
\x98\x3d\x09\xb9\x2a\xe6\x6b\x3e\x72\xe5\x2b\xbb\x77\x2b\x71\x16\
\xe7\x6a\xea\x47\x10\xcb\x3c\x6c\xa4\x7d\x84\x03\xd6\xff\x00\x03\
\xe8\x3f\xd6\x1f\xef\x5e\xf8\x47\xd7\xd4\x4f\x5d\xfb\xf7\x5e\xeb\
\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\
\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\
\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\
\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbf\xff\xd6\xdf\
\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x74\x0d\xfc\x8a\xff\x00\xb2\x7d\xef\x4f\xfc\x43\xbd\x99\xff\x00\
\xbc\x5e\x6b\xd8\xbb\xdb\xff\x00\xf9\x5f\x39\x27\xfe\x96\xf6\x7f\
\xf6\x91\x1f\x40\x0f\x75\xff\x00\xe9\xd6\xfb\x95\xff\x00\x4a\x0d\
\xc3\xfe\xd1\x26\xeb\x42\xef\x7d\xca\xeb\xe6\x3f\xa1\xe7\xe3\x8e\
\xee\xe8\xfd\x93\xd9\x50\x67\x3e\x42\x75\xbe\x5b\xb5\x3a\xe9\x30\
\xb9\x6a\x59\xf6\x9e\x1b\x23\x3e\x2e\xb6\x4c\xc5\x42\x42\x31\x75\
\xe2\xaa\x9f\x33\x81\x90\x45\x44\xea\xe5\x97\xee\x00\x6d\x5f\xa5\
\xbd\x81\xbd\xc3\xda\x79\xd7\x79\xe5\xc7\xb2\xe4\x1e\x62\x8b\x6b\
\xe6\x03\x32\x30\x9e\x44\x0e\xa2\x31\x5d\x6b\xa4\xc7\x28\xab\x62\
\x87\x4f\x97\x11\xd4\x9d\xed\x1e\xfd\xed\xbf\x2e\x73\x84\x5b\x97\
\xba\xbc\xa3\x3e\xf7\xca\x62\xde\x55\x36\xd1\x48\x63\x73\x2b\x01\
\xe1\xbe\xa5\x96\x13\x44\x35\xa8\xd7\x9a\xf0\x3d\x58\x2f\xfb\x32\
\x1f\xca\x77\xfe\xf0\x7b\xb1\x3f\xf4\x36\xcb\x7f\xf6\xd0\xf7\x02\
\x7f\xad\xdf\xde\x9f\xff\x00\x0b\x56\xdf\xff\x00\x64\xd1\xff\x00\
\xdb\x17\x59\x51\xfe\xbb\xbf\x71\xcf\xfd\x96\xfd\xdb\xfe\xca\xe5\
\xff\x00\xbd\x8f\x42\x5f\x4b\xfc\x80\xfe\x58\x99\x6e\xe2\xea\x7c\
\x56\xca\xf8\x6f\xbf\x76\xee\xf2\xc9\xf6\x5e\xc4\xc7\xed\x2d\xc1\
\x55\xbc\x32\x95\x14\xb8\x2d\xcd\x59\xba\x71\x54\xd8\x1c\xcd\x4d\
\x3b\xf6\x3d\x62\x4f\x06\x33\x2b\x24\x53\xba\x18\x65\x0c\xa8\x41\
\x46\xbe\x92\x1c\xe7\x1e\x43\xfb\xca\xda\xf2\x8f\x34\xdd\x6f\x3e\
\xef\xd8\xdc\x6c\xf1\xed\xb7\x2d\x3c\x4b\x6e\x81\xa5\x85\x61\x73\
\x2c\x60\x8b\x45\x20\xba\x06\x50\x75\x2d\x09\xad\x47\x1e\x86\x3e\
\xde\x7b\xa7\xf7\x35\xbe\xe7\xfe\x46\xb2\xe5\xdf\xbb\xf6\xe7\x69\
\xcc\x13\x6f\x16\x49\x6b\x3b\x5d\x48\xcb\x0d\xc3\xdc\xc6\xb0\x4a\
\xca\x6f\xdc\x15\x8e\x42\xae\x41\x56\x04\x0a\x69\x3c\x0e\xc7\x5b\
\xea\xa7\x13\x47\xb2\x77\x8d\x66\x7a\x86\x4c\x9e\x0e\x97\x6a\xee\
\x1a\x9c\xce\x36\x17\x31\xcb\x90\xc4\xc1\x88\xab\x97\x23\x43\x14\
\x8b\x2c\x0d\x1c\x95\x74\x6a\xf1\xab\x07\x42\x0b\x5f\x50\xfa\xfb\
\xe7\x96\xc9\x1d\xd4\xdb\xd6\xd1\x15\x8c\xc2\x3b\xd6\xba\x88\x46\
\xe7\x21\x1c\xc8\xa1\x18\x8a\x1a\x85\x6a\x1e\x07\x87\x03\xd7\x5b\
\x79\x96\x6b\x1b\x7e\x5c\xdf\xe7\xdc\xed\x8c\xdb\x6a\x59\x4e\xd2\
\xc6\x0d\x0b\xc4\x22\x63\x22\x03\x51\x42\xca\x0a\x83\x51\x4a\xf1\
\x1c\x7a\xd5\xeb\xfd\x99\x0f\xe5\x3b\xff\x00\x78\x3d\xd8\x9f\xfa\
\x1b\x65\xbf\xfb\x68\x7b\xe9\x87\xfa\xdd\xfd\xe9\xff\x00\xf0\xb5\
\x6d\xff\x00\xf6\x4d\x1f\xfd\xb1\x75\xc6\x1f\xf5\xdd\xfb\x8e\x7f\
\xec\xb7\xee\xdf\xf6\x57\x2f\xfd\xec\x7a\xf7\xfb\x32\x1f\xca\x77\
\xfe\xf0\x7b\xb1\x3f\xf4\x36\xcb\x7f\xf6\xd0\xf7\xef\xf5\xbb\xfb\
\xd3\xff\x00\xe1\x6a\xdb\xff\x00\xec\x9a\x3f\xfb\x62\xeb\xdf\xeb\
\xbb\xf7\x1c\xff\x00\xd9\x6f\xdd\xbf\xec\xae\x5f\xfb\xd8\xf5\x56\
\x1d\x83\x92\xda\x79\x9d\xfd\xbe\x32\xfb\x0b\x07\x51\xb6\x36\x36\
\x57\x77\xee\x5c\x96\xcc\xdb\x55\x93\xbd\x55\x5e\xde\xda\x75\xd9\
\xaa\xda\xad\xbb\x83\xaa\xa9\x92\xaa\xba\x4a\x8a\x8c\x4e\x1e\x58\
\x69\xdd\xda\x69\x8b\xb4\x64\x97\x72\x75\x1c\x9e\xd8\x2d\xf7\x5b\
\x3d\x8b\x65\xb4\xdf\x2f\x56\xe7\x7b\x8a\xd2\x14\xb8\x99\x45\x16\
\x59\xd6\x35\x59\x64\x50\x15\x40\x0f\x20\x66\x03\x4a\xd0\x1a\x69\
\x1c\x3a\xc2\x8e\x6a\xbc\xd8\xf7\x0e\x68\xe6\x4b\xfe\x58\xdb\x5e\
\xcf\x96\xa7\xbf\xb8\x92\xd2\xdd\x89\x66\x82\xd9\xe5\x76\x82\x16\
\x62\xce\x59\xa2\x88\xa2\x12\x5d\x89\x2b\x5d\x4d\xc4\xf2\xeb\xbf\
\xf9\x98\x1b\x17\xff\x00\x0f\x1d\xb1\xff\x00\xbb\xba\x1f\x7a\xe6\
\x0f\xf9\x20\xef\x7f\xf3\xc7\x37\xfd\x5b\x6e\xbd\xca\x9f\xf2\xb4\
\xf2\xd7\xfd\x2c\x2d\xff\x00\xea\xf2\x75\xf4\x03\x1f\x41\xfe\xb0\
\xff\x00\x7a\xf7\xc1\xee\xbe\xa4\x3a\xef\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xff\xd7\xdf\xe3\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x74\x0d\xfc\
\x8a\xff\x00\xb2\x7d\xef\x4f\xfc\x43\xbd\x99\xff\x00\xbc\x5e\x6b\
\xd8\xbb\xdb\xff\x00\xf9\x5f\x39\x27\xfe\x96\xf6\x7f\xf6\x91\x1f\
\x40\x0f\x75\xff\x00\xe9\xd6\xfb\x95\xff\x00\x4a\x0d\xc3\xfe\xd1\
\x26\xeb\x42\xef\x7d\xca\xeb\xe6\x3f\xaf\x7b\xf7\x5e\xea\xd9\x36\
\xdf\xc8\xaf\xe5\x75\x43\xb7\x70\x14\x5b\x87\xe1\x5e\xfa\xca\xe7\
\xe8\xf0\xb8\xba\x5c\xe6\x52\x1d\xe5\x93\x8a\x1c\x96\x62\x9e\x86\
\x08\xb2\x75\xf1\x44\xbd\x8b\x02\xc7\x1d\x65\x6a\x3c\x8a\xa1\x10\
\x00\xd6\xd2\x3e\x9e\xf1\x5f\x71\xf6\xfb\xef\x33\x3e\xe1\x7d\x35\
\x87\xbc\x96\x31\x58\xbc\xce\xd1\xa1\xb7\x42\x52\x32\xc4\xa2\x93\
\xf4\x86\xa5\x56\x80\x9a\x9e\x1c\x4f\x59\xcd\xb4\x7b\xb3\xf7\x2e\
\xb6\xda\x76\xbb\x6d\xd7\xee\xef\xb9\xcf\xba\x47\x6f\x1a\xcd\x20\
\xba\x90\x09\x25\x54\x51\x23\x81\xf5\xe2\x81\xdc\x16\x02\x82\x95\
\xe0\x38\x74\xb4\xdb\x5f\x2d\xbf\x95\xe6\xd0\xdc\x58\x0d\xd9\xb7\
\x3e\x14\xf6\x16\x33\x70\xed\x7c\xd6\x2b\x71\x60\x72\x51\xef\x1a\
\xd9\xe4\xc7\xe6\x70\x95\xd0\x64\xb1\x75\xc9\x0d\x57\x62\xcf\x4b\
\x33\xd2\x57\x53\x47\x20\x59\x11\xe3\x62\xb6\x65\x22\xe3\xd9\x3e\
\xe3\xed\x4f\xde\x63\x76\xdb\xef\xb6\xad\xc3\xde\x5b\x09\x76\xfb\
\x98\x5e\x29\x50\xdb\xa8\x0f\x1c\x8a\x51\xd4\x95\xb4\x0c\x35\x29\
\x22\xa0\x82\x2b\x82\x0f\x42\x1d\xa3\xdf\x5f\xb9\x7e\xc3\xbb\x6d\
\x7b\xee\xd1\xf7\x76\xdd\x61\xdd\x6c\xae\x23\x9e\x19\x05\xd3\x93\
\x1c\xb0\xba\xc9\x1b\x80\xd7\xec\xa4\xab\xa8\x6a\x30\x2a\x69\x42\
\x08\xc7\x47\x23\x29\xfc\xee\x7e\x3e\xe6\xb1\x99\x1c\x36\x53\xa4\
\xfb\x5e\xaf\x19\x96\xa0\xac\xc6\x64\x69\x5a\xb3\x69\xc6\xb5\x34\
\x35\xf4\xf2\x52\xd5\xd3\xb4\x90\xe7\x63\x95\x16\x6a\x79\x59\x49\
\x56\x56\x17\xe0\x83\xcf\xb8\x82\xd7\xee\x5f\xcf\xb6\x77\x36\xf7\
\x96\xdc\xe7\xb5\xa5\xcc\x4e\xae\x8d\xa6\x73\x46\x52\x19\x4d\x0c\
\x64\x60\x80\x72\x08\xf5\xeb\x20\x6f\x7f\xbc\x6f\xda\xbd\xc6\xce\
\xef\x6f\xbc\xf6\xeb\x7c\x7b\x39\xe2\x68\xe4\x5d\x56\xc3\x52\x3a\
\x95\x65\xa8\x98\x11\x55\x24\x54\x10\x7d\x0f\x4d\xdf\x0e\xba\xdb\
\xf9\x74\x7c\xcc\xc9\x6f\x8a\x4d\x93\xf0\xeb\x3b\xb5\x71\xfb\x0a\
\x87\x0d\x53\x97\xcd\x6e\x7d\xe5\xba\x1e\x86\x5a\xcc\xfd\x45\x74\
\x58\xcc\x5d\x2a\xe2\xf7\xfd\x5c\xaf\x55\x34\x18\xba\x99\x58\x90\
\x15\x12\x2e\x79\x65\xba\x8f\x77\x79\x8b\xef\x07\xec\xfd\xb6\xcb\
\x2e\xf3\xee\xec\x17\x53\xdf\x3c\x82\x38\xe1\xb7\x87\x50\x58\x82\
\x97\x76\xd7\x6a\xa3\x48\x2e\x8b\xea\x4b\x7c\x8f\x48\xfd\x81\xe5\
\x0f\xba\x67\xde\x0e\xf3\x99\x20\xe5\xcf\x60\x2e\x6c\xad\x76\xb8\
\xe2\x69\x66\xb8\xba\xb8\x28\x5e\x76\x71\x1c\x6b\xe1\xde\xb1\x2c\
\x44\x72\x31\xf2\x01\x73\xc4\x74\x14\xff\x00\x35\x5f\x8d\xbf\x12\
\xfe\x34\xf4\xb6\xce\x8f\xab\x7a\xa3\x0d\xb5\x7b\x2f\xb0\x37\xbc\
\x74\x58\xcc\x94\x5b\x83\x78\x57\xd5\x52\xed\x6d\xbd\x8f\x9f\x21\
\xb9\xea\xe9\xe9\x73\x1b\x8f\x23\x44\xe4\x56\xd5\xe3\x29\x58\xb4\
\x26\xc9\x56\x48\x21\x80\xf6\x29\xfb\xaf\x7b\x8b\xee\xaf\xb8\xdc\
\xe5\xbb\xb7\x33\xf3\x4c\xd7\x5c\xb9\x61\x64\x59\xd0\xc5\x6e\xaa\
\xd3\x4a\xe1\x21\x52\xd1\xc4\x8d\xf0\xac\xce\x28\xdc\x50\x54\x11\
\xd0\x23\xef\xb7\xed\x0f\xb1\x7e\xcf\xfb\x77\xb0\x2f\x25\x72\x3d\
\xbd\x8f\x38\x6e\x9b\x90\x48\xe4\x13\xdd\x3b\x2d\xb4\x08\x64\xb8\
\x65\x59\x67\x91\x0f\x7b\x5b\xc6\x6a\xa6\x82\x52\x41\x06\x9d\x50\
\x37\xbc\xee\xeb\x97\x5d\x2c\x7a\xef\xfe\x66\x06\xc5\xff\x00\xc3\
\xc7\x6c\x7f\xee\xee\x87\xd9\x47\x30\x7f\xc9\x07\x7b\xff\x00\x9e\
\x39\xbf\xea\xdb\x74\x7f\xca\x9f\xf2\xb4\xf2\xd7\xfd\x2c\x2d\xff\
\x00\xea\xf2\x75\xf4\x03\x1f\x41\xfe\xb0\xff\x00\x7a\xf7\xc1\xee\
\xbe\xa4\x3a\xef\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xff\xd0\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x74\x0d\xfc\x8a\xff\x00\xb2\x7d\xef\
\x4f\xfc\x43\xbd\x99\xff\x00\xbc\x5e\x6b\xd8\xbb\xdb\xff\x00\xf9\
\x5f\x39\x27\xfe\x96\xf6\x7f\xf6\x91\x1f\x40\x0f\x75\xff\x00\xe9\
\xd6\xfb\x95\xff\x00\x4a\x0d\xc3\xfe\xd1\x26\xeb\x43\x8a\x1a\x1a\
\xdc\xa5\x6d\x1e\x37\x1b\x47\x55\x90\xc8\xe4\x6a\xa9\xe8\x68\x28\
\x28\xa0\x96\xaa\xb6\xba\xb6\xae\x64\xa7\xa5\xa3\xa4\xa5\x81\x24\
\x9e\xa6\xaa\xa6\x79\x15\x23\x8d\x14\xbb\xbb\x00\x01\x27\xdf\x71\
\x67\x9e\x1b\x68\x66\xb9\xb9\x95\x63\xb7\x8d\x4b\x33\x31\x0a\xaa\
\xaa\x2a\xcc\xcc\x68\x02\x80\x09\x24\x9a\x00\x2a\x7a\xf9\x96\xb6\
\xb6\xb8\xbd\xb9\xb7\xb3\xb3\x81\xe5\xbb\x95\xd5\x11\x11\x4b\x3b\
\xbb\x10\xaa\xaa\xa0\x12\xcc\xcc\x40\x55\x00\x92\x48\x00\x57\xab\
\xd6\xe8\xcf\xe5\x01\xb6\xf0\xdb\x3e\x83\xb2\x7e\x66\xf6\xc5\x3f\
\x58\x63\x6a\x61\xa7\xab\x93\x65\xe2\x73\x9b\x77\x6f\xb6\x1d\x25\
\x43\x3c\x74\xbb\xb3\x7e\xee\x4f\xba\xc3\x53\x57\x32\x29\x13\x52\
\x51\xc0\xfe\x30\x0e\x9a\xbd\x57\x09\x84\x5c\xed\xf7\xb5\xdc\x6f\
\x37\x79\xf9\x77\xd9\xee\x56\x6d\xce\xe1\x49\x51\x70\xf1\xcb\x2f\
\x89\x4c\x16\x82\xda\x1d\x32\x15\xaf\xc2\xf2\x30\xaf\x9c\x54\xa5\
\x7a\x5d\xed\xaf\xdc\x23\x68\xdb\xf6\x0b\x6e\x6f\xfb\xc2\x73\xc2\
\x6c\xd6\x8e\xaa\xc6\xd2\x29\xa0\x83\xc2\x04\x54\x2d\xcd\xed\xc6\
\xa8\x95\xc8\xf8\xe2\x89\x0e\x91\x5a\x4f\x5a\x85\x32\x18\xff\x00\
\x88\xbf\xc9\xca\xbc\xa6\x16\x8f\xb4\xfa\xca\xb3\x26\xda\x61\x8e\
\xa8\x7c\x9c\x84\x56\xd4\xca\x49\x03\xc0\x17\x78\x45\x8b\xa8\x99\
\xcf\xf6\x62\x84\x83\xf8\x1e\xe3\xbb\x8f\x75\xfe\xf7\x70\x03\x79\
\x37\x2c\x6e\x49\x6d\xc4\xaf\xee\x73\xa4\x0f\x9f\xe8\x17\x03\xe6\
\x5b\xf3\xea\x5c\xb5\xf6\x1f\xee\x01\x74\x57\x6e\xb7\xe7\x5d\x9a\
\x4b\xce\x01\xbf\xac\x23\x5b\x1f\x97\xf8\xd0\x8d\x89\xf4\x55\x3f\
\x21\xd6\x6d\xdb\xfc\x95\x3e\x35\x6f\x4c\x62\x65\xfa\x93\xb6\xb7\
\xfe\xd7\x5a\xf8\xcc\xb4\x15\xb3\x55\xed\xbe\xc6\xda\xb2\x44\xd7\
\xf1\xcb\x49\x0c\x14\xbb\x7f\x23\x53\x1d\xfe\xa7\xf8\xa3\x86\x03\
\x82\x0d\xc9\xa6\xd5\xf7\xc9\xf7\x1b\x66\xb9\x6b\x4e\x6b\xe5\x5b\
\x0b\xa2\x86\x8c\xa1\x66\xb4\x9c\x1f\x30\xc4\x99\x50\x1f\xf9\xb2\
\x29\xd3\x9b\xef\xf7\x76\xfb\x3f\xcc\x36\x6b\x7f\xc8\xbc\xf5\xba\
\x59\x09\x45\x51\xcb\x5b\xdf\xdb\x11\xe4\x54\x2a\xc0\xec\x3e\x7f\
\x50\x6b\xf2\xe8\x82\x76\xd7\xf2\x61\xf9\x41\xb2\x16\xa2\xbb\xae\
\x72\xbb\x2b\xb8\xb1\x91\x06\x68\xe9\x71\x79\x11\xb3\xf7\x53\xa2\
\x5d\x99\xe4\xc3\x6e\x89\x60\xc2\x0b\xa7\xe9\x58\x72\xd3\xc8\xc6\
\xe0\x2d\xed\x79\xdb\x95\x7e\xf8\x7e\xda\x6f\x46\x38\x79\x86\xd6\
\xf7\x68\xb9\x3c\x59\xd3\xea\x21\xcf\xa4\x90\x83\x27\xda\x5a\x05\
\x03\x8d\x78\xd3\x17\xb9\xeb\xfb\xbd\x7d\xe7\xe5\xc1\x2d\xcf\x29\
\x5f\x6d\xdc\xc1\x66\xb5\xa2\xc7\x27\xd2\xdc\x90\x3c\xcc\x57\x24\
\x43\xf6\x05\xb9\x76\x3c\x00\xad\x2b\x76\xff\x00\xcb\x77\xe3\x25\
\x77\xc6\x3f\x8d\xb8\x4c\x2e\xe9\xc7\x36\x3b\xb2\x37\xe5\x7c\xdb\
\xeb\x7f\xd2\xcc\x63\x7a\x9c\x5d\x7e\x42\x08\x29\x70\xdb\x72\x49\
\x23\x67\x0a\x70\x38\x2a\x58\x12\x68\xc3\x32\xa5\x74\xb5\x25\x49\
\x0d\xef\x0c\x3e\xf1\x1e\xe4\xc1\xee\x4f\xb8\xb7\xb7\x9b\x65\xc7\
\x89\xcb\xb6\x31\x8b\x6b\x56\x15\xa3\xaa\x12\xd2\x4c\x01\xa7\xf6\
\xb2\xb3\x15\x34\x04\xc6\x23\xaf\x0e\xba\x33\xf7\x45\xf6\x72\xe7\
\xd9\xbf\x68\x76\xed\xbb\x7a\xb4\x31\x73\x76\xe7\x29\xbc\xbd\x53\
\x42\xd1\xbb\x80\xb1\x5b\x92\x09\xfe\xc6\x15\x40\xeb\x52\x04\xcd\
\x35\x30\x7a\xd7\xaf\xf9\xa2\xfc\x8e\x8f\xe4\x07\xc9\xdc\xf5\x06\
\x0a\xb1\x6a\xb6\x27\x51\x47\x51\xd7\x3b\x5a\x48\x64\x0f\x4b\x91\
\xaf\xc7\xd6\x48\xfb\xbf\x3f\x13\x29\x68\xe4\x19\x2d\xc0\x1e\x9e\
\x29\x51\x8a\x4d\x45\x45\x4e\xe3\xf5\x1f\x79\xf7\xf7\x66\xf6\xf1\
\xb9\x0f\xdb\x5b\x19\xef\x61\xd3\xbe\x6e\xc4\x5d\xcc\x08\xa1\x45\
\x75\x1e\x04\x47\xcc\x68\x8a\x8c\xc0\x8a\xac\x92\x48\x3c\xba\xe5\
\x57\xdf\x47\xdd\xc5\xf7\x4b\xde\x5d\xce\xd7\x6d\xb8\x0f\xcb\x3b\
\x08\x6b\x0b\x62\x0d\x56\x47\x47\x26\xea\x71\xc4\x1f\x12\x7a\xa2\
\xb0\x34\x78\x61\x89\x87\x13\xd5\x70\xfb\xc8\x7e\xb1\x1f\xa5\x8f\
\x5d\xff\x00\xcc\xc0\xd8\xbf\xf8\x78\xed\x8f\xfd\xdd\xd0\xfb\x28\
\xe6\x0f\xf9\x20\xef\x7f\xf3\xc7\x37\xfd\x5b\x6e\x8f\xf9\x53\xfe\
\x56\x9e\x5a\xff\x00\xa5\x85\xbf\xfd\x5e\x4e\xbe\x80\x63\xe8\x3f\
\xd6\x1f\xef\x5e\xf8\x3d\xd7\xd4\x87\x5d\xfb\xf7\x5e\xeb\xde\xfd\
\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\
\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\
\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\
\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\
\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbf\xff\xd1\xdf\xe3\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x74\x0d\
\xfc\x8a\xff\x00\xb2\x7d\xef\x4f\xfc\x43\xbd\x99\xff\x00\xbc\x5e\
\x6b\xd8\xbb\xdb\xff\x00\xf9\x5f\x39\x27\xfe\x96\xf6\x7f\xf6\x91\
\x1f\x40\x0f\x75\xff\x00\xe9\xd6\xfb\x95\xff\x00\x4a\x0d\xc3\xfe\
\xd1\x26\xeb\x56\x8f\xe5\x51\xb4\x36\xc5\x5f\x7d\x6f\x5e\xdf\xde\
\x18\xff\x00\xe2\xd8\x7f\x8e\x7d\x3f\xbc\xfb\x7e\x93\x1c\x16\x39\
\x1e\xa3\x3f\x87\x5a\x4a\x3c\x73\xa4\x53\x7e\xc9\x9e\x86\x86\xae\
\xb2\xa6\x9d\xda\xfe\x2a\xc8\x61\x71\x62\xa1\x87\x4d\xbe\xf4\x5b\
\xb6\xe7\x17\x23\x6c\xdc\xa5\xb4\x5c\x78\x57\x7c\xc3\xbb\x5b\xd8\
\x33\xe4\x52\x29\x35\x33\x82\x46\x68\xcc\xb1\xa3\x81\xf1\x46\xce\
\xa7\x06\x87\x8b\x5f\x72\x3d\x87\x66\x9f\xdc\xee\x62\xe7\xdd\xfe\
\xd3\xc7\xb0\xe5\x2d\x82\xef\x74\x58\xe8\x09\x69\xe2\xd2\xb1\x90\
\x0e\x35\x22\x34\xb2\x46\x4f\xc3\x2a\x46\xc3\x22\xa0\x99\x77\xe7\
\xc8\x3e\xd0\xf9\x23\xd8\x19\x6e\xc2\xec\xfd\xc5\x5b\x96\xae\xad\
\xaa\xa9\x7c\x46\x18\x54\xd4\xff\x00\x77\xb6\x9e\x2e\x59\x4b\xd3\
\xe0\x76\xc6\x2e\x59\xa4\x87\x19\x8c\xa4\x8f\x4a\xfa\x6f\x2c\xee\
\x0c\xb3\x3c\x93\x3b\xbb\x4c\x3c\x8b\xc8\x3c\xb3\xed\xde\xc3\x6b\
\xb0\x72\xd6\xde\x91\x40\x8a\x3c\x49\x28\x3c\x59\xdc\x0a\x19\x66\
\x70\x01\x77\x63\x9c\xe1\x47\x6a\x05\x40\x14\x63\xd7\xba\x1e\xea\
\x73\x9f\xbb\xbc\xd3\x7d\xcd\x5c\xe5\xbb\x49\x3d\xcc\x8e\xc6\x28\
\xb5\x37\x81\x6b\x19\x35\x58\x6d\xe3\x24\x88\xe3\x51\x41\x8e\xe7\
\x35\x79\x19\xe4\x66\x62\x09\x7b\x19\xf5\x1c\xf4\x2d\xf5\x4f\x7c\
\xf7\x2f\x47\x65\x3f\x8b\xf5\x2f\x65\x6e\xdd\x89\x54\xf2\xa4\xd5\
\x30\x60\xf2\xd3\xc5\x89\xc9\x3a\x00\x10\x66\x30\x33\x99\xf0\x79\
\xa8\xd7\x48\xf4\x55\xd3\x4c\x9c\x0e\x38\xf6\x14\xe6\x9e\x46\xe4\
\xfe\x75\xb6\xfa\x4e\x6b\xe5\xcb\x4b\xe8\x80\xa0\x32\x20\x32\x20\
\xff\x00\x85\xca\x29\x24\x67\xe6\x8e\xa7\xe7\xd0\xef\x92\x3d\xce\
\xf7\x07\xdb\x6b\xdf\xaf\xe4\x5e\x6f\xbf\xdb\x26\x2c\x0b\x2c\x32\
\xb0\x8a\x42\x38\x78\xb0\x36\xa8\x66\x1f\x29\x63\x71\xf2\xeb\x69\
\xcf\xe5\xab\xf2\x93\xe4\x67\xca\x1d\x85\x9d\xdc\x3d\xc9\xb0\xb0\
\x14\x3b\x6b\x06\xf1\x62\xb6\xf7\x68\xe2\xc5\x56\x06\x6d\xf7\x98\
\x82\x4f\x1e\x4e\x9a\x3d\xa8\xd4\xf5\x38\xfa\x94\xc6\xa8\x3f\x75\
\x91\xa3\x9e\x92\x91\x6a\x0a\xd3\xc7\x4c\xce\x27\x30\x73\x13\xef\
\x19\xed\x97\xb7\xbe\xd9\xef\xb6\x5b\x7f\x28\x6f\xb3\xbe\xe3\x38\
\x2f\x2d\x93\xe9\x94\x5b\x46\x45\x50\x99\xea\x1c\x6b\xfc\x11\x48\
\xaf\x21\x4a\xc8\xd2\x00\x50\x3f\x6b\x7e\xe8\x1e\xf4\xfb\xb5\xef\
\x3f\x2c\x6e\x5b\xaf\xb8\x1c\xb1\x6b\x1e\xcf\x6c\x44\x70\x6e\x31\
\xea\x84\xde\xca\x0d\x24\x51\x6c\x55\xa3\x61\x18\xfe\xd2\x78\x9e\
\x28\x84\x94\x89\x21\x2c\x24\x31\xd9\x77\xdc\x52\x49\x51\x35\x07\
\x9e\x9d\xea\xa2\xa7\x86\xa2\xa2\x8c\x4b\x1b\x54\x47\x4b\x54\xf5\
\x10\xc1\x3c\xb4\xe1\x8c\xa9\x4f\x53\x25\x2c\xaa\x8c\x40\x57\x68\
\xdc\x02\x4a\x9b\x63\x8f\x87\x2a\xc6\x93\xe8\x61\x11\x62\x03\x50\
\xd0\xb2\xd0\x90\x0f\x0a\x80\xca\x48\xe2\x2a\x2b\xc4\x75\x98\x5e\
\x2c\x0f\x2c\x96\xbe\x2a\x19\xc2\x06\x64\xa8\xd4\x15\x8b\x05\x25\
\x78\x85\x62\xac\x01\x22\x84\xab\x01\xc0\xf5\x56\x3d\xe3\xfc\xa0\
\xbe\x2c\xf6\x99\xad\xca\x6c\x7a\x7c\xe7\x49\xee\x6a\x93\x2c\xc2\
\xa7\x67\x54\x1c\xa6\xd5\x96\xaa\x42\x4f\x96\xb7\x67\x67\x26\x9a\
\x08\xa0\x5b\xf1\x0e\x36\xab\x18\x9c\x7f\xaf\x7c\x9d\xe4\xaf\xbd\
\xa7\xb9\xdc\xb0\x21\xb6\xde\xa4\x83\x79\xdb\x56\x82\x97\x03\x44\
\xe1\x47\x92\xdc\x46\x01\x27\xfa\x53\x24\xc7\xac\x28\xf7\x23\xee\
\x15\xec\xa7\x3a\x9b\x8b\xde\x5b\x8a\xe7\x97\x37\x87\xa9\xd5\x6a\
\xde\x25\xb1\x63\xe6\xf6\xb3\x12\xa1\x7f\xa1\x6f\x25\xb8\xfe\x7d\
\x54\x37\x72\xff\x00\x27\x8f\x95\x9d\x70\xd5\x75\xdb\x12\x1d\xb3\
\xdd\x38\x08\x75\xc9\x1c\xbb\x53\x23\x1e\x13\x73\xad\x32\x5f\xf7\
\x2b\x36\xb6\xe5\x96\x88\x35\x43\x7e\x21\xa0\xac\xc8\xb9\xbf\x17\
\xe6\xd9\x65\xca\x1f\x7b\x8f\x6b\xb9\x84\x45\x06\xf8\xf7\x3b\x35\
\xfb\x50\x11\x3a\x19\x21\xaf\xa2\xcd\x08\x6c\x7f\x4a\x58\xe2\x1d\
\x60\x6f\xb8\x3f\x70\x4f\x7b\xb9\x48\xcf\x73\xcb\x31\xd9\xf3\x16\
\xd6\xb5\x20\xdb\x48\x21\xb8\xd2\x3c\xda\xda\xe0\xa5\x5b\xfa\x10\
\x4b\x39\xf4\xe8\x81\xd0\x75\xe6\xfe\xeb\x6e\xd6\xd8\xf8\x2e\xc2\
\xd9\x3b\xaf\x63\x66\x53\x79\x6d\xbb\xe2\xf7\x6e\xdf\xca\xed\xea\
\xe6\x09\x9c\xa1\x0c\xf1\xd3\x65\x69\x29\x65\x96\x2e\x45\x9d\x41\
\x52\x08\x20\x90\x47\xb9\xda\x7e\x60\xd8\xb9\x8b\x95\xf7\xab\xdd\
\x83\x79\xb5\xbd\xb3\x36\x73\x77\xc1\x2a\x4a\xb9\x8d\xb8\x94\x66\
\x00\xfc\x8e\x7a\xc5\xdb\x6e\x54\xe6\x8e\x50\xe7\x6e\x5c\xdb\x79\
\xab\x97\x2f\xb6\xdd\xc0\x6e\x16\xff\x00\xa7\x75\x04\xb0\x3e\x26\
\x4c\x85\x95\x54\x91\xf3\x15\x07\x88\x3d\x6f\xa4\x3e\x83\xfd\x61\
\xfe\xf5\xef\x86\xdd\x7d\x38\x75\xdf\xbf\x75\xee\xbd\xef\xdd\x7b\
\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\
\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\
\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\
\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\
\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd2\xdf\xe3\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x74\x0d\xfc\x8a\
\xff\x00\xb2\x7d\xef\x4f\xfc\x43\xbd\x99\xff\x00\xbc\x5e\x6b\xd8\
\xbb\xdb\xff\x00\xf9\x5f\x39\x27\xfe\x96\xf6\x7f\xf6\x91\x1f\x40\
\x0f\x75\xff\x00\xe9\xd6\xfb\x95\xff\x00\x4a\x0d\xc3\xfe\xd1\x26\
\xeb\x53\x5f\xe5\xa5\xdf\x1b\x43\xa3\xfe\x47\x45\x4d\xd9\x32\xd1\
\xc1\xd6\xbd\xb9\xb4\xf3\x1d\x4d\xbc\xaa\xf2\x65\x46\x2b\x1b\x4d\
\xb8\xea\x71\xf5\x58\xcc\x96\x50\xb9\x48\xe3\xc6\x0c\xa6\x36\x3a\
\x5a\xb9\x5d\x96\x38\x28\xea\xe6\x95\x8d\x90\xfb\xea\x77\xde\x3b\
\x91\xb7\x6e\x75\xf6\xf1\xe4\xe5\xd5\x76\xe6\x3d\xa6\xea\x3b\xeb\
\x75\x4f\x8d\xcc\x41\x95\xd1\x29\x92\xfa\x1c\xba\x28\x04\xb4\x91\
\xa2\x8c\x9e\xb8\x73\xf7\x3d\xf7\x37\x61\xf6\xdf\xdd\xc4\x87\x9b\
\xde\x35\xe4\xfd\xfa\xc6\x5d\xb2\xed\xa4\xa7\x87\x1a\xce\xc8\xd1\
\xc9\x25\x68\x04\x7e\x24\x6b\x1c\x8c\x48\x54\x8a\x59\x1d\xb0\xbd\
\x0b\x1f\x29\x7f\x94\xff\x00\x7e\xf5\x56\xe8\xcc\x66\x7a\x5b\x6d\
\xe4\x7b\x93\xaa\x2b\x2a\x67\xae\xdb\xf3\x6d\xa9\x29\xf2\x3b\xd7\
\x07\x8e\xa8\x99\xa4\xa4\xc3\x67\x36\xda\xc9\x16\x53\x33\x59\x49\
\x0b\x04\x5a\xcc\x6c\x35\x30\xd4\x22\x89\x1d\x60\x67\xf1\x28\x57\
\xdb\x1f\xbd\x37\x22\x73\x46\xd9\x69\x67\xce\x5b\x8c\x7b\x3f\x34\
\xa2\x85\x94\x4c\x0a\x5b\xc8\xe0\x51\xa4\x8e\x6a\x14\x8d\x58\xe4\
\xc7\x33\x23\x21\x3a\x41\x70\x35\x11\xc7\xbd\x5f\x71\xdf\x74\x39\
\x23\x7a\xdc\x37\x0f\x6e\xf6\x89\x79\x83\x91\xe4\x76\x78\x0d\xb9\
\x59\x2e\xe1\x8d\x8d\x56\x29\xad\xea\x24\x95\x94\x60\x4b\x6e\xb2\
\x2c\x80\x07\x61\x13\x36\x80\x4b\x71\x5f\x0f\xbe\x56\xe6\xb2\x6b\
\x87\xa1\xf8\xdd\xde\x1f\x7c\x64\x11\x3a\xd7\x75\x86\xf1\xc5\x53\
\xd3\xb1\xfa\x1a\xca\xfc\xae\x22\x8a\x82\x85\x0f\xfa\xa9\xa5\x45\
\xff\x00\x1f\x73\x1d\xd7\xbb\x7e\xd6\xd9\xdb\x1b\xb9\xfd\xc4\xd9\
\x7c\x0a\x57\xb6\xf2\xdd\xc9\xff\x00\x4a\xa9\x23\x33\x1f\x92\x82\
\x7a\xc7\x8b\x1f\x60\xfd\xef\xdc\x2f\x45\x85\xb7\xb4\x5c\xc9\xf5\
\x35\xa1\x0f\xb7\x5d\xc4\xaa\x7f\xa6\xf2\x44\x88\x83\xe6\xec\x07\
\xcf\xab\x5b\xf8\x9f\xfc\x99\x77\x66\x53\x29\x8c\xde\x3f\x2b\x2b\
\x69\xf6\xde\xde\xa5\x96\x2a\xa5\xea\xad\xb7\x96\x82\xbf\x71\xe6\
\x8c\x6c\xb2\x0a\x5d\xcf\xb9\x71\x53\x4f\x8b\xc1\xe3\x25\xb6\x99\
\x62\xc7\xcf\x53\x57\x2a\x16\x51\x35\x2b\x80\xde\xf1\x73\xdd\x3f\
\xbe\x0e\xd5\x6b\x6d\x73\xb4\x7b\x5d\x0b\x5c\x6e\x0c\x0a\xfd\x6c\
\xc8\x56\x28\xeb\x8d\x50\xc2\xe0\x3c\x8e\x38\x83\x2a\xa2\x29\xa1\
\x29\x28\xc7\x59\xbf\xec\x77\xf7\x7c\x6f\x97\xb7\xb6\x7b\xff\x00\
\xbd\xd7\x09\x69\xb5\x21\x0d\xfb\xb6\xde\x50\xf3\xcb\x4c\xe9\xb8\
\xb8\x88\x98\xe1\x8c\xf0\x65\x81\xe4\x95\x81\x20\x49\x03\x00\x7a\
\xb3\x8f\x95\x7f\x36\x3a\x23\xe0\xc6\xc0\xa4\xd8\xfb\x72\x8b\x03\
\x92\xdf\xd8\xec\x1c\x38\xdd\x81\xd3\x5b\x58\xd2\xd1\xd2\xe0\xe8\
\xe1\xa6\x58\xf1\x95\x9b\x9a\x3a\x0b\x47\xb5\x76\xc5\x3a\x15\x65\
\x56\x51\x55\x5a\x2e\x29\xd1\x87\x92\x58\xb1\xb3\xda\xff\x00\x66\
\x79\xe3\xde\xdd\xfa\x5d\xef\x71\x9a\x78\xf6\x29\x27\x2f\x75\xb8\
\x4d\xa9\x9a\x46\x26\xae\xb0\x96\xcc\xf3\x1c\x82\x41\xd1\x1f\x19\
\x18\x76\xa3\x66\x4f\xbd\xdf\x78\xbf\x6c\xfe\xed\x7c\xaf\x07\x2d\
\xed\x36\xf6\xb3\x73\x44\x56\xc2\x3b\x2d\xa6\xdb\x4a\xac\x28\x16\
\x91\xbd\xc0\x4c\x5b\x5b\xa8\xa1\x00\x81\x24\xbc\x22\x52\x35\xba\
\x6a\xb5\xb8\xfe\x4f\x77\xb6\xe5\xee\x3c\xbf\x7d\xcb\xd9\x3b\x9f\
\x0f\xda\x19\x7a\xc3\x50\xfb\x8b\x6e\x65\x6b\xb0\x72\x50\xd1\x21\
\x55\xa5\xc0\x63\xa2\xa2\xa8\x44\xa7\xdb\x74\x34\xd1\xa4\x11\xd0\
\xb6\xb8\x1a\x15\xd3\x20\x72\x58\xb7\x4f\xf6\xef\x6d\x79\x1f\x6e\
\xe5\x0b\x4e\x45\x4e\x5c\xb6\x9b\x96\x62\x4a\x78\x53\x22\xc8\x19\
\xbf\x14\xae\x58\x66\x66\x24\xb1\x90\x51\xb5\x1a\xa9\x5a\x00\x38\
\x97\xbb\xfb\xcb\xee\x66\xef\xee\x05\xff\x00\xb9\xef\xcd\xf7\xb6\
\xfc\xe9\x71\x26\xa3\x3d\xbc\xaf\x09\x44\x1f\x0c\x11\x84\x60\x16\
\xdd\x14\x04\x58\x4d\x50\xa8\xa3\x06\xa9\x26\xd3\xbe\x3c\x7f\x3a\
\xee\xc8\xda\xc2\x87\x03\xf2\x2f\x67\x52\xf6\x56\x1e\x3f\x1c\x32\
\x6f\x6d\xa1\x1d\x06\xdc\xde\xf0\xc4\x2c\x1e\xa6\xbf\x06\x45\x36\
\xd3\xdc\x33\x69\x16\x54\x87\xf8\x3f\xf5\x67\x73\xf5\xc6\x1f\x70\
\x3e\xe6\xbc\xbb\xb9\xf8\xf7\xde\xdf\x6e\xed\xb7\x5d\x9a\x91\x6d\
\x39\x69\xad\x89\xf4\x59\x33\x3c\x43\xd4\xb7\x8f\xe8\x00\x1d\x66\
\xbf\xb5\x1f\xde\x29\xcd\xdb\x2f\xd3\x6d\x9e\xec\xf2\xfa\x6f\x16\
\x02\x80\xde\x5a\x84\x82\xf0\x0f\x36\x78\x7b\x6d\xa7\x3e\x81\x7e\
\x97\xd4\xb3\x1e\xaf\x2f\xa1\xbe\x61\x7c\x75\xf9\x25\x4b\x09\xea\
\xae\xca\xc2\xe5\x33\x8f\x0f\x9a\xa3\x66\x65\x64\x38\x0d\xef\x45\
\xa1\x35\xce\x24\xdb\x39\x5f\xb6\xc8\x56\x43\x4b\xf4\x7a\x9a\x41\
\x53\x49\x7f\xa4\xa4\x58\xfb\xc2\x7e\x79\xf6\x8f\xdc\x1f\x6e\xa5\
\x7f\xeb\x47\x2e\x4d\x15\x90\x34\x17\x08\x3c\x5b\x66\xf4\xa4\xc9\
\x55\x52\x7c\x92\x4d\x0f\xea\xa3\xae\x93\xfb\x65\xef\xef\xb4\xfe\
\xef\x43\x19\xe4\x9e\x6f\xb7\x9b\x72\x2b\x56\xb4\x94\xf8\x17\x89\
\x41\x56\xad\xbc\x9a\x5d\x82\xf9\xc9\x10\x92\x2f\x47\x3d\x0d\x3b\
\xfb\x11\x89\xcd\x6c\xfd\xc5\x4b\x98\xc5\xe3\xb2\xd4\xb1\xe1\xf2\
\x55\x51\xd3\x64\xe8\xa9\xab\xe0\x8e\xaa\x9a\x86\xa2\x4a\x7a\x94\
\x86\xaa\x29\x63\x59\xe0\x90\x06\x47\x03\x52\x9e\x41\x07\xd8\x3b\
\x62\xbb\xba\xb3\xdd\xf6\xf9\x6d\x2e\x64\x8a\x43\x32\x29\x28\xc5\
\x49\x52\xc0\x11\x55\x20\xd0\x8c\x11\xc0\xf9\xf5\x21\xf3\x45\x85\
\x8e\xe3\xb0\x6e\xd0\x6e\x16\x51\x4f\x08\xb7\x91\x82\xc8\x8a\xea\
\x19\x51\x8a\xb0\x0c\x08\xd4\xa7\x20\xf1\x07\x87\x4b\x71\xf4\x1f\
\xeb\x0f\xf7\xaf\x65\x1d\x1f\xf5\xdf\xbf\x75\xee\xbd\xef\xdd\x7b\
\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\
\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\
\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\
\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\
\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd3\xdf\xe3\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x74\x15\x77\xb6\
\x36\xb3\x33\xd2\x3d\xc5\x87\xc7\xc2\xf5\x15\xf9\x5e\xac\xec\x1c\
\x6d\x0c\x11\xab\x3c\x93\xd6\x57\x6d\x3c\xb5\x2d\x34\x28\x88\x19\
\x9d\xe4\x9a\x55\x50\x00\x24\x93\xec\x4f\xc9\x37\x31\x59\xf3\x9f\
\x28\xdd\xdc\x38\x58\x22\xdd\x2d\x5d\x89\xe0\x15\x67\x8d\x89\x3f\
\x60\x07\xa0\x57\xb9\x56\x73\xee\x1e\xdc\xf3\xfd\x85\xac\x65\xee\
\xa7\xd9\x2f\xa3\x45\x19\x25\x9e\xd6\x55\x50\x00\xc9\x24\x90\x07\
\x5a\x0f\xfb\xee\x8f\x5f\x30\xbd\x58\xc7\xc6\xbf\xe6\x7f\xf2\x5f\
\xe3\x96\x1b\x1d\xb3\x61\xc8\xe2\x3b\x37\xaf\xf1\x71\x45\x4b\x8c\
\xda\xfd\x81\x15\x75\x6d\x56\x0a\x82\x20\xaa\x94\x5b\x73\x72\xd0\
\x56\x51\xe6\x71\xf4\xb0\xc4\x8b\x1c\x34\xf5\x0f\x59\x47\x4d\x18\
\xd3\x14\x08\x3d\xe3\xdf\xb8\xdf\x76\x9f\x6e\x3d\xc3\xbc\xb8\xdd\
\xde\xde\x5d\xb7\x7e\x94\x96\x79\xad\x4a\xaa\xca\xc7\xf1\x4b\x0b\
\x2b\x46\xcc\x4d\x4b\x32\x08\xe4\x73\x96\x73\xd6\x5a\x7b\x41\xf7\
\xcd\xf7\x87\xda\x4d\xbe\xd3\x97\xe3\xbb\xb7\xde\x79\x5a\x10\x16\
\x3b\x6b\xe0\xee\xd0\xa0\xc0\x48\x2e\x11\xd6\x54\x50\x00\x08\x8e\
\x65\x8a\x35\x14\x48\xd7\xa3\xde\xbf\xcf\x83\x28\x28\x82\x3f\xc6\
\x1a\x06\xc8\xe8\x01\xaa\x97\xb7\xea\x16\x88\xbe\x9e\x58\x50\x1e\
\xb4\x79\xd5\x0b\x72\x17\xee\x49\x03\x8b\xfe\x7d\xc1\xc7\xee\x3b\
\x6b\xe3\x16\x1e\xe5\x49\xf4\xf5\xf8\x7e\x80\x6a\xff\x00\x7a\xfa\
\xca\x7f\xc6\x3f\x2e\xb2\x68\x7f\x79\xa5\xef\xd3\x85\x6f\x66\xa2\
\xfa\xba\x7c\x5f\xbd\x1b\x45\x7f\xd2\x7e\xef\x2d\xf9\x78\x9f\x9f\
\x45\x33\xba\x3f\x9b\xff\x00\xca\xde\xd0\xa1\xab\xc2\x6d\x2a\x9d\
\xb7\xd3\x38\x5a\xb8\xde\x09\x65\xd8\x94\x75\x53\x6e\xb9\x20\x92\
\xfa\x91\xb7\x66\x6e\xa6\xba\xa6\x82\x65\x16\xd3\x3e\x3a\x1c\x7c\
\xeb\x6e\x1f\x9f\x72\xaf\x27\x7d\xd2\xfd\xae\xe5\x99\xe2\xbd\xdd\
\x63\xb9\xde\x2f\x10\xd4\x0b\x96\x51\x00\x23\xfe\x11\x18\x50\xc3\
\xd5\x65\x69\x54\xfa\x75\x06\x7b\x87\xf7\xf6\xf7\xbf\x9d\x2d\xa7\
\xdb\xb6\x29\xac\xf9\x7b\x6e\x90\x10\x4d\x92\xb1\xb9\x2a\x7c\xbe\
\xa6\x66\x76\x43\xe8\xf0\x24\x0e\x3c\x9b\xaa\xb8\xc9\x64\xf2\x59\
\x9c\x85\x6e\x5b\x31\x90\xad\xca\xe5\x72\x55\x33\x56\xe4\x72\x79\
\x2a\xb9\xeb\xb2\x15\xf5\x95\x32\x34\xb5\x15\x75\xb5\xb5\x52\x4b\
\x53\x55\x53\x3c\xac\x59\xe4\x76\x67\x66\x24\x92\x4f\xbc\x9a\xb6\
\xb6\xb7\xb3\xb7\x86\xd6\xd2\x04\x8a\xd6\x35\x0a\x88\x8a\x15\x15\
\x40\xa0\x55\x55\x00\x28\x03\x00\x00\x00\x1c\x3a\xc2\xdb\xcb\xcb\
\xbd\xc2\xea\xe2\xfa\xfe\xea\x49\xef\xa6\x72\xf2\x49\x23\x33\xbb\
\xbb\x1a\xb3\x3b\xb1\x2c\xcc\xc7\x25\x89\x24\x9c\x93\xd4\x2f\x6f\
\x74\x9b\xaf\x7b\xf7\x5e\xeb\x3d\x2d\x55\x55\x0d\x4d\x3d\x6d\x15\
\x4d\x45\x1d\x65\x24\xd1\xd4\x52\xd5\xd2\xcd\x25\x3d\x4d\x35\x44\
\x2e\x24\x86\x7a\x79\xe1\x64\x96\x19\xa2\x91\x43\x2b\x29\x0c\xa4\
\x5c\x1f\x6d\xcb\x14\x53\xc7\x24\x33\x46\xaf\x0b\x82\x19\x58\x02\
\x08\x38\x20\x83\x82\x08\xe2\x0e\x0f\x4e\xc1\x3c\xd6\xd3\x45\x71\
\x6d\x33\x47\x71\x1b\x06\x56\x52\x55\x95\x81\xa8\x65\x61\x42\x08\
\x39\x04\x1a\x83\xc3\xab\x48\xf8\xb7\xfc\xca\x3e\x58\x60\x37\x0e\
\xd4\xea\x2c\xbe\xe2\x8f\xb8\xb6\xd6\xf6\xcd\x61\xf6\x25\x36\x3b\
\x7f\xc7\x55\x96\xdd\x14\x3f\xde\x8a\xea\x7c\x0c\x52\x61\xb7\x7d\
\x34\xb1\x6e\x1a\x8a\xc4\x7a\xd5\xf1\xa5\x7b\xe4\x61\xb0\xd2\xb1\
\xa9\x37\x18\xcb\xee\x6f\xdd\xcf\xda\xcb\xfb\x0d\xd3\x9b\x2d\x36\
\xf3\xb4\x6e\x36\x50\xc9\x72\x5e\xd4\x84\x85\xbc\x15\x32\x91\x24\
\x04\x18\x82\x9d\x26\xa6\x21\x13\x79\x96\x34\xa7\x59\xa5\xec\xb7\
\xde\xff\x00\xdf\x1d\xaf\x75\xd8\xf9\x0e\xff\x00\x76\x1c\xc1\xb3\
\xee\x37\x11\x59\xac\x77\xa1\xa5\xb8\x4f\xa9\x75\x84\x18\xae\x94\
\x89\xd9\xc1\x71\xa4\x4e\x67\x5c\x50\x20\xad\x7a\xdb\x94\x7d\x07\
\xfa\xc3\xfd\xeb\xdf\x29\x7a\xee\xc7\x5d\xfb\xf7\x5e\xeb\xde\xfd\
\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\
\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\
\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\
\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\
\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbf\xff\xd4\xdf\xe3\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xc5\
\xff\x00\x49\xff\x00\x61\xfe\xf7\xef\xdd\x7b\xad\x54\xbe\x7c\x7f\
\x2c\x6e\xcf\xea\xfd\xf7\xb9\x7b\x2b\xa2\x36\x6e\x57\x7e\x74\xfe\
\xe4\xc8\xd6\x66\xc6\xdf\xda\x74\x13\x65\x77\x27\x5c\xd4\xd7\x4c\
\xd5\x55\x98\x59\xb6\xf5\x04\x52\x64\xab\xf6\xbd\x34\xd2\xbb\x51\
\x55\xd2\xc5\x30\xa6\xa5\x5f\x1d\x56\x83\x1a\xcd\x3f\x50\x3d\x8a\
\xfb\xca\x72\xd7\x33\x6c\x7b\x77\x2e\x73\xc6\xef\x15\x8f\x36\xdb\
\xc6\xb1\xf8\xb3\xb0\x48\x6e\xc2\x8a\x2c\x82\x56\x21\x16\x62\x00\
\xf1\x11\xd9\x75\xb9\xd5\x15\x43\x14\x4e\x25\xfd\xe7\xfe\xe6\xdc\
\xe5\xc9\x7c\xcd\xbc\x73\x7f\xb6\x7c\xbf\x3e\xe7\xc8\x37\x93\x3c\
\xde\x05\xb2\x19\x2e\x2c\x19\xce\xa7\x84\xc0\x80\xc8\xf6\xca\x49\
\x30\xcb\x1a\xb7\x87\x18\xd1\x36\x92\x82\x49\x2a\x46\xa7\x6e\xee\
\x0a\x29\xe4\xa6\xac\xc1\x66\x29\x2a\x62\x3a\x65\xa7\xa9\xc6\x56\
\xc1\x3c\x6c\x3e\xab\x24\x52\xc0\x92\x21\x1f\xd0\x81\xef\x2b\x23\
\xdc\x2c\x26\x45\x92\x1b\xe8\x5e\x33\xc0\x87\x52\x0f\xd8\x41\xa7\
\x58\x29\x36\xd3\xba\x5b\xc8\xd0\xdc\x6d\xb7\x11\xcc\xbc\x55\xa3\
\x75\x23\xed\x04\x02\x3a\xc1\xfc\x23\x2d\xff\x00\x3a\xbc\x8f\xfe\
\x71\x54\xff\x00\xd7\xaf\x6e\x7d\x65\xa7\xfc\xa5\x47\xfe\xf4\xbf\
\xe7\xe9\xaf\xa0\xbe\xff\x00\x94\x29\x7f\xde\x1b\xfc\xdd\x7b\xf8\
\x46\x5b\xfe\x75\x79\x1f\xfc\xe2\xa9\xff\x00\xaf\x5e\xfd\xf5\x96\
\x9f\xf2\x95\x1f\xfb\xd2\xff\x00\x9f\xaf\x7d\x05\xf7\xfc\xa1\x4b\
\xfe\xf0\xdf\xe6\xeb\xdf\xc2\x32\xdf\xf3\xab\xc8\xff\x00\xe7\x15\
\x4f\xfd\x7a\xf7\xef\xac\xb4\xff\x00\x94\xa8\xff\x00\xde\x97\xfc\
\xfd\x7b\xe8\x2f\xbf\xe5\x0a\x5f\xf7\x86\xff\x00\x37\x5e\xfe\x11\
\x96\xff\x00\x9d\x5e\x47\xff\x00\x38\xaa\x7f\xeb\xd7\xbf\x7d\x65\
\xa7\xfc\xa5\x47\xfe\xf4\xbf\xe7\xeb\xdf\x41\x7d\xff\x00\x28\x52\
\xff\x00\xbc\x37\xf9\xba\xf7\xf0\x8c\xb7\xfc\xea\xf2\x3f\xf9\xc5\
\x53\xff\x00\x5e\xbd\xfb\xeb\x2d\x3f\xe5\x2a\x3f\xf7\xa5\xff\x00\
\x3f\x5e\xfa\x0b\xef\xf9\x42\x97\xfd\xe1\xbf\xcd\xd3\x96\x2b\x67\
\xee\xdc\xf5\x6c\x38\xdc\x1e\xd6\xdc\x79\x9c\x8d\x43\xa4\x74\xf4\
\x18\xac\x26\x4f\x23\x5b\x3c\x92\x30\x44\x8e\x1a\x5a\x3a\x59\xa7\
\x95\xdd\x88\x00\x2a\x92\x4f\xb4\xd7\x5b\xbe\xd3\x63\x0b\xdc\xde\
\xee\x96\xf0\xdb\xa8\xa9\x67\x91\x11\x40\x1e\x65\x99\x80\x1f\x99\
\xe9\x65\x8e\xc1\xbe\xee\x77\x11\xd9\xed\xbb\x2d\xdd\xc5\xdb\x90\
\x15\x22\x86\x49\x1d\x89\xc0\x01\x55\x4b\x12\x7c\x80\x1d\x5f\x4f\
\xf2\xcb\xfe\x5b\x1b\xfb\x6e\xef\xdc\x07\xc8\xaf\x90\x7b\x76\xa3\
\x68\xc3\xb5\x1c\x65\x3a\xdf\xae\xf3\x51\x08\xb7\x1d\x5e\xe1\x31\
\x15\xa2\xdd\x5b\xa3\x18\xe0\xcd\x80\xa6\xc0\x99\x0c\xb4\x54\x73\
\x88\xeb\xda\xbd\x12\x59\x12\x18\xe1\x41\x51\x83\x3f\x79\x1f\xbc\
\x5e\xc5\xb8\x6c\x57\xfe\xdf\x72\x0e\xe0\xb7\x6f\x74\x34\x5d\xdd\
\xc6\x6b\x0a\xc5\x5e\xe8\x21\x7e\x12\x99\x69\xa6\x49\x16\xb1\x88\
\xc9\x45\x67\x67\x26\x3e\x9d\x7d\xce\x7e\xe8\x5c\xd1\xb4\xf3\x3e\
\xd7\xee\xc7\xba\x9b\x4b\xd8\x47\x62\x7c\x4b\x0b\x19\x45\x2e\x1a\
\x7a\x76\x5c\xdc\xc6\x73\x02\xc3\x5d\x51\x44\xfa\x66\x33\x05\x77\
\x58\xd2\x35\x12\xec\x50\x3e\x83\xfd\x61\xfe\xf5\xef\x9f\xdd\x75\
\x7b\xae\xfd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5f\xff\xd5\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x75\x61\xfd\x07\xfb\
\x61\xef\xdd\x7b\xaf\x58\x7f\x41\xfe\xd8\x7b\xf7\x5e\xeb\xd6\x1f\
\xd0\x7f\xb6\x1e\xfd\xd7\xba\xf5\x87\xf4\x1f\xed\x87\xbf\x75\xee\
\xbd\x61\xfd\x07\xfb\x61\xef\xdd\x7b\xaf\x58\x7f\x41\xfe\xd8\x7b\
\xf7\x5e\xeb\xd6\x1f\xd0\x7f\xb6\x1e\xfd\xd7\xba\xf5\x87\xf4\x1f\
\xed\x87\xbf\x75\xee\xbd\x61\xfd\x07\xfb\x61\xef\xdd\x7b\xae\xfd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xff\xd6\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x75\xa9\x7f\xa8\xf7\xee\xbd\xd7\
\xae\x3f\xa8\xff\x00\x6e\x3d\xfb\xaf\x75\xd6\xa5\xfe\xbe\xfd\xd7\
\xba\xef\x50\xfe\xa3\xfd\xbf\xbf\x75\xee\xbd\xa8\x7f\x51\xfe\xdf\
\xdf\xba\xf7\x5d\x6a\x5f\xeb\xef\xdd\x7b\xae\xee\x3f\xa8\xff\x00\
\x6e\x3d\xfb\xaf\x75\xeb\x8f\xea\x3f\xdb\x8f\x7e\xeb\xdd\x77\x70\
\x7e\x86\xfe\xfd\xd7\xba\xf7\xbf\x75\xee\xba\xb8\xfe\xa3\xfd\xb8\
\xf7\xee\xbd\xd7\x7e\xfd\xd7\xba\xf7\xbf\x75\xee\xba\xb8\x3f\x42\
\x3d\xfb\xaf\x75\xdf\xbf\x75\xee\xbd\x70\x3e\xa6\xde\xfd\xd7\xba\
\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xae\xae\x3e\x97\x17\xf7\xee\xbd\
\xd7\x7e\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\x7b\xfd\x3d\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xff\xd7\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xc1\x9a\xdc\x0f\xf6\x27\xfd\xf7\xe7\xdf\xba\xf7\x58\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\x77\x23\xe8\x4f\xbf\x75\xee\xbd\x72\x7e\xa4\
\xfb\xf7\x5e\xeb\xaf\x7e\xeb\xdd\x77\x73\xfd\x4f\xfb\x73\xef\xdd\
\x7b\xae\xaf\x7f\xaf\xbf\x75\xee\xbb\xb9\x1f\x42\x47\xbf\x75\xee\
\xbd\x73\xfd\x4f\xfb\x73\xef\xdd\x7b\xae\xbd\xfb\xaf\x75\xdd\xcf\
\xf5\x3f\xed\xfd\xfb\xaf\x75\xeb\x93\xf5\x27\xdf\xba\xf7\x5d\x5e\
\xdf\x4f\x7e\xeb\xdd\x77\x73\xfd\x4f\xfb\x73\xef\xdd\x7b\xae\xaf\
\x7f\xaf\xbf\x75\xee\xbb\xb9\xfe\xa7\xfd\xb9\xf7\xee\xbd\xd7\xae\
\x7f\xa9\xff\x00\x6e\x7d\xfb\xaf\x75\xde\xa6\xfe\xbf\xf1\x3f\xef\
\x7e\xfd\xd7\xba\xef\x59\xff\x00\x0f\xf7\x9f\xf8\xaf\xbf\x75\xee\
\xbd\xac\xff\x00\x41\xef\xdd\x7b\xae\x5a\xc7\xe4\x1f\xf7\xdf\xed\
\xbd\xfb\xaf\x75\xc8\x1b\x8b\xfb\xf7\x5e\xeb\xbf\x7e\xeb\xdd\x7f\
\xff\xd0\xdf\xe3\xdf\xba\xf7\x5d\x12\x07\xd7\xdf\xba\xf7\x58\xcb\
\x93\xf4\xe3\xfd\xef\xdf\xba\xf7\x5c\x3d\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd6\x65\xfd\x23\xdf\xba\xf7\x5c\xbd\xfb\xaf\x75\xff\
\xd1\xdf\xe3\xdf\xba\xf7\x5c\x1c\x71\x7f\xe9\xfe\xf5\xef\xdd\x7b\
\xac\x5e\xfd\xd7\xba\xf7\xbf\x75\xee\x8a\x0f\x68\xff\x00\x30\x8f\
\x80\xdd\x1d\xbe\xf3\xbd\x5d\xdd\x5f\x38\x3e\x20\x74\xff\x00\x66\
\xed\x7f\xe1\x9f\xde\x5e\xba\xed\x1f\x92\xdd\x31\xd7\xfb\xef\x6e\
\xff\x00\x1a\xc3\xe3\xf7\x16\x1b\xf8\xee\xd1\xdd\x9b\xd7\x13\xb8\
\x31\x3f\xc5\xb6\xfe\x5a\x92\xba\x97\xee\x29\xe3\xf3\xd1\xd5\x45\
\x32\x6a\x8e\x44\x63\xee\xbd\xd0\x7f\xff\x00\x0e\xc1\xfc\xac\xff\
\x00\xef\x65\x7f\x00\x7f\xf4\xb2\x3e\x3b\x7f\xf6\xc6\xf7\xee\xbd\
\xd7\xbf\xe1\xd8\x3f\x95\x9f\xfd\xec\xaf\xe0\x0f\xfe\x96\x47\xc7\
\x6f\xfe\xd8\xde\xfd\xd7\xba\xf7\xfc\x3b\x07\xf2\xb3\xff\x00\xbd\
\x95\xfc\x01\xff\x00\xd2\xc8\xf8\xed\xff\x00\xdb\x1b\xdf\xba\xf7\
\x5e\xff\x00\x87\x60\xfe\x56\x7f\xf7\xb2\xbf\x80\x3f\xfa\x59\x1f\
\x1d\xbf\xfb\x63\x7b\xf7\x5e\xeb\xdf\xf0\xec\x1f\xca\xcf\xfe\xf6\
\x57\xf0\x07\xff\x00\x4b\x23\xe3\xb7\xff\x00\x6c\x6f\x7e\xeb\xdd\
\x7b\xfe\x1d\x83\xf9\x59\xff\x00\xde\xca\xfe\x00\xff\x00\xe9\x64\
\x7c\x76\xff\x00\xed\x8d\xef\xdd\x7b\xa3\xbd\xb4\xf7\x66\xd6\xdf\
\xbb\x5b\x6d\x6f\xad\x8b\xb9\x76\xfe\xf4\xd9\x3b\xd3\x6f\xe1\xb7\
\x66\xce\xde\x3b\x4f\x33\x8e\xdc\x7b\x5b\x76\x6d\x6d\xc7\x8e\xa6\
\xcc\x6d\xed\xcb\xb6\xb7\x0e\x1e\xa6\xb3\x13\x9d\xdb\xf9\xdc\x4d\
\x64\x35\x54\x75\x94\xb3\x4b\x4d\x55\x4d\x2a\x4b\x13\xb2\x32\xb1\
\xf7\x5e\xe8\xa0\xee\xcf\xe6\x69\xfc\xb7\x76\x16\xe9\xdc\xbb\x17\
\x7d\x7f\x30\x5f\x84\x3b\x2f\x7b\x6c\xbd\xc1\x99\xda\x7b\xc7\x67\
\x6e\xcf\x95\xfd\x0f\xb7\x37\x4e\xd3\xdd\x3b\x73\x23\x53\x87\xdc\
\x3b\x6b\x72\xed\xec\xc6\xfd\xa3\xcb\x60\xb7\x06\x0b\x2d\x47\x35\
\x2d\x65\x1d\x54\x31\x54\xd2\xd4\xc4\xf1\x4a\x8a\xea\xca\x3d\xd7\
\xba\x4f\xff\x00\xc3\xb0\x7f\x2b\x3f\xfb\xd9\x5f\xc0\x1f\xfd\x2c\
\x8f\x8e\xdf\xfd\xb1\xbd\xfb\xaf\x75\xef\xf8\x76\x0f\xe5\x67\xff\
\x00\x7b\x2b\xf8\x03\xff\x00\xa5\x91\xf1\xdb\xff\x00\xb6\x37\xbf\
\x75\xee\xbd\xff\x00\x0e\xc1\xfc\xac\xff\x00\xef\x65\x7f\x00\x7f\
\xf4\xb2\x3e\x3b\x7f\xf6\xc6\xf7\xee\xbd\xd1\xfe\xf7\xee\xbd\xd1\
\x01\xff\x00\x87\x60\xfe\x56\x7f\xf7\xb2\xbf\x80\x3f\xfa\x59\x1f\
\x1d\xbf\xfb\x63\x7b\xf7\x5e\xe8\xff\x00\x7b\xf7\x5e\xeb\xde\xfd\
\xd7\xba\x20\x3f\xf0\xec\x1f\xca\xcf\xfe\xf6\x57\xf0\x07\xff\x00\
\x4b\x23\xe3\xb7\xff\x00\x6c\x6f\x7e\xeb\xdd\x1f\xef\x7e\xeb\xdd\
\x10\x1f\xf8\x76\x0f\xe5\x67\xff\x00\x7b\x2b\xf8\x03\xff\x00\xa5\
\x91\xf1\xdb\xff\x00\xb6\x37\xbf\x75\xee\xbd\xff\x00\x0e\xc1\xfc\
\xac\xff\x00\xef\x65\x7f\x00\x7f\xf4\xb2\x3e\x3b\x7f\xf6\xc6\xf7\
\xee\xbd\xd1\xde\xdd\x9b\xb3\x6b\x6c\x2d\xad\xb9\x77\xd6\xfa\xdc\
\xbb\x7f\x65\xec\x9d\x97\xb7\xf3\x3b\xb3\x78\xef\x1d\xd9\x99\xc7\
\x6d\xcd\xad\xb4\xf6\xb6\xdc\xc7\x54\xe6\x37\x0e\xe5\xdc\xbb\x87\
\x31\x53\x47\x89\xc1\x6d\xfc\x16\x26\x8e\x6a\xaa\xca\xca\xa9\xa2\
\xa6\xa5\xa6\x89\xe5\x95\xd5\x15\x98\x7b\xaf\x74\x50\x76\x9f\xf3\
\x34\xfe\x5b\xbb\xf7\x74\xed\xad\x8b\xb1\x7f\x98\x2f\xc2\x1d\xe9\
\xbd\xb7\xa6\xe0\xc3\x6d\x3d\x9d\xb3\xb6\x9f\xca\xfe\x87\xdc\x7b\
\xa7\x76\x6e\x9d\xc7\x91\xa6\xc3\xed\xed\xb5\xb6\xb6\xf6\x1f\x7e\
\xd6\x65\xb3\xbb\x83\x3b\x96\xac\x86\x96\x8e\x8e\x96\x19\x6a\x6a\
\xaa\x65\x48\xa2\x46\x76\x55\x3e\xeb\xdd\x1d\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x49\xfd\xd9\xbb\x36\xb6\xc2\xda\xdb\x97\x7d\x6f\xad\
\xcb\xb7\xf6\x5e\xc9\xd9\x7b\x7f\x33\xbb\x37\x8e\xf1\xdd\x99\x9c\
\x76\xdc\xda\xdb\x4f\x6b\x6d\xcc\x75\x4e\x63\x70\xee\x5d\xcb\xb8\
\x73\x15\x34\x78\x9c\x16\xdf\xc1\x62\x68\xe6\xaa\xac\xac\xaa\x9a\
\x2a\x6a\x5a\x68\x9e\x59\x5d\x51\x59\x87\xba\xf7\x44\x87\xfe\x1d\
\x83\xf9\x59\xff\x00\xde\xca\xfe\x00\xff\x00\xe9\x64\x7c\x76\xff\
\x00\xed\x8d\xef\xdd\x7b\xa5\x06\xd3\xfe\x66\x9f\xcb\x77\x7e\xee\
\x9d\xb5\xb1\x76\x2f\xf3\x05\xf8\x43\xbd\x37\xb6\xf4\xdc\x18\x6d\
\xa7\xb3\xb6\x76\xd3\xf9\x5f\xd0\xfb\x8f\x74\xee\xcd\xd3\xb8\xf2\
\x34\xd8\x7d\xbd\xb6\xb6\xd6\xde\xc3\xef\xda\xcc\xb6\x77\x70\x67\
\x72\xd5\x90\xd2\xd1\xd1\xd2\xc3\x2d\x4d\x55\x4c\xa9\x14\x48\xce\
\xca\xa7\xdd\x7b\xa3\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\
\xd7\xba\x40\x76\x8f\x6c\x75\x67\x47\x6c\x4c\xef\x68\xf7\x57\x65\
\xf5\xff\x00\x4f\xf5\x96\xd7\xfe\x19\xfd\xe5\xec\x5e\xd1\xde\x5b\
\x77\xaf\xf6\x26\xdd\xfe\x35\x98\xc7\xed\xdc\x37\xf1\xdd\xdd\xbb\
\x32\x58\x9d\xbf\x89\xfe\x2d\xb8\x32\xd4\x94\x34\xbf\x71\x51\x1f\
\x9e\xb2\xaa\x28\x53\x54\x92\x22\x9f\x75\xee\x8a\x07\xfc\x3b\x07\
\xf2\xb3\xff\x00\xbd\x95\xfc\x01\xff\x00\xd2\xc8\xf8\xed\xff\x00\
\xdb\x1b\xdf\xba\xf7\x42\x07\x57\x7f\x30\x8f\x80\xdd\xe3\xbe\xf0\
\x5d\x5d\xd2\xbf\x38\x3e\x20\x77\x07\x66\xee\x8f\xe2\x7f\xdd\xae\
\xba\xea\xef\x92\xdd\x31\xd8\x1b\xef\x71\x7f\x05\xc3\xe4\x37\x16\
\x67\xf8\x16\xd1\xda\x7b\xd7\x2d\xb8\x32\xdf\xc2\x76\xfe\x26\xae\
\xba\xab\xed\xe9\xe4\xf0\x51\xd2\xcb\x33\xe9\x8e\x37\x61\xee\xbd\
\xd0\xff\x00\xda\x3d\xb1\xd5\x9d\x1d\xb1\x33\xbd\xa3\xdd\x5d\x97\
\xd7\xfd\x3f\xd6\x5b\x5f\xf8\x67\xf7\x97\xb1\x7b\x47\x79\x6d\xde\
\xbf\xd8\x9b\x77\xf8\xd6\x63\x1f\xb7\x70\xdf\xc7\x77\x76\xec\xc9\
\x62\x76\xfe\x27\xf8\xb6\xe0\xcb\x52\x50\xd2\xfd\xc5\x44\x7e\x7a\
\xca\xa8\xa1\x4d\x52\x48\x8a\x7d\xd7\xba\x28\x1f\xf0\xec\x1f\xca\
\xcf\xfe\xf6\x57\xf0\x07\xff\x00\x4b\x23\xe3\xb7\xff\x00\x6c\x6f\
\x7e\xeb\xdd\x7b\xfe\x1d\x83\xf9\x59\xff\x00\xde\xca\xfe\x00\xff\
\x00\xe9\x64\x7c\x76\xff\x00\xed\x8d\xef\xdd\x7b\xaf\x7f\xc3\xb0\
\x7f\x2b\x3f\xfb\xd9\x5f\xc0\x1f\xfd\x2c\x8f\x8e\xdf\xfd\xb1\xbd\
\xfb\xaf\x75\xef\xf8\x76\x0f\xe5\x67\xff\x00\x7b\x2b\xf8\x03\xff\
\x00\xa5\x91\xf1\xdb\xff\x00\xb6\x37\xbf\x75\xee\xbd\xff\x00\x0e\
\xc1\xfc\xac\xff\x00\xef\x65\x7f\x00\x7f\xf4\xb2\x3e\x3b\x7f\xf6\
\xc6\xf7\xee\xbd\xd7\xbf\xe1\xd8\x3f\x95\x9f\xfd\xec\xaf\xe0\x0f\
\xfe\x96\x47\xc7\x6f\xfe\xd8\xde\xfd\xd7\xba\x17\xfa\x57\xe6\xe7\
\xc3\x0f\x92\x7b\xa6\xbf\x62\xfc\x74\xf9\x77\xf1\x83\xbf\x77\xb6\
\x2b\x6f\xd5\x6e\xcc\xa6\xce\xe9\x5e\xfd\xea\x9e\xd4\xdd\x38\xdd\
\xad\x43\x91\xc5\x61\xeb\x77\x2d\x7e\xde\xd8\xbb\xb3\x3b\x96\xa3\
\xdb\xf4\x79\x6c\xed\x0d\x2c\xb5\x92\x42\xb4\xd1\xd4\xd6\x41\x13\
\x38\x79\xa3\x56\xf7\x5e\xe8\xcf\xfb\xf7\x5e\xeb\xc3\x9e\x3d\xfb\
\xaf\x75\x23\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\xd2\xdf\xe3\xdf\
\xba\xf7\x5d\x11\x70\x47\xbf\x75\xee\xb0\x7b\xf7\x5e\xeb\xde\xfd\
\xd7\xba\xf9\x05\xff\x00\xc2\xa2\xff\x00\xed\xfa\xbf\x39\x7f\xf2\
\xd9\xbf\xf8\x0f\x7e\x3e\xfb\xf7\x5e\xe8\x3f\xea\x7f\xf8\x4e\x2f\
\xf3\x9b\xef\x1e\xac\xeb\x4e\xea\xea\xef\x86\xff\x00\xde\x8e\xb2\
\xee\x0e\xbf\xd9\xbd\xa3\xd7\x5b\x97\xfd\x98\x6f\x8a\xb8\x5f\xef\
\x16\xc4\xec\x0d\xbb\x8d\xdd\x9b\x47\x3b\xfc\x1b\x71\x77\x8e\x27\
\x70\x62\x7f\x8b\x6d\xfc\xb5\x3d\x47\xda\xd7\x52\x52\xd6\x41\xe4\
\xd1\x34\x51\xc8\xac\x83\xdd\x7b\xa1\x03\xfe\x81\x74\xfe\x7a\xbf\
\xf7\x83\x5f\xfb\x33\x3f\x0f\x7f\xfb\xa0\xbd\xfb\xaf\x75\xef\xfa\
\x05\xd3\xf9\xea\xff\x00\xde\x0d\x7f\xec\xcc\xfc\x3d\xff\x00\xee\
\x82\xf7\xee\xbd\xd7\xbf\xe8\x17\x4f\xe7\xab\xff\x00\x78\x35\xff\
\x00\xb3\x33\xf0\xf7\xff\x00\xba\x0b\xdf\xba\xf7\x5e\xff\x00\xa0\
\x5d\x3f\x9e\xaf\xfd\xe0\xd7\xfe\xcc\xcf\xc3\xdf\xfe\xe8\x2f\x7e\
\xeb\xdd\x52\x17\x6c\x75\x76\xfb\xe8\xee\xd3\xec\xbe\x95\xed\x1c\
\x17\xf7\x5f\xb3\x7a\x7f\xb0\x37\x97\x57\x76\x2e\xda\xfe\x27\x87\
\xcd\x7f\x77\x77\xdf\x5f\xee\x2c\x96\xd3\xdd\xd8\x2f\xe3\x3b\x77\
\x21\x96\xdb\xf9\x6f\xe1\x3b\x83\x13\x51\x4f\xf7\x54\x35\x75\x54\
\x73\xf8\xf5\xc3\x2c\x91\xb2\xb9\xf7\x5e\xeb\xed\x67\xfc\xa7\xff\
\x00\xed\xd6\x7f\xcb\x53\xff\x00\x14\x07\xe1\xbf\xff\x00\x03\xb7\
\x5c\xfb\xf7\x5e\xeb\xe4\x17\xfc\xd8\x3f\xed\xe9\x9f\xcc\xaf\xff\
\x00\x17\xfb\xe6\x47\xff\x00\x04\x4f\x63\x7b\xf7\x5e\xe8\xdf\x75\
\x3f\xfc\x27\x17\xf9\xcd\xf7\x8f\x56\x75\xa7\x75\x75\x77\xc3\x7f\
\xef\x47\x59\x77\x07\x5f\xec\xde\xd1\xeb\xad\xcb\xfe\xcc\x37\xc5\
\x5c\x2f\xf7\x8b\x62\x76\x06\xdd\xc6\xee\xcd\xa3\x9d\xfe\x0d\xb8\
\xbb\xc7\x13\xb8\x31\x3f\xc5\xb6\xfe\x5a\x9e\xa3\xed\x6b\xa9\x29\
\x6b\x20\xf2\x68\x9a\x28\xe4\x56\x41\xee\xbd\xd5\x41\x76\xc7\x57\
\x6f\xbe\x8e\xed\x3e\xcb\xe9\x5e\xd1\xc1\x7f\x75\xfb\x37\xa7\xfb\
\x03\x79\x75\x77\x62\xed\xaf\xe2\x78\x7c\xd7\xf7\x77\x7d\xf5\xfe\
\xe2\xc9\x6d\x3d\xdd\x82\xfe\x33\xb7\x72\x19\x6d\xbf\x96\xfe\x13\
\xb8\x31\x35\x14\xff\x00\x75\x43\x57\x55\x47\x3f\x8f\x5c\x32\xc9\
\x1b\x2b\x9f\x75\xee\x90\x1e\xfd\xd7\xba\xfb\xf8\x7b\xf7\x5e\xeb\
\xe4\x17\xff\x00\x40\xba\x7f\x3d\x5f\xfb\xc1\xaf\xfd\x99\x9f\x87\
\xbf\xfd\xd0\x5e\xfd\xd7\xba\xdf\xe3\xfe\x82\x8b\xfe\x45\x5f\xf7\
\x9c\xbf\xfb\x2c\xdf\x30\xbf\xfb\x9f\x7d\xfb\xaf\x75\xef\xfa\x0a\
\x2f\xf9\x15\x7f\xde\x72\xff\x00\xec\xb3\x7c\xc2\xff\x00\xee\x7d\
\xf7\xee\xbd\xd6\x80\xff\x00\xf4\x0b\xa7\xf3\xd5\xff\x00\xbc\x1a\
\xff\x00\xd9\x99\xf8\x7b\xff\x00\xdd\x05\xef\xdd\x7b\xad\xfe\x3f\
\xe8\x28\xbf\xe4\x55\xff\x00\x79\xcb\xff\x00\xb2\xcd\xf3\x0b\xff\
\x00\xb9\xf7\xdf\xba\xf7\x5a\x03\xff\x00\xd0\x2e\x9f\xcf\x57\xfe\
\xf0\x6b\xff\x00\x66\x67\xe1\xef\xff\x00\x74\x17\xbf\x75\xee\xbd\
\xff\x00\x40\xba\x7f\x3d\x5f\xfb\xc1\xaf\xfd\x99\x9f\x87\xbf\xfd\
\xd0\x5e\xfd\xd7\xba\xdc\xeb\xf9\x84\x7f\xc2\x8e\xbf\x93\x27\x78\
\xfc\x06\xf9\xc1\xd2\xbd\x5d\xf3\x23\xfb\xd1\xd9\xbd\xc1\xf1\x03\
\xe4\xb7\x57\x75\xd6\xda\xff\x00\x65\xe7\xe5\x56\x17\xfb\xc5\xbe\
\xfb\x03\xa6\x37\xae\xd3\xda\x38\x2f\xe3\x3b\x8b\xa3\xb1\x3b\x7f\
\x13\xfc\x5b\x70\x65\xa9\xe9\xfe\xea\xba\xae\x96\x8e\x0f\x26\xb9\
\xa5\x8e\x35\x67\x1e\xeb\xdd\x7c\xe1\xff\x00\x97\xbf\x68\xec\x4e\
\x8e\xf9\xf3\xf0\x7f\xba\xbb\x47\x3b\xfd\xd7\xeb\x2e\x9f\xf9\x7f\
\xf1\xa7\xb4\x7b\x17\x72\xff\x00\x0c\xcc\x66\xbf\xbb\xbb\x13\xaf\
\xfb\x9f\x65\x6e\xcd\xdd\x9d\xfe\x0d\xb7\x71\xf9\x6d\xc1\x96\xfe\
\x13\xb7\xf1\x35\x15\x1f\x6b\x43\x49\x55\x59\x3f\x8f\x44\x31\x49\
\x23\x2a\x1f\x75\xee\xbe\xa6\xdf\xf4\x14\x5f\xf2\x2a\xff\x00\xbc\
\xe5\xff\x00\xd9\x66\xf9\x85\xff\x00\xdc\xfb\xef\xdd\x7b\xaf\x7f\
\xd0\x51\x7f\xc8\xab\xfe\xf3\x97\xff\x00\x65\x9b\xe6\x17\xff\x00\
\x73\xef\xbf\x75\xee\x8a\x0f\xf3\x08\xff\x00\x85\x1d\x7f\x26\x4e\
\xf1\xf8\x0d\xf3\x83\xa5\x7a\xbb\xe6\x47\xf7\xa3\xb3\x7b\x83\xe2\
\x07\xc9\x6e\xae\xeb\xad\xb5\xfe\xcb\xcf\xca\xac\x2f\xf7\x8b\x7d\
\xf6\x07\x4c\x6f\x5d\xa7\xb4\x70\x5f\xc6\x77\x17\x47\x62\x76\xfe\
\x27\xf8\xb6\xe0\xcb\x53\xd3\xfd\xd5\x75\x5d\x2d\x1c\x1e\x4d\x73\
\x4b\x1c\x6a\xce\x3d\xd7\xba\xf9\x64\xfb\xf7\x5e\xe8\xdf\x7f\x2f\
\x7e\xd1\xd8\x9d\x1d\xf3\xe7\xe0\xff\x00\x75\x76\x8e\x77\xfb\xaf\
\xd6\x5d\x3f\xf2\xff\x00\xe3\x4f\x68\xf6\x2e\xe5\xfe\x19\x98\xcd\
\x7f\x77\x76\x27\x5f\xf7\x3e\xca\xdd\x9b\xbb\x3b\xfc\x1b\x6e\xe3\
\xf2\xdb\x83\x2d\xfc\x27\x6f\xe2\x6a\x2a\x3e\xd6\x86\x92\xaa\xb2\
\x7f\x1e\x88\x62\x92\x46\x54\x3e\xeb\xdd\x7d\x4d\xbf\xe8\x28\xbf\
\xe4\x55\xff\x00\x79\xcb\xff\x00\xb2\xcd\xf3\x0b\xff\x00\xb9\xf7\
\xdf\xba\xf7\x42\x07\x53\xff\x00\xc2\x8e\xbf\x93\x27\x78\xf6\x9f\
\x5a\x74\xaf\x57\x7c\xc8\xfe\xf4\x76\x6f\x70\x76\x06\xcd\xea\xee\
\xba\xdb\x5f\xec\xbc\xfc\xaa\xc2\xff\x00\x78\xb7\xdf\x60\x6e\x2c\
\x6e\xd3\xda\x38\x2f\xe3\x3b\x8b\xa3\xb1\x3b\x7f\x13\xfc\x5b\x70\
\x65\xa9\xe9\xfe\xea\xba\xae\x96\x8e\x0f\x26\xb9\xa5\x8e\x35\x67\
\x1e\xeb\xdd\x5b\xef\x6c\x76\x8e\xc4\xe8\xee\xac\xec\xbe\xea\xed\
\x1c\xef\xf7\x5f\xac\xba\x7f\xaf\xf7\x97\x68\xf6\x2e\xe5\xfe\x19\
\x98\xcd\x7f\x77\x76\x27\x5f\xed\xdc\x96\xec\xdd\xd9\xdf\xe0\xdb\
\x77\x1f\x96\xdc\x19\x6f\xe1\x3b\x7f\x13\x51\x51\xf6\xb4\x34\x95\
\x55\x93\xf8\xf4\x43\x14\x92\x32\xa1\xf7\x5e\xeb\x54\x4f\xe6\x8b\
\xfc\xd1\x7e\x0a\x7f\x3a\x1f\x82\x9d\xe5\xfc\xb4\xbf\x96\x97\x79\
\x7f\xb3\x25\xf3\x67\xe4\x97\xfa\x33\xff\x00\x42\xbd\x2b\xfe\x8c\
\xfb\x87\xa7\x7f\xbe\x7f\xe8\x77\xb8\x7a\xfb\xbf\x7b\x1f\xfe\x32\
\x3f\x7e\xf5\xf7\x56\x75\x2e\xdd\xfe\xee\xf5\x2f\x56\x67\xb2\xdf\
\xee\x5b\x3d\x41\xf7\x7f\x61\xf6\xb4\xbe\x6a\xc9\xa9\xe9\xe6\xf7\
\x5e\xeb\x50\x5f\xfa\x05\xd3\xf9\xea\xff\x00\xde\x0d\x7f\xec\xcc\
\xfc\x3d\xff\x00\xee\x82\xf7\xee\xbd\xd5\xbe\xff\x00\x21\x7f\xe4\
\x2f\xfc\xd8\x3e\x17\x7f\x36\x0f\x8a\x9f\x25\xbe\x4b\x7c\x54\xff\
\x00\x46\xdd\x27\xd6\xdf\xe9\xcf\xfb\xeb\xbd\x7f\xd3\x9f\xc6\xdd\
\xe3\xfc\x17\xfb\xe3\xf1\xb7\xb8\x76\x0e\xdc\xff\x00\x7e\xe6\xc1\
\xee\x1d\xd5\xbb\x72\x3f\xc4\x77\x6e\xea\xa0\xa4\xff\x00\x24\xa0\
\x9f\xc3\xe7\xf2\xcb\xa2\x14\x92\x44\xf7\x5e\xeb\x67\xbf\xf8\x54\
\x5f\xfd\xb8\xab\xe7\x2f\xfe\x5b\x37\xff\x00\x06\x17\xc7\xdf\x7e\
\xeb\xdd\x7c\xa2\xbe\x2e\x7c\x5c\xef\x5f\x9a\x3d\xeb\xb1\xbe\x34\
\xfc\x69\xd8\xdf\xe9\x27\xbb\x3b\x27\xfb\xcd\xfd\xca\xd9\x5f\xde\
\x6d\x9d\xb3\xbf\x8d\x7f\x73\xb6\x76\xe0\xdf\xdb\x8f\xfd\xfc\x7b\
\xfb\x70\x6d\x5d\xa5\x8e\xfe\x1d\xb4\xb6\xad\x7d\x5f\xf9\x5d\x7c\
\x1e\x6f\x07\x8a\x2d\x73\x3c\x71\xbf\xba\xf7\x56\xfb\xff\x00\x40\
\xba\x7f\x3d\x5f\xfb\xc1\xaf\xfd\x99\x9f\x87\xbf\xfd\xd0\x5e\xfd\
\xd7\xba\xf7\xfd\x02\xe9\xfc\xf5\x7f\xef\x06\xbf\xf6\x66\x7e\x1e\
\xff\x00\xf7\x41\x7b\xf7\x5e\xeb\xdf\xf4\x0b\xa7\xf3\xd5\xff\x00\
\xbc\x1a\xff\x00\xd9\x99\xf8\x7b\xff\x00\xdd\x05\xef\xdd\x7b\xaf\
\x7f\xd0\x2e\x9f\xcf\x57\xfe\xf0\x6b\xff\x00\x66\x67\xe1\xef\xff\
\x00\x74\x17\xbf\x75\xee\x80\x0f\x94\x7f\xc8\x5f\xf9\xb0\x7c\x2e\
\xe8\xad\xf3\xf2\x5b\xe4\xb7\xc5\x4f\xf4\x6d\xd2\x7d\x6d\xfd\xd9\
\xfe\xfa\xef\x5f\xf4\xe7\xf1\xb7\x78\xff\x00\x05\xfe\xf8\xef\x1d\
\xbf\xb0\x76\xe7\xfb\xf7\x36\x0f\x70\xee\xad\xdb\x91\xfe\x23\xbb\
\x77\x55\x05\x27\xf9\x25\x04\xfe\x1f\x3f\x96\x5d\x10\xa4\x92\x27\
\xba\xf7\x56\xfb\xff\x00\x08\xac\xff\x00\xb7\xa6\x77\xe7\xfe\x28\
\x0f\x69\xff\x00\xf0\x44\xfc\x56\xf7\xee\xbd\xd7\xd3\xdb\xdf\xba\
\xf7\x5d\x8f\xa8\xff\x00\x5c\x7f\xbd\xfb\xf7\x5e\xeb\x3f\xbf\x75\
\xee\xbd\xef\xdd\x7b\xaf\xff\xd3\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd6\x27\x16\x3f\xeb\xff\x00\xbe\x3e\xfd\xd7\xba\xe1\xef\xdd\
\x7b\xaf\x90\x5f\xfc\x2a\x2f\xfe\xdf\xab\xf3\x97\xff\x00\x2d\x9b\
\xff\x00\x80\xf7\xe3\xef\xbf\x75\xee\xbe\x9e\xdf\xca\x7f\xfe\xdd\
\x67\xfc\xb5\x3f\xf1\x40\x7e\x1b\xff\x00\xf0\x3b\x75\xcf\xbf\x75\
\xee\x8a\x0f\x6c\x7f\xc2\x8e\xbf\x93\x27\x47\x76\x9f\x65\xf4\xaf\
\x68\xfc\xc8\xfe\xeb\xf6\x6f\x4f\xf6\x06\xf2\xea\xee\xc5\xdb\x5f\
\xec\xbc\xfc\xaa\xcd\x7f\x77\x77\xdf\x5f\xee\x2c\x96\xd3\xdd\xd8\
\x2f\xe3\x3b\x77\xa3\xb2\xdb\x7f\x2d\xfc\x27\x70\x62\x6a\x29\xfe\
\xea\x86\xae\xaa\x8e\x7f\x1e\xb8\x65\x92\x36\x57\x3e\xeb\xdd\x07\
\xff\x00\xf4\x14\x5f\xf2\x2a\xff\x00\xbc\xe5\xff\x00\xd9\x66\xf9\
\x85\xff\x00\xdc\xfb\xef\xdd\x7b\xaf\x7f\xd0\x51\x7f\xc8\xab\xfe\
\xf3\x97\xff\x00\x65\x9b\xe6\x17\xff\x00\x73\xef\xbf\x75\xee\xae\
\xf7\xa9\xfb\x47\x62\x77\x8f\x56\x75\xa7\x75\x75\x76\x77\xfb\xd1\
\xd6\x5d\xc1\xd7\xfb\x37\xb4\x7a\xeb\x72\xff\x00\x0c\xcc\x61\x7f\
\xbc\x5b\x13\xb0\x36\xee\x37\x76\x6d\x1c\xef\xf0\x6d\xc5\x8f\xc4\
\xee\x0c\x4f\xf1\x6d\xbf\x96\xa7\xa8\xfb\x5a\xea\x4a\x5a\xc8\x3c\
\x9a\x26\x8a\x39\x15\x90\x7b\xaf\x75\xf1\x4c\xfe\x6c\x1f\xf6\xf4\
\xcf\xe6\x57\xff\x00\x8b\xfd\xf3\x23\xff\x00\x82\x27\xb1\xbd\xfb\
\xaf\x75\xf5\xf4\xfe\x53\xff\x00\xf6\xeb\x3f\xe5\xa9\xff\x00\x8a\
\x03\xf0\xdf\xff\x00\x81\xdb\xae\x7d\xfb\xaf\x75\xf2\x0b\xfe\x6c\
\x1f\xf6\xf4\xcf\xe6\x57\xff\x00\x8b\xfd\xf3\x23\xff\x00\x82\x27\
\xb1\xbd\xfb\xaf\x75\xf5\xf4\xfe\x53\xff\x00\xf6\xeb\x3f\xe5\xa9\
\xff\x00\x8a\x03\xf0\xdf\xff\x00\x81\xdb\xae\x7d\xfb\xaf\x75\xf3\
\xc7\xfe\x61\x1f\xf0\x9c\x5f\xe7\x37\xde\x3f\x3e\x7e\x70\x77\x57\
\x57\x7c\x37\xfe\xf4\x75\x97\x70\x7c\xbf\xf9\x2d\xda\x3d\x75\xb9\
\x7f\xd9\x86\xf8\xab\x85\xfe\xf1\x6c\x4e\xc0\xee\x7d\xeb\xbb\x36\
\x8e\x77\xf8\x36\xe2\xef\x1c\x4e\xe0\xc4\xff\x00\x16\xdb\xf9\x6a\
\x7a\x8f\xb5\xae\xa4\xa5\xac\x83\xc9\xa2\x68\xa3\x91\x59\x07\xba\
\xf7\x45\x07\xfe\x81\x74\xfe\x7a\xbf\xf7\x83\x5f\xfb\x33\x3f\x0f\
\x7f\xfb\xa0\xbd\xfb\xaf\x75\xf5\xf4\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xf2\x0b\xff\x00\xa0\x5d\x3f\x9e\xaf\xfd\xe0\xd7\xfe\xcc\xcf\
\xc3\xdf\xfe\xe8\x2f\x7e\xeb\xdd\x7b\xfe\x81\x74\xfe\x7a\xbf\xf7\
\x83\x5f\xfb\x33\x3f\x0f\x7f\xfb\xa0\xbd\xfb\xaf\x75\xbf\xc7\xfd\
\x05\x17\xfc\x8a\xbf\xef\x39\x7f\xf6\x59\xbe\x61\x7f\xf7\x3e\xfb\
\xf7\x5e\xeb\x40\x7f\xfa\x05\xd3\xf9\xea\xff\x00\xde\x0d\x7f\xec\
\xcc\xfc\x3d\xff\x00\xee\x82\xf7\xee\xbd\xd7\xd7\xd3\xdf\xba\xf7\
\x54\x07\xff\x00\x41\x45\xff\x00\x22\xaf\xfb\xce\x5f\xfd\x96\x6f\
\x98\x5f\xfd\xcf\xbe\xfd\xd7\xba\xf9\x25\x75\x3f\x57\x6f\xbe\xf1\
\xed\x3e\xb4\xe9\x5e\xae\xc1\x7f\x7a\x3b\x37\xb8\x3b\x03\x66\xf5\
\x77\x5d\x6d\xaf\xe2\x78\x7c\x2f\xf7\x8b\x7d\xf6\x06\xe2\xc6\xed\
\x3d\xa3\x82\xfe\x33\xb8\xb2\x18\x9d\xbf\x89\xfe\x2d\xb8\x32\xd4\
\xf4\xff\x00\x75\x5d\x57\x4b\x47\x07\x93\x5c\xd2\xc7\x1a\xb3\x8f\
\x75\xee\xae\xf7\xfe\x81\x74\xfe\x7a\xbf\xf7\x83\x5f\xfb\x33\x3f\
\x0f\x7f\xfb\xa0\xbd\xfb\xaf\x74\x1f\xf6\xc7\xfc\x27\x17\xf9\xcd\
\xf4\x77\x56\x76\x5f\x75\x76\x8f\xc3\x7f\xee\xbf\x59\x74\xff\x00\
\x5f\xef\x2e\xd1\xec\x5d\xcb\xfe\xcc\x37\xc5\x5c\xd7\xf7\x77\x62\
\x75\xfe\xdd\xc9\x6e\xcd\xdd\x9d\xfe\x0d\xb7\x7b\xc7\x2d\xb8\x32\
\xdf\xc2\x76\xfe\x26\xa2\xa3\xed\x68\x69\x2a\xab\x27\xf1\xe8\x86\
\x29\x24\x65\x43\xee\xbd\xd5\x41\x75\x3f\x57\x6f\xbe\xf1\xed\x3e\
\xb4\xe9\x5e\xae\xc1\x7f\x7a\x3b\x37\xb8\x3b\x03\x66\xf5\x77\x5d\
\x6d\xaf\xe2\x78\x7c\x2f\xf7\x8b\x7d\xf6\x06\xe2\xc6\xed\x3d\xa3\
\x82\xfe\x33\xb8\xb2\x18\x9d\xbf\x89\xfe\x2d\xb8\x32\xd4\xf4\xff\
\x00\x75\x5d\x57\x4b\x47\x07\x93\x5c\xd2\xc7\x1a\xb3\x8f\x75\xee\
\xad\xf7\xb6\x3f\xe1\x38\xbf\xce\x6f\xa3\xba\xb3\xb2\xfb\xab\xb4\
\x7e\x1b\xff\x00\x75\xfa\xcb\xa7\xfa\xff\x00\x79\x76\x8f\x62\xee\
\x5f\xf6\x61\xbe\x2a\xe6\xbf\xbb\xbb\x13\xaf\xf6\xee\x4b\x76\x6e\
\xec\xef\xf0\x6d\xbb\xde\x39\x6d\xc1\x96\xfe\x13\xb7\xf1\x35\x15\
\x1f\x6b\x43\x49\x55\x59\x3f\x8f\x44\x31\x49\x23\x2a\x1f\x75\xee\
\xaa\x0b\xa9\xfa\xbb\x7d\xf7\x8f\x69\xf5\xa7\x4a\xf5\x76\x0b\xfb\
\xd1\xd9\xbd\xc1\xd8\x1b\x37\xab\xba\xeb\x6d\x7f\x13\xc3\xe1\x7f\
\xbc\x5b\xef\xb0\x37\x16\x37\x69\xed\x1c\x17\xf1\x9d\xc5\x90\xc4\
\xed\xfc\x4f\xf1\x6d\xc1\x96\xa7\xa7\xfb\xaa\xea\xba\x5a\x38\x3c\
\x9a\xe6\x96\x38\xd5\x9c\x7b\xaf\x75\x77\xbf\xf4\x0b\xa7\xf3\xd5\
\xff\x00\xbc\x1a\xff\x00\xd9\x99\xf8\x7b\xff\x00\xdd\x05\xef\xdd\
\x7b\xaf\x7f\xd0\x2e\x9f\xcf\x57\xfe\xf0\x6b\xff\x00\x66\x67\xe1\
\xef\xff\x00\x74\x17\xbf\x75\xee\x8d\xf7\xf2\xf7\xff\x00\x84\xe2\
\xff\x00\x39\xbe\x8e\xf9\xf3\xf0\x7f\xba\xbb\x47\xe1\xbf\xf7\x5f\
\xac\xba\x7f\xe5\xff\x00\xc6\x9e\xd1\xec\x5d\xcb\xfe\xcc\x37\xc5\
\x5c\xd7\xf7\x77\x62\x75\xff\x00\x73\xec\xad\xd9\xbb\xb3\xbf\xc1\
\xb6\xef\x78\xe5\xb7\x06\x5b\xf8\x4e\xdf\xc4\xd4\x54\x7d\xad\x0d\
\x25\x55\x64\xfe\x3d\x10\xc5\x24\x8c\xa8\x7d\xd7\xba\xfa\x3c\x7f\
\x30\x8e\xae\xdf\x7d\xe3\xf0\x1b\xe7\x07\x4a\xf5\x76\x0b\xfb\xd1\
\xd9\xbd\xc1\xf1\x03\xe4\xb7\x57\x75\xd6\xda\xfe\x27\x87\xc2\xff\
\x00\x78\xb7\xdf\x60\x74\xc6\xf5\xda\x7b\x47\x05\xfc\x67\x71\x64\
\x31\x3b\x7f\x13\xfc\x5b\x70\x65\xa9\xe9\xfe\xea\xba\xae\x96\x8e\
\x0f\x26\xb9\xa5\x8e\x35\x67\x1e\xeb\xdd\x68\x8d\xfc\x85\xff\x00\
\x90\xbf\xf3\x60\xf8\x5d\xfc\xd8\x3e\x2a\x7c\x96\xf9\x2d\xf1\x53\
\xfd\x1b\x74\x9f\x5b\x7f\xa7\x3f\xef\xae\xf5\xff\x00\x4e\x7f\x1b\
\x77\x8f\xf0\x5f\xef\x8f\xc6\xde\xe1\xd8\x3b\x73\xfd\xfb\x9b\x07\
\xb8\x77\x56\xed\xc8\xff\x00\x11\xdd\xbb\xaa\x82\x93\xfc\x92\x82\
\x7f\x0f\x9f\xcb\x2e\x88\x52\x49\x13\xdd\x7b\xad\xfe\x3e\x51\xfc\
\xa3\xe8\xaf\x85\xdd\x15\xbe\x7e\x4b\x7c\x96\xdf\x3f\xe8\xdb\xa4\
\xfa\xdb\xfb\xb3\xfd\xf5\xde\xbf\xdd\x9d\xe3\xbc\x7f\x82\xff\x00\
\x7c\x77\x8e\xdf\xd8\x3b\x73\xfd\xfb\x9b\x07\x6f\xee\xad\xdb\x91\
\xfe\x23\xbb\x77\x55\x05\x27\xf9\x25\x04\xfe\x1f\x3f\x96\x5d\x10\
\xa4\x92\x27\xba\xf7\x44\x07\xe2\xe7\xf3\xe8\xfe\x53\xff\x00\x34\
\x7b\xd7\x63\x7c\x69\xf8\xd3\xf2\xaf\xfd\x24\xf7\x67\x64\xff\x00\
\x79\xbf\xb9\x5b\x2b\xfd\x06\x7c\x92\xd9\xdf\xc6\xbf\xb9\xdb\x3b\
\x70\x6f\xed\xc7\xfe\xfe\x3d\xfd\xd3\xdb\x57\x69\x63\xbf\x87\x6d\
\x2d\xab\x5f\x57\xfe\x57\x5f\x07\x9b\xc1\xe2\x8b\x5c\xcf\x1c\x6f\
\xee\xbd\xd0\x01\xff\x00\x0a\x8b\xff\x00\xb7\x15\x7c\xe5\xff\x00\
\xcb\x66\xff\x00\xe0\xc2\xf8\xfb\xef\xdd\x7b\xad\x01\xff\x00\xe1\
\x2e\x9f\xf6\xfd\x5f\x83\x5f\xf9\x73\x3f\xfc\x07\xbf\x20\xbd\xfb\
\xaf\x75\xf5\x75\xf9\x47\xf2\x8f\xa2\xbe\x17\x74\x56\xf9\xf9\x2d\
\xf2\x5b\x7c\xff\x00\xa3\x6e\x93\xeb\x6f\xee\xcf\xf7\xd7\x7a\xff\
\x00\x76\x77\x8e\xf1\xfe\x0b\xfd\xf1\xde\x3b\x7f\x60\xed\xcf\xf7\
\xee\x6c\x1d\xbf\xba\xb7\x6e\x47\xf8\x8e\xed\xdd\x54\x14\x9f\xe4\
\x94\x13\xf8\x7c\xfe\x59\x74\x42\x92\x48\x9e\xeb\xdd\x54\x17\xfd\
\x05\x17\xfc\x8a\xbf\xef\x39\x7f\xf6\x59\xbe\x61\x7f\xf7\x3e\xfb\
\xf7\x5e\xeb\xdf\xf4\x14\x5f\xf2\x2a\xff\x00\xbc\xe5\xff\x00\xd9\
\x66\xf9\x85\xff\x00\xdc\xfb\xef\xdd\x7b\xa1\xff\x00\xe2\xe7\xf3\
\xe8\xfe\x53\xff\x00\x34\x7b\xd7\x63\x7c\x69\xf8\xd3\xf2\xaf\xfd\
\x24\xf7\x67\x64\xff\x00\x79\xbf\xb9\x5b\x2b\xfd\x06\x7c\x92\xd9\
\xdf\xc6\xbf\xb9\xdb\x3b\x70\x6f\xed\xc7\xfe\xfe\x3d\xfd\xd3\xdb\
\x57\x69\x63\xbf\x87\x6d\x2d\xab\x5f\x57\xfe\x57\x5f\x07\x9b\xc1\
\xe2\x8b\x5c\xcf\x1c\x6f\xee\xbd\xd0\x01\xff\x00\x0a\x8b\xff\x00\
\xb7\x15\x7c\xe5\xff\x00\xcb\x66\xff\x00\xe0\xc2\xf8\xfb\xef\xdd\
\x7b\xad\x41\x7f\xe1\x15\x9f\xf6\xf4\xce\xfc\xff\x00\xc5\x01\xed\
\x3f\xfe\x08\x9f\x8a\xde\xfd\xd7\xba\xfa\x7b\x7b\xf7\x5e\xeb\x92\
\x8b\xb0\xff\x00\x0e\x7f\xdf\x7f\xb1\xf7\xee\xbd\xd6\x6f\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5f\xff\xd4\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\x17\x17\x5f\xf5\xb9\xff\x00\x7d\xfe\xc3\xdf\xba\xf7\x58\
\x7d\xfb\xaf\x75\xf2\x0b\xff\x00\x85\x45\xff\x00\xdb\xf5\x7e\x72\
\xff\x00\xe5\xb3\x7f\xf0\x1e\xfc\x7d\xf7\xee\xbd\xd7\xd3\xdb\xf9\
\x4f\xff\x00\xdb\xac\xff\x00\x96\xa7\xfe\x28\x0f\xc3\x7f\xfe\x07\
\x6e\xb9\xf7\xee\xbd\xd7\xc8\x2f\xf9\xb0\x7f\xdb\xd3\x3f\x99\x5f\
\xfe\x2f\xf7\xcc\x8f\xfe\x08\x9e\xc6\xf7\xee\xbd\xd1\x01\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xf6\xf2\xfe\x53\xff\x00\xf6\xeb\x3f\xe5\
\xa9\xff\x00\x8a\x03\xf0\xdf\xff\x00\x81\xdb\xae\x7d\xfb\xaf\x75\
\xf2\x0b\xfe\x6c\x1f\xf6\xf4\xcf\xe6\x57\xff\x00\x8b\xfd\xf3\x23\
\xff\x00\x82\x27\xb1\xbd\xfb\xaf\x75\xf5\xf4\xfe\x53\xff\x00\xf6\
\xeb\x3f\xe5\xa9\xff\x00\x8a\x03\xf0\xdf\xff\x00\x81\xdb\xae\x7d\
\xfb\xaf\x75\xf3\xc7\xfe\x61\x1f\xf0\x9c\x5f\xe7\x37\xde\x3f\x3e\
\x7e\x70\x77\x57\x57\x7c\x37\xfe\xf4\x75\x97\x70\x7c\xbf\xf9\x2d\
\xda\x3d\x75\xb9\x7f\xd9\x86\xf8\xab\x85\xfe\xf1\x6c\x4e\xc0\xee\
\x7d\xeb\xbb\x36\x8e\x77\xf8\x36\xe2\xef\x1c\x4e\xe0\xc4\xff\x00\
\x16\xdb\xf9\x6a\x7a\x8f\xb5\xae\xa4\xa5\xac\x83\xc9\xa2\x68\xa3\
\x91\x59\x07\xba\xf7\x5b\x5d\xfc\x4f\xfe\x7d\x1f\xca\x7f\xe0\xef\
\xc5\x9f\x8d\x5f\x0a\xbe\x51\xfc\xab\xff\x00\x46\x1f\x26\x7e\x20\
\x74\x07\x4d\xfc\x5c\xf9\x15\xd6\x9f\xe8\x33\xe4\x96\xf5\xff\x00\
\x47\x9d\xeb\xf1\xff\x00\xae\xb6\xe7\x53\xf6\xe6\xc6\xfe\xf9\x75\
\xe7\x4f\x6e\xdd\x81\xbb\x7f\xba\x5d\x81\xb4\xb2\x14\x1f\xc4\xf0\
\x59\x5c\x9e\x1e\xbf\xed\xfc\xf4\x55\x75\x14\xd2\x47\x33\xfb\xaf\
\x75\xb1\xe7\x53\xf6\x8e\xc4\xef\x1e\xac\xeb\x4e\xea\xea\xec\xef\
\xf7\xa3\xac\xbb\x83\xaf\xf6\x6f\x68\xf5\xd6\xe5\xfe\x19\x98\xc2\
\xff\x00\x78\xb6\x27\x60\x6d\xdc\x6e\xec\xda\x39\xdf\xe0\xdb\x8b\
\x1f\x89\xdc\x18\x9f\xe2\xdb\x7f\x2d\x4f\x51\xf6\xb5\xd4\x94\xb5\
\x90\x79\x34\x4d\x14\x72\x2b\x20\xf7\x5e\xe9\x7f\xef\xdd\x7b\xaa\
\x03\xff\x00\xa0\xa2\xff\x00\x91\x57\xfd\xe7\x2f\xfe\xcb\x37\xcc\
\x2f\xfe\xe7\xdf\x7e\xeb\xdd\x7b\xfe\x82\x8b\xfe\x45\x5f\xf7\x9c\
\xbf\xfb\x2c\xdf\x30\xbf\xfb\x9f\x7d\xfb\xaf\x75\x7f\x9e\xfd\xd7\
\xba\xf7\xbf\x75\xee\xbe\x01\xfe\xfd\xd7\xba\xfb\xf8\x7b\xf7\x5e\
\xea\x80\xff\x00\xe8\x28\xbf\xe4\x55\xff\x00\x79\xcb\xff\x00\xb2\
\xcd\xf3\x0b\xff\x00\xb9\xf7\xdf\xba\xf7\x5a\x03\xff\x00\xd0\x2e\
\x9f\xcf\x57\xfe\xf0\x6b\xff\x00\x66\x67\xe1\xef\xff\x00\x74\x17\
\xbf\x75\xee\x87\xff\x00\x89\xff\x00\xc8\x5f\xf9\xb0\x7c\x1d\xf9\
\x4d\xf1\xab\xe6\xaf\xca\x3f\x8a\x9f\xe8\xc3\xe3\x37\xc4\x0e\xff\
\x00\xe9\xbf\x94\x7f\x22\xbb\x2f\xfd\x39\xfc\x6d\xde\xbf\xe8\xf3\
\xa2\xbe\x3f\xf6\x2e\xdc\xed\x8e\xdc\xdf\x3f\xdc\xde\xbc\xee\x1d\
\xdb\xbf\xf7\x6f\xf7\x4b\xaf\xf6\x96\x42\xbf\xf8\x66\x0b\x15\x93\
\xcc\x57\xfd\xbf\x82\x8a\x92\xa2\xa6\x48\xe1\x7f\x75\xee\xb7\xb9\
\xea\x7f\xf8\x51\xd7\xf2\x64\xef\x1e\xd3\xeb\x4e\x95\xea\xef\x99\
\x1f\xde\x8e\xcd\xee\x0e\xc0\xd9\xbd\x5d\xd7\x5b\x6b\xfd\x97\x9f\
\x95\x58\x5f\xef\x16\xfb\xec\x0d\xc5\x8d\xda\x7b\x47\x05\xfc\x67\
\x71\x74\x76\x27\x6f\xe2\x7f\x8b\x6e\x0c\xb5\x3d\x3f\xdd\x57\x55\
\xd2\xd1\xc1\xe4\xd7\x34\xb1\xc6\xac\xe3\xdd\x7b\xa3\x7d\xfc\xd8\
\x3f\xed\xd6\x7f\xcc\xaf\xff\x00\x14\x07\xe6\x47\xff\x00\x03\xb7\
\x63\x7b\xf7\x5e\xeb\xe4\x17\xfc\xa7\xff\x00\xed\xe9\x9f\xcb\x53\
\xff\x00\x17\xfb\xe1\xbf\xff\x00\x04\x4f\x5c\xfb\xf7\x5e\xeb\xec\
\x69\xfc\xc2\x3a\xbb\x7d\xf7\x8f\xc0\x6f\x9c\x1d\x2b\xd5\xd8\x2f\
\xef\x47\x66\xf7\x07\xc4\x0f\x92\xdd\x5d\xd7\x5b\x6b\xf8\x9e\x1f\
\x0b\xfd\xe2\xdf\x7d\x81\xd3\x1b\xd7\x69\xed\x1c\x17\xf1\x9d\xc5\
\x90\xc4\xed\xfc\x4f\xf1\x6d\xc1\x96\xa7\xa7\xfb\xaa\xea\xba\x5a\
\x38\x3c\x9a\xe6\x96\x38\xd5\x9c\x7b\xaf\x75\xf3\x48\xf8\x9f\xfc\
\x85\xff\x00\x9b\x07\xc1\xdf\x94\xdf\x1a\xbe\x6a\xfc\xa3\xf8\xa9\
\xfe\x8c\x3e\x33\x7c\x40\xef\xfe\x9b\xf9\x47\xf2\x2b\xb2\xff\x00\
\xd3\x9f\xc6\xdd\xeb\xfe\x8f\x3a\x2b\xe3\xff\x00\x62\xed\xce\xd8\
\xed\xcd\xf3\xfd\xcd\xeb\xce\xe1\xdd\xbb\xff\x00\x76\xff\x00\x74\
\xba\xff\x00\x69\x64\x2b\xff\x00\x86\x60\xb1\x59\x3c\xc5\x7f\xdb\
\xf8\x28\xa9\x2a\x2a\x64\x8e\x17\xf7\x5e\xeb\x77\x9f\xfa\x0a\x2f\
\xf9\x15\x7f\xde\x72\xff\x00\xec\xb3\x7c\xc2\xff\x00\xee\x7d\xf7\
\xee\xbd\xd7\xbf\xe8\x28\xbf\xe4\x55\xff\x00\x79\xcb\xff\x00\xb2\
\xcd\xf3\x0b\xff\x00\xb9\xf7\xdf\xba\xf7\x42\x07\x53\xff\x00\xc2\
\x8e\xbf\x93\x27\x78\xf6\x9f\x5a\x74\xaf\x57\x7c\xc8\xfe\xf4\x76\
\x6f\x70\x76\x06\xcd\xea\xee\xba\xdb\x5f\xec\xbc\xfc\xaa\xc2\xff\
\x00\x78\xb7\xdf\x60\x6e\x2c\x6e\xd3\xda\x38\x2f\xe3\x3b\x8b\xa3\
\xb1\x3b\x7f\x13\xfc\x5b\x70\x65\xa9\xe9\xfe\xea\xba\xae\x96\x8e\
\x0f\x26\xb9\xa5\x8e\x35\x67\x1e\xeb\xdd\x5b\xef\x6c\x76\x8e\xc4\
\xe8\xee\xac\xec\xbe\xea\xed\x1c\xef\xf7\x5f\xac\xba\x7f\xaf\xf7\
\x97\x68\xf6\x2e\xe5\xfe\x19\x98\xcd\x7f\x77\x76\x27\x5f\xed\xdc\
\x96\xec\xdd\xd9\xdf\xe0\xdb\x77\x1f\x96\xdc\x19\x6f\xe1\x3b\x7f\
\x13\x51\x51\xf6\xb4\x34\x95\x55\x93\xf8\xf4\x43\x14\x92\x32\xa1\
\xf7\x5e\xea\xb0\x7e\x2e\x7f\x3e\x8f\xe5\x3f\xf3\x47\xbd\x76\x37\
\xc6\x9f\x8d\x3f\x2a\xff\x00\xd2\x4f\x76\x76\x4f\xf7\x9b\xfb\x95\
\xb2\xbf\xd0\x67\xc9\x2d\x9d\xfc\x6b\xfb\x9d\xb3\xb7\x06\xfe\xdc\
\x7f\xef\xe3\xdf\xdd\x3d\xb5\x76\x96\x3b\xf8\x76\xd2\xda\xb5\xf5\
\x7f\xe5\x75\xf0\x79\xbc\x1e\x28\xb5\xcc\xf1\xc6\xfe\xeb\xdd\x00\
\x1f\xf0\xa8\xbf\xfb\x71\x57\xce\x5f\xfc\xb6\x6f\xfe\x0c\x2f\x8f\
\xbe\xfd\xd7\xba\xd0\x1f\xfe\x12\xe9\xff\x00\x6f\xd5\xf8\x35\xff\
\x00\x97\x33\xff\x00\xc0\x7b\xf2\x0b\xdf\xba\xf7\x5b\xfc\x7f\xc2\
\xa2\xff\x00\xed\xc5\x5f\x39\x7f\xf2\xd9\xbf\xf8\x30\xbe\x3e\xfb\
\xf7\x5e\xeb\x40\x7f\xf8\x4b\xa7\xfd\xbf\x57\xe0\xd7\xfe\x5c\xcf\
\xff\x00\x01\xef\xc8\x2f\x7e\xeb\xdd\x6f\xf1\xff\x00\x0a\x8b\xff\
\x00\xb7\x15\x7c\xe5\xff\x00\xcb\x66\xff\x00\xe0\xc2\xf8\xfb\xef\
\xdd\x7b\xaf\x90\x5f\xbf\x75\xee\xbd\xef\xdd\x7b\xab\xfc\xff\x00\
\x84\xba\x7f\xdb\xf5\x7e\x0d\x7f\xe5\xcc\xff\x00\xf0\x1e\xfc\x82\
\xf7\xee\xbd\xd6\xff\x00\x1f\xf0\xa8\xbf\xfb\x71\x57\xce\x5f\xfc\
\xb6\x6f\xfe\x0c\x2f\x8f\xbe\xfd\xd7\xba\xd4\x17\xfe\x11\x59\xff\
\x00\x6f\x4c\xef\xcf\xfc\x50\x1e\xd3\xff\x00\xe0\x89\xf8\xad\xef\
\xdd\x7b\xaf\xa7\xb7\xbf\x75\xee\xb2\x27\xd4\x9f\xf7\xdc\xff\x00\
\xc8\xbd\xfb\xaf\x75\x93\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\xd5\
\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\x47\x90\x47\xf8\x7b\xf7\
\x5e\xeb\x07\xbf\x75\xee\xbe\x41\x7f\xf0\xa8\xbf\xfb\x7e\xaf\xce\
\x5f\xfc\xb6\x6f\xfe\x03\xdf\x8f\xbe\xfd\xd7\xba\xfa\x7b\x7f\x29\
\xff\x00\xfb\x75\x9f\xf2\xd4\xff\x00\xc5\x01\xf8\x6f\xff\x00\xc0\
\xed\xd7\x3e\xfd\xd7\xba\xf9\x05\xff\x00\x36\x0f\xfb\x7a\x67\xf3\
\x2b\xff\x00\xc5\xfe\xf9\x91\xff\x00\xc1\x13\xd8\xde\xfd\xd7\xba\
\x20\x3e\xfd\xd7\xba\xf7\xbf\x75\xee\xbe\xde\x5f\xca\x7f\xfe\xdd\
\x67\xfc\xb5\x3f\xf1\x40\x7e\x1b\xff\x00\xf0\x3b\x75\xcf\xbf\x75\
\xee\xbe\x41\x7f\xcd\x83\xfe\xde\x99\xfc\xca\xff\x00\xf1\x7f\xbe\
\x64\x7f\xf0\x44\xf6\x37\xbf\x75\xee\xbe\xbe\x9f\xca\x7f\xfe\xdd\
\x67\xfc\xb5\x3f\xf1\x40\x7e\x1b\xff\x00\xf0\x3b\x75\xcf\xbf\x75\
\xee\x8f\xf7\xbf\x75\xee\xbe\x59\x3f\xcc\x23\xfe\x13\x8b\xfc\xe6\
\xfb\xc7\xe7\xcf\xce\x0e\xea\xea\xef\x86\xff\x00\xde\x8e\xb2\xee\
\x0f\x97\xff\x00\x25\xbb\x47\xae\xb7\x2f\xfb\x30\xdf\x15\x70\xbf\
\xde\x2d\x89\xd8\x1d\xcf\xbd\x77\x66\xd1\xce\xff\x00\x06\xdc\x5d\
\xe3\x89\xdc\x18\x9f\xe2\xdb\x7f\x2d\x4f\x51\xf6\xb5\xd4\x94\xb5\
\x90\x79\x34\x4d\x14\x72\x2b\x20\xf7\x5e\xeb\xe8\xf1\xfc\xbd\xfa\
\xbb\x7d\xf4\x77\xc0\x6f\x83\xfd\x2b\xda\x38\x2f\xee\xbf\x66\xf4\
\xff\x00\xc4\x0f\x8d\x3d\x5d\xd8\xbb\x6b\xf8\x9e\x1f\x35\xfd\xdd\
\xdf\x7d\x7f\xd3\x1b\x2b\x69\xee\xec\x17\xf1\x9d\xbb\x90\xcb\x6d\
\xfc\xb7\xf0\x9d\xc1\x89\xa8\xa7\xfb\xaa\x1a\xba\xaa\x39\xfc\x7a\
\xe1\x96\x48\xd9\x5c\xfb\xaf\x74\x6f\xbd\xfb\xaf\x75\xf2\x0b\xff\
\x00\xa0\x5d\x3f\x9e\xaf\xfd\xe0\xd7\xfe\xcc\xcf\xc3\xdf\xfe\xe8\
\x2f\x7e\xeb\xdd\x50\x1f\xbf\x75\xee\xbe\xfe\x1e\xfd\xd7\xba\xa0\
\x3f\xfa\x0a\x2f\xf9\x15\x7f\xde\x72\xff\x00\xec\xb3\x7c\xc2\xff\
\x00\xee\x7d\xf7\xee\xbd\xd6\x80\xff\x00\xf4\x0b\xa7\xf3\xd5\xff\
\x00\xbc\x1a\xff\x00\xd9\x99\xf8\x7b\xff\x00\xdd\x05\xef\xdd\x7b\
\xaf\xaf\xa7\xbf\x75\xee\xbe\x01\xfe\xfd\xd7\xba\xfa\xfa\x7f\xd0\
\x51\x7f\xc8\xab\xfe\xf3\x97\xff\x00\x65\x9b\xe6\x17\xff\x00\x73\
\xef\xbf\x75\xee\xac\xfb\xf9\x84\x75\x76\xfb\xef\x1f\x80\xdf\x38\
\x3a\x57\xab\xb0\x5f\xde\x8e\xcd\xee\x0f\x88\x1f\x25\xba\xbb\xae\
\xb6\xd7\xf1\x3c\x3e\x17\xfb\xc5\xbe\xfb\x03\xa6\x37\xae\xd3\xda\
\x38\x2f\xe3\x3b\x8b\x21\x89\xdb\xf8\x9f\xe2\xdb\x83\x2d\x4f\x4f\
\xf7\x55\xd5\x74\xb4\x70\x79\x35\xcd\x2c\x71\xab\x38\xf7\x5e\xeb\
\xe7\x0f\xfc\xbd\xff\x00\xe1\x38\xbf\xce\x6f\xa3\xbe\x7c\xfc\x1f\
\xee\xae\xd1\xf8\x6f\xfd\xd7\xeb\x2e\x9f\xf9\x7f\xf1\xa7\xb4\x7b\
\x17\x72\xff\x00\xb3\x0d\xf1\x57\x35\xfd\xdd\xd8\x9d\x7f\xdc\xfb\
\x2b\x76\x6e\xec\xef\xf0\x6d\xbb\xde\x39\x6d\xc1\x96\xfe\x13\xb7\
\xf1\x35\x15\x1f\x6b\x43\x49\x55\x59\x3f\x8f\x44\x31\x49\x23\x2a\
\x1f\x75\xee\xbe\x8f\x1f\xcc\x23\xab\xb7\xdf\x78\xfc\x06\xf9\xc1\
\xd2\xbd\x5d\x82\xfe\xf4\x76\x6f\x70\x7c\x40\xf9\x2d\xd5\xdd\x75\
\xb6\xbf\x89\xe1\xf0\xbf\xde\x2d\xf7\xd8\x1d\x31\xbd\x76\x9e\xd1\
\xc1\x7f\x19\xdc\x59\x0c\x4e\xdf\xc4\xff\x00\x16\xdc\x19\x6a\x7a\
\x7f\xba\xae\xab\xa5\xa3\x83\xc9\xae\x69\x63\x8d\x59\xc7\xba\xf7\
\x5f\x34\x8f\x89\xff\x00\xc8\x5f\xf9\xb0\x7c\x1d\xf9\x4d\xf1\xab\
\xe6\xaf\xca\x3f\x8a\x9f\xe8\xc3\xe3\x37\xc4\x0e\xff\x00\xe9\xbf\
\x94\x7f\x22\xbb\x2f\xfd\x39\xfc\x6d\xde\xbf\xe8\xf3\xa2\xbe\x3f\
\xf6\x2e\xdc\xed\x8e\xdc\xdf\x3f\xdc\xde\xbc\xee\x1d\xdb\xbf\xf7\
\x6f\xf7\x4b\xaf\xf6\x96\x42\xbf\xf8\x66\x0b\x15\x93\xcc\x57\xfd\
\xbf\x82\x8a\x92\xa2\xa6\x48\xe1\x7f\x75\xee\xb7\x79\xff\x00\xa0\
\xa2\xff\x00\x91\x57\xfd\xe7\x2f\xfe\xcb\x37\xcc\x2f\xfe\xe7\xdf\
\x7e\xeb\xdd\x00\x1f\x2c\x3f\x9f\x47\xf2\x9f\xf9\xc5\xf1\x67\xe4\
\xaf\xc2\xaf\x8b\x9f\x2a\xff\x00\xd2\x7f\xc9\x9f\x97\xfd\x01\xdc\
\x9f\x17\x3e\x3a\xf5\xa7\xfa\x0c\xf9\x25\xb2\xbf\xd2\x1f\x7a\xfc\
\x80\xeb\xad\xc7\xd4\xfd\x47\xb1\xbf\xbe\x5d\x87\xd3\xdb\x4b\x60\
\x6d\x2f\xef\x6f\x60\x6e\xdc\x7d\x07\xf1\x3c\xee\x57\x19\x87\xa0\
\xfb\x8f\x3d\x6d\x5d\x3d\x34\x72\x4c\x9e\xeb\xdd\x69\x0d\xff\x00\
\x40\xba\x7f\x3d\x5f\xfb\xc1\xaf\xfd\x99\x9f\x87\xbf\xfd\xd0\x5e\
\xfd\xd7\xba\xf7\xfd\x02\xe9\xfc\xf5\x7f\xef\x06\xbf\xf6\x66\x7e\
\x1e\xff\x00\xf7\x41\x7b\xf7\x5e\xe8\xdf\x7f\x2f\x7f\xf8\x4e\x2f\
\xf3\x9b\xe8\xef\x9f\x3f\x07\xfb\xab\xb4\x7e\x1b\xff\x00\x75\xfa\
\xcb\xa7\xfe\x5f\xfc\x69\xed\x1e\xc5\xdc\xbf\xec\xc3\x7c\x55\xcd\
\x7f\x77\x76\x27\x5f\xf7\x3e\xca\xdd\x9b\xbb\x3b\xfc\x1b\x6e\xf7\
\x8e\x5b\x70\x65\xbf\x84\xed\xfc\x4d\x45\x47\xda\xd0\xd2\x55\x56\
\x4f\xe3\xd1\x0c\x52\x48\xca\x87\xdd\x7b\xaf\xa3\xc7\xf3\x08\xea\
\xed\xf7\xde\x3f\x01\xbe\x70\x74\xaf\x57\x60\xbf\xbd\x1d\x9b\xdc\
\x1f\x10\x3e\x4b\x75\x77\x5d\x6d\xaf\xe2\x78\x7c\x2f\xf7\x8b\x7d\
\xf6\x07\x4c\x6f\x5d\xa7\xb4\x70\x5f\xc6\x77\x16\x43\x13\xb7\xf1\
\x3f\xc5\xb7\x06\x5a\x9e\x9f\xee\xab\xaa\xe9\x68\xe0\xf2\x6b\x9a\
\x58\xe3\x56\x71\xee\xbd\xd7\xcf\x1f\xf9\x5d\x7f\x2b\xaf\x9d\x7f\
\xc9\x7b\xe7\x5f\x46\xff\x00\x32\xdf\xe6\x5b\xd1\xbf\xec\xb6\xfc\
\x26\xf8\xdb\xfe\x93\x3f\xd3\x57\x75\x7f\xa4\xce\x9e\xee\x2f\xee\
\x67\xfa\x62\xe9\xee\xc1\xe8\x2e\xb8\xff\x00\x8c\x71\xd0\x5d\x83\
\xda\x7d\xb5\xb8\xbf\xbc\x5d\xb5\xda\x78\x1c\x4f\xfb\x89\xc0\xd7\
\xfd\xa7\xdf\xfd\xd5\x57\x86\x8e\x1a\x8a\x88\x7d\xd7\xba\xb7\xdf\
\xe7\xd1\xfc\xfa\x3f\x94\xff\x00\xcd\x1f\xe5\x3f\xf2\xaf\xe3\x4f\
\xc6\x9f\x95\x7f\xe9\x27\xbb\x3b\x27\xfd\x06\x7f\x72\xb6\x57\xfa\
\x0c\xf9\x25\xb3\xbf\x8d\x7f\x73\xbe\x49\x74\xf6\xfe\xdc\x7f\xef\
\xe3\xdf\xdd\x3d\xb5\x76\x96\x3b\xf8\x76\xd2\xda\xb5\xf5\x7f\xe5\
\x75\xf0\x79\xbc\x1e\x28\xb5\xcc\xf1\xc6\xfe\xeb\xdd\x6b\x09\xff\
\x00\x09\x74\xff\x00\xb7\xea\xfc\x1a\xff\x00\xcb\x99\xff\x00\xe0\
\x3d\xf9\x05\xef\xdd\x7b\xad\xfe\x3f\xe1\x51\x7f\xf6\xe2\xaf\x9c\
\xbf\xf9\x6c\xdf\xfc\x18\x5f\x1f\x7d\xfb\xaf\x75\xa0\x3f\xfc\x25\
\xd3\xfe\xdf\xab\xf0\x6b\xff\x00\x2e\x67\xff\x00\x80\xf7\xe4\x17\
\xbf\x75\xee\xb7\xf8\xff\x00\x85\x45\xff\x00\xdb\x8a\xbe\x72\xff\
\x00\xe5\xb3\x7f\xf0\x61\x7c\x7d\xf7\xee\xbd\xd7\xc8\x2f\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd5\xfe\x7f\xc2\x5d\x3f\xed\xfa\xbf\x06\xbf\
\xf2\xe6\x7f\xf8\x0f\x7e\x41\x7b\xf7\x5e\xeb\x7f\x8f\xf8\x54\x5f\
\xfd\xb8\xab\xe7\x2f\xfe\x5b\x37\xff\x00\x06\x17\xc7\xdf\x7e\xeb\
\xdd\x6a\x0b\xff\x00\x08\xac\xff\x00\xb7\xa6\x77\xe7\xfe\x28\x0f\
\x69\xff\x00\xf0\x44\xfc\x56\xf7\xee\xbd\xd7\xd3\xdb\xdf\xba\xf7\
\x59\x23\xfc\xff\x00\xb0\xff\x00\x89\xf7\xee\xbd\xd6\x4f\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5f\xff\xd6\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\x1f\xdf\xba\xf7\x5f\x20\xbf\xf8\x54\x5f\
\xfd\xbf\x57\xe7\x2f\xfe\x5b\x37\xff\x00\x01\xef\xc7\xdf\x7e\xeb\
\xdd\x7d\x3d\xbf\x94\xff\x00\xfd\xba\xcf\xf9\x6a\x7f\xe2\x80\xfc\
\x37\xff\x00\xe0\x76\xeb\x9f\x7e\xeb\xdd\x7c\xf1\xff\x00\x98\x47\
\xfc\x27\x17\xf9\xcd\xf7\x8f\xcf\x9f\x9c\x1d\xd5\xd5\xdf\x0d\xff\
\x00\xbd\x1d\x65\xdc\x1f\x2f\xfe\x4b\x76\x8f\x5d\x6e\x5f\xf6\x61\
\xbe\x2a\xe1\x7f\xbc\x5b\x13\xb0\x3b\x9f\x7a\xee\xcd\xa3\x9d\xfe\
\x0d\xb8\xbb\xc7\x13\xb8\x31\x3f\xc5\xb6\xfe\x5a\x9e\xa3\xed\x6b\
\xa9\x29\x6b\x20\xf2\x68\x9a\x28\xe4\x56\x41\xee\xbd\xd1\x41\xff\
\x00\xa0\x5d\x3f\x9e\xaf\xfd\xe0\xd7\xfe\xcc\xcf\xc3\xdf\xfe\xe8\
\x2f\x7e\xeb\xdd\x7b\xfe\x81\x74\xfe\x7a\xbf\xf7\x83\x5f\xfb\x33\
\x3f\x0f\x7f\xfb\xa0\xbd\xfb\xaf\x75\xf5\x36\xfe\x5e\xfd\x5d\xbe\
\xfa\x3b\xe0\x37\xc1\xfe\x95\xed\x1c\x17\xf7\x5f\xb3\x7a\x7f\xe2\
\x07\xc6\x9e\xae\xec\x5d\xb5\xfc\x4f\x0f\x9a\xfe\xee\xef\xbe\xbf\
\xe9\x8d\x95\xb4\xf7\x76\x0b\xf8\xce\xdd\xc8\x65\xb6\xfe\x5b\xf8\
\x4e\xe0\xc4\xd4\x53\xfd\xd5\x0d\x5d\x55\x1c\xfe\x3d\x70\xcb\x24\
\x6c\xae\x7d\xd7\xba\xf8\xe5\xff\x00\x36\x0f\xfb\x7a\x67\xf3\x2b\
\xff\x00\xc5\xfe\xf9\x91\xff\x00\xc1\x13\xd8\xde\xfd\xd7\xba\xfa\
\xfa\x7f\x29\xff\x00\xfb\x75\x9f\xf2\xd4\xff\x00\xc5\x01\xf8\x6f\
\xff\x00\xc0\xed\xd7\x3e\xfd\xd7\xba\x28\x3d\xb1\xff\x00\x0a\x3a\
\xfe\x4c\x9d\x1d\xda\x7d\x97\xd2\xbd\xa3\xf3\x23\xfb\xaf\xd9\xbd\
\x3f\xd8\x1b\xcb\xab\xbb\x17\x6d\x7f\xb2\xf3\xf2\xab\x35\xfd\xdd\
\xdf\x7d\x7f\xb8\xb2\x5b\x4f\x77\x60\xbf\x8c\xed\xde\x8e\xcb\x6d\
\xfc\xb7\xf0\x9d\xc1\x89\xa8\xa7\xfb\xaa\x1a\xba\xaa\x39\xfc\x7a\
\xe1\x96\x48\xd9\x5c\xfb\xaf\x75\x6f\xbd\x4f\xda\x3b\x13\xbc\x7a\
\xb3\xad\x3b\xab\xab\xb3\xbf\xde\x8e\xb2\xee\x0e\xbf\xd9\xbd\xa3\
\xd7\x5b\x97\xf8\x66\x63\x0b\xfd\xe2\xd8\x9d\x81\xb7\x71\xbb\xb3\
\x68\xe7\x7f\x83\x6e\x2c\x7e\x27\x70\x62\x7f\x8b\x6d\xfc\xb5\x3d\
\x47\xda\xd7\x52\x52\xd6\x41\xe4\xd1\x34\x51\xc8\xac\x83\xdd\x7b\
\xa5\xff\x00\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xe0\
\x1f\xef\xdd\x7b\xaf\xbf\x87\xbf\x75\xee\xbe\x01\xfe\xfd\xd7\xba\
\xfb\xf8\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf9\x05\xff\x00\xd0\x2e\
\x9f\xcf\x57\xfe\xf0\x6b\xff\x00\x66\x67\xe1\xef\xff\x00\x74\x17\
\xbf\x75\xee\xa8\x0f\xdf\xba\xf7\x5f\x63\x4e\xa7\xff\x00\x85\x1d\
\x7f\x26\x4e\xf1\xed\x3e\xb4\xe9\x5e\xae\xf9\x91\xfd\xe8\xec\xde\
\xe0\xec\x0d\x9b\xd5\xdd\x75\xb6\xbf\xd9\x79\xf9\x55\x85\xfe\xf1\
\x6f\xbe\xc0\xdc\x58\xdd\xa7\xb4\x70\x5f\xc6\x77\x17\x47\x62\x76\
\xfe\x27\xf8\xb6\xe0\xcb\x53\xd3\xfd\xd5\x75\x5d\x2d\x1c\x1e\x4d\
\x73\x4b\x1c\x6a\xce\x3d\xd7\xba\xb7\xde\xd8\xed\x1d\x89\xd1\xdd\
\x59\xd9\x7d\xd5\xda\x39\xdf\xee\xbf\x59\x74\xff\x00\x5f\xef\x2e\
\xd1\xec\x5d\xcb\xfc\x33\x31\x9a\xfe\xee\xec\x4e\xbf\xdb\xb9\x2d\
\xd9\xbb\xb3\xbf\xc1\xb6\xee\x3f\x2d\xb8\x32\xdf\xc2\x76\xfe\x26\
\xa2\xa3\xed\x68\x69\x2a\xab\x27\xf1\xe8\x86\x29\x24\x65\x43\xee\
\xbd\xd5\x41\x75\x3f\xfc\x28\xeb\xf9\x32\x77\x8f\x69\xf5\xa7\x4a\
\xf5\x77\xcc\x8f\xef\x47\x66\xf7\x07\x60\x6c\xde\xae\xeb\xad\xb5\
\xfe\xcb\xcf\xca\xac\x2f\xf7\x8b\x7d\xf6\x06\xe2\xc6\xed\x3d\xa3\
\x82\xfe\x33\xb8\xba\x3b\x13\xb7\xf1\x3f\xc5\xb7\x06\x5a\x9e\x9f\
\xee\xab\xaa\xe9\x68\xe0\xf2\x6b\x9a\x58\xe3\x56\x71\xee\xbd\xd1\
\xfe\xfe\x61\x1d\x5d\xbe\xfb\xc7\xe0\x37\xce\x0e\x95\xea\xec\x17\
\xf7\xa3\xb3\x7b\x83\xe2\x07\xc9\x6e\xae\xeb\xad\xb5\xfc\x4f\x0f\
\x85\xfe\xf1\x6f\xbe\xc0\xe9\x8d\xeb\xb4\xf6\x8e\x0b\xf8\xce\xe2\
\xc8\x62\x76\xfe\x27\xf8\xb6\xe0\xcb\x53\xd3\xfd\xd5\x75\x5d\x2d\
\x1c\x1e\x4d\x73\x4b\x1c\x6a\xce\x3d\xd7\xba\xf9\x44\xf6\xc7\xfc\
\x27\x17\xf9\xcd\xf4\x77\x56\x76\x5f\x75\x76\x8f\xc3\x7f\xee\xbf\
\x59\x74\xff\x00\x5f\xef\x2e\xd1\xec\x5d\xcb\xfe\xcc\x37\xc5\x5c\
\xd7\xf7\x77\x62\x75\xfe\xdd\xc9\x6e\xcd\xdd\x9d\xfe\x0d\xb7\x7b\
\xc7\x2d\xb8\x32\xdf\xc2\x76\xfe\x26\xa2\xa3\xed\x68\x69\x2a\xab\
\x27\xf1\xe8\x86\x29\x24\x65\x43\xee\xbd\xd1\x41\xfe\x53\xff\x00\
\xf6\xf4\xcf\xe5\xa9\xff\x00\x8b\xfd\xf0\xdf\xff\x00\x82\x27\xae\
\x7d\xfb\xaf\x75\xf6\xb3\xed\x8e\xd1\xd8\x9d\x1d\xd5\x9d\x97\xdd\
\x5d\xa3\x9d\xfe\xeb\xf5\x97\x4f\xf5\xfe\xf2\xed\x1e\xc5\xdc\xbf\
\xc3\x33\x19\xaf\xee\xee\xc4\xeb\xfd\xbb\x92\xdd\x9b\xbb\x3b\xfc\
\x1b\x6e\xe3\xf2\xdb\x83\x2d\xfc\x27\x6f\xe2\x6a\x2a\x3e\xd6\x86\
\x92\xaa\xb2\x7f\x1e\x88\x62\x92\x46\x54\x3e\xeb\xdd\x54\x17\x53\
\xff\x00\xc2\x8e\xbf\x93\x27\x78\xf6\x9f\x5a\x74\xaf\x57\x7c\xc8\
\xfe\xf4\x76\x6f\x70\x76\x06\xcd\xea\xee\xba\xdb\x5f\xec\xbc\xfc\
\xaa\xc2\xff\x00\x78\xb7\xdf\x60\x6e\x2c\x6e\xd3\xda\x38\x2f\xe3\
\x3b\x8b\xa3\xb1\x3b\x7f\x13\xfc\x5b\x70\x65\xa9\xe9\xfe\xea\xba\
\xae\x96\x8e\x0f\x26\xb9\xa5\x8e\x35\x67\x1e\xeb\xdd\x5d\xe7\xbf\
\x75\xee\x90\x1d\xb1\xda\x3b\x13\xa3\xba\xb3\xb2\xfb\xab\xb4\x73\
\xbf\xdd\x7e\xb2\xe9\xfe\xbf\xde\x5d\xa3\xd8\xbb\x97\xf8\x66\x63\
\x35\xfd\xdd\xd8\x9d\x7f\xb7\x72\x5b\xb3\x77\x67\x7f\x83\x6d\xdc\
\x7e\x5b\x70\x65\xbf\x84\xed\xfc\x4d\x45\x47\xda\xd0\xd2\x55\x56\
\x4f\xe3\xd1\x0c\x52\x48\xca\x87\xdd\x7b\xad\x51\x3f\x9a\x2f\xf3\
\x45\xf8\x29\xfc\xe8\x7e\x0a\x77\x97\xf2\xd2\xfe\x5a\x5d\xe5\xfe\
\xcc\x97\xcd\x9f\x92\x5f\xe8\xcf\xfd\x0a\xf4\xaf\xfa\x33\xee\x1e\
\x9d\xfe\xf9\xff\x00\xa1\xde\xe1\xeb\xee\xfd\xec\x7f\xf8\xc8\xfd\
\xfb\xd7\xdd\x59\xd4\xbb\x77\xfb\xbb\xd4\xbd\x59\x9e\xcb\x7f\xb9\
\x6c\xf5\x07\xdd\xfd\x87\xda\xd2\xf9\xab\x26\xa7\xa7\x9b\xdd\x7b\
\xad\x41\x7f\xe8\x17\x4f\xe7\xab\xff\x00\x78\x35\xff\x00\xb3\x33\
\xf0\xf7\xff\x00\xba\x0b\xdf\xba\xf7\x56\xfb\xfc\x85\xff\x00\x90\
\xbf\xf3\x60\xf8\x5d\xfc\xd8\x3e\x2a\x7c\x96\xf9\x2d\xf1\x53\xfd\
\x1b\x74\x9f\x5b\x7f\xa7\x3f\xef\xae\xf5\xff\x00\x4e\x7f\x1b\x77\
\x8f\xf0\x5f\xef\x8f\xc6\xde\xe1\xd8\x3b\x73\xfd\xfb\x9b\x07\xb8\
\x77\x56\xed\xc8\xff\x00\x11\xdd\xbb\xaa\x82\x93\xfc\x92\x82\x7f\
\x0f\x9f\xcb\x2e\x88\x52\x49\x13\xdd\x7b\xad\x9e\xff\x00\xe1\x51\
\x7f\xf6\xe2\xaf\x9c\xbf\xf9\x6c\xdf\xfc\x18\x5f\x1f\x7d\xfb\xaf\
\x75\xa0\x3f\xfc\x25\xd3\xfe\xdf\xab\xf0\x6b\xff\x00\x2e\x67\xff\
\x00\x80\xf7\xe4\x17\xbf\x75\xee\xbe\x8e\xff\x00\xcf\xa3\xe2\xe7\
\x7a\xfc\xd1\xfe\x53\xff\x00\x2a\xfe\x34\xfc\x69\xd8\xdf\xe9\x27\
\xbb\x3b\x27\xfd\x06\x7f\x72\xb6\x57\xf7\x9b\x67\x6c\xef\xe3\x5f\
\xdc\xef\x92\x5d\x3d\xbf\xb7\x1f\xfb\xf8\xf7\xf6\xe0\xda\xbb\x4b\
\x1d\xfc\x3b\x69\x6d\x5a\xfa\xbf\xf2\xba\xf8\x3c\xde\x0f\x14\x5a\
\xe6\x78\xe3\x7f\x75\xee\xbe\x71\x1f\xf4\x0b\xa7\xf3\xd5\xff\x00\
\xbc\x1a\xff\x00\xd9\x99\xf8\x7b\xff\x00\xdd\x05\xef\xdd\x7b\xaf\
\x7f\xd0\x2e\x9f\xcf\x57\xfe\xf0\x6b\xff\x00\x66\x67\xe1\xef\xff\
\x00\x74\x17\xbf\x75\xee\xad\xf7\xf9\x0b\xff\x00\x21\x7f\xe6\xc1\
\xf0\xbb\xf9\xb0\x7c\x54\xf9\x2d\xf2\x5b\xe2\xa7\xfa\x36\xe9\x3e\
\xb6\xff\x00\x4e\x7f\xdf\x5d\xeb\xfe\x9c\xfe\x36\xef\x1f\xe0\xbf\
\xdf\x1f\x8d\xbd\xc3\xb0\x76\xe7\xfb\xf7\x36\x0f\x70\xee\xad\xdb\
\x91\xfe\x23\xbb\x77\x55\x05\x27\xf9\x25\x04\xfe\x1f\x3f\x96\x5d\
\x10\xa4\x92\x27\xba\xf7\x5b\x3d\xff\x00\xc2\xa2\xff\x00\xed\xc5\
\x5f\x39\x7f\xf2\xd9\xbf\xf8\x30\xbe\x3e\xfb\xf7\x5e\xeb\x50\x5f\
\xf8\x45\x67\xfd\xbd\x33\xbf\x3f\xf1\x40\x7b\x4f\xff\x00\x82\x27\
\xe2\xb7\xbf\x75\xee\xbe\x9e\xde\xfd\xd7\xba\xcc\x82\xcb\xfe\xbf\
\x3e\xfd\xd7\xba\xe5\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd7\xdf\
\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\x85\xc5\x9b\
\xfd\x7e\x7d\xfb\xaf\x75\xf2\x09\xff\x00\x85\x45\xff\x00\xdb\xf5\
\x7e\x72\xff\x00\xe5\xb3\x7f\xf0\x1e\xfc\x7d\xf7\xee\xbd\xd6\xe7\
\x5f\xcb\xdf\xfe\x14\x75\xfc\x99\x3a\x3b\xe0\x37\xc1\xfe\x95\xed\
\x1f\x99\x1f\xdd\x7e\xcd\xe9\xff\x00\x88\x1f\x1a\x7a\xbb\xb1\x76\
\xd7\xfb\x2f\x3f\x2a\xb3\x5f\xdd\xdd\xf7\xd7\xfd\x31\xb2\xb6\x9e\
\xee\xc1\x7f\x19\xdb\xbd\x1d\x96\xdb\xf9\x6f\xe1\x3b\x83\x13\x51\
\x4f\xf7\x54\x35\x75\x54\x73\xf8\xf5\xc3\x2c\x91\xb2\xb9\xf7\x5e\
\xe8\xdf\x7f\xd0\x51\x7f\xc8\xab\xfe\xf3\x97\xff\x00\x65\x9b\xe6\
\x17\xff\x00\x73\xef\xbf\x75\xee\xbd\xff\x00\x41\x45\xff\x00\x22\
\xaf\xfb\xce\x5f\xfd\x96\x6f\x98\x5f\xfd\xcf\xbe\xfd\xd7\xba\xf7\
\xfd\x05\x17\xfc\x8a\xbf\xef\x39\x7f\xf6\x59\xbe\x61\x7f\xf7\x3e\
\xfb\xf7\x5e\xeb\xdf\xf4\x14\x5f\xf2\x2a\xff\x00\xbc\xe5\xff\x00\
\xd9\x66\xf9\x85\xff\x00\xdc\xfb\xef\xdd\x7b\xaf\x96\x4f\xf3\x08\
\xed\x1d\x89\xde\x3f\x3e\x7e\x70\x77\x57\x57\x67\x7f\xbd\x1d\x65\
\xdc\x1f\x2f\xfe\x4b\x76\x8f\x5d\x6e\x5f\xe1\x99\x8c\x2f\xf7\x8b\
\x62\x76\x07\x73\xef\x5d\xd9\xb4\x73\xbf\xc1\xb7\x16\x3f\x13\xb8\
\x31\x3f\xc5\xb6\xfe\x5a\x9e\xa3\xed\x6b\xa9\x29\x6b\x20\xf2\x68\
\x9a\x28\xe4\x56\x41\xee\xbd\xd7\xd8\xd3\xf9\x4f\xff\x00\xdb\xac\
\xff\x00\x96\xa7\xfe\x28\x0f\xc3\x7f\xfe\x07\x6e\xb9\xf7\xee\xbd\
\xd7\xc8\x2f\xf9\xb0\x7f\xdb\xd3\x3f\x99\x5f\xfe\x2f\xf7\xcc\x8f\
\xfe\x08\x9e\xc6\xf7\xee\xbd\xd7\xd7\xd3\xf9\x4f\xff\x00\xdb\xac\
\xff\x00\x96\xa7\xfe\x28\x0f\xc3\x7f\xfe\x07\x6e\xb9\xf7\xee\xbd\
\xd1\x41\xed\x8f\xf8\x51\xd7\xf2\x64\xe8\xee\xd3\xec\xbe\x95\xed\
\x1f\x99\x1f\xdd\x7e\xcd\xe9\xfe\xc0\xde\x5d\x5d\xd8\xbb\x6b\xfd\
\x97\x9f\x95\x59\xaf\xee\xee\xfb\xeb\xfd\xc5\x92\xda\x7b\xbb\x05\
\xfc\x67\x6e\xf4\x76\x5b\x6f\xe5\xbf\x84\xee\x0c\x4d\x45\x3f\xdd\
\x50\xd5\xd5\x51\xcf\xe3\xd7\x0c\xb2\x46\xca\xe7\xdd\x7b\xab\xbc\
\xf7\xee\xbd\xd5\x01\xff\x00\xd0\x51\x7f\xc8\xab\xfe\xf3\x97\xff\
\x00\x65\x9b\xe6\x17\xff\x00\x73\xef\xbf\x75\xee\xb4\x07\xff\x00\
\xa0\x5d\x3f\x9e\xaf\xfd\xe0\xd7\xfe\xcc\xcf\xc3\xdf\xfe\xe8\x2f\
\x7e\xeb\xdd\x6f\xf1\xff\x00\x41\x45\xff\x00\x22\xaf\xfb\xce\x5f\
\xfd\x96\x6f\x98\x5f\xfd\xcf\xbe\xfd\xd7\xba\xd0\x1f\xfe\x81\x74\
\xfe\x7a\xbf\xf7\x83\x5f\xfb\x33\x3f\x0f\x7f\xfb\xa0\xbd\xfb\xaf\
\x75\xbf\xc7\xfd\x05\x17\xfc\x8a\xbf\xef\x39\x7f\xf6\x59\xbe\x61\
\x7f\xf7\x3e\xfb\xf7\x5e\xea\xff\x00\x3d\xfb\xaf\x75\x40\x7f\xf4\
\x14\x5f\xf2\x2a\xff\x00\xbc\xe5\xff\x00\xd9\x66\xf9\x85\xff\x00\
\xdc\xfb\xef\xdd\x7b\xad\x01\xff\x00\xe8\x17\x4f\xe7\xab\xff\x00\
\x78\x35\xff\x00\xb3\x33\xf0\xf7\xff\x00\xba\x0b\xdf\xba\xf7\x44\
\x07\xf9\x4f\xff\x00\xdb\xd3\x3f\x96\xa7\xfe\x2f\xf7\xc3\x7f\xfe\
\x08\x9e\xb9\xf7\xee\xbd\xd7\xd7\xd3\xf9\xb0\x7f\xdb\xac\xff\x00\
\x99\x5f\xfe\x28\x0f\xcc\x8f\xfe\x07\x6e\xc6\xf7\xee\xbd\xd7\xc8\
\x2f\xf9\x4f\xff\x00\xdb\xd3\x3f\x96\xa7\xfe\x2f\xf7\xc3\x7f\xfe\
\x08\x9e\xb9\xf7\xee\xbd\xd7\xda\xcf\xb6\x3b\x47\x62\x74\x77\x56\
\x76\x5f\x75\x76\x8e\x77\xfb\xaf\xd6\x5d\x3f\xd7\xfb\xcb\xb4\x7b\
\x17\x72\xff\x00\x0c\xcc\x66\xbf\xbb\xbb\x13\xaf\xf6\xee\x4b\x76\
\x6e\xec\xef\xf0\x6d\xbb\x8f\xcb\x6e\x0c\xb7\xf0\x9d\xbf\x89\xa8\
\xa8\xfb\x5a\x1a\x4a\xaa\xc9\xfc\x7a\x21\x8a\x49\x19\x50\xfb\xaf\
\x75\xae\x1f\xcb\x0f\xe7\xd1\xfc\xa7\xfe\x71\x7c\x59\xf9\x2b\xf0\
\xab\xe2\xe7\xca\xbf\xf4\x9f\xf2\x67\xe5\xff\x00\x40\x77\x27\xc5\
\xcf\x8e\xbd\x69\xfe\x83\x3e\x49\x6c\xaf\xf4\x87\xde\xbf\x20\x3a\
\xeb\x71\xf5\x3f\x51\xec\x6f\xef\x97\x61\xf4\xf6\xd2\xd8\x1b\x4b\
\xfb\xdb\xd8\x1b\xb7\x1f\x41\xfc\x4f\x3b\x95\xc6\x61\xe8\x3e\xe3\
\xcf\x5b\x57\x4f\x4d\x1c\x93\x27\xba\xf7\x5a\x82\xfc\x4f\xfe\x42\
\xff\x00\xcd\x83\xe0\xef\xca\x6f\x8d\x5f\x35\x7e\x51\xfc\x54\xff\
\x00\x46\x1f\x19\xbe\x20\x77\xff\x00\x4d\xfc\xa3\xf9\x15\xd9\x7f\
\xe9\xcf\xe3\x6e\xf5\xff\x00\x47\x9d\x15\xf1\xff\x00\xb1\x76\xe7\
\x6c\x76\xe6\xf9\xfe\xe6\xf5\xe7\x70\xee\xdd\xff\x00\xbb\x7f\xba\
\x5d\x7f\xb4\xb2\x15\xff\x00\xc3\x30\x58\xac\x9e\x62\xbf\xed\xfc\
\x14\x54\x95\x15\x32\x47\x0b\xfb\xaf\x75\xb7\xd7\xcb\x0f\xe7\xd1\
\xfc\xa7\xfe\x71\x7c\x59\xf9\x2b\xf0\xab\xe2\xe7\xca\xbf\xf4\x9f\
\xf2\x67\xe5\xff\x00\x40\x77\x27\xc5\xcf\x8e\xbd\x69\xfe\x83\x3e\
\x49\x6c\xaf\xf4\x87\xde\xbf\x20\x3a\xeb\x71\xf5\x3f\x51\xec\x6f\
\xef\x97\x61\xf4\xf6\xd2\xd8\x1b\x4b\xfb\xdb\xd8\x1b\xb7\x1f\x41\
\xfc\x4f\x3b\x95\xc6\x61\xe8\x3e\xe3\xcf\x5b\x57\x4f\x4d\x1c\x93\
\x27\xba\xf7\x5a\x82\xfc\x4f\xfe\x42\xff\x00\xcd\x83\xe0\xef\xca\
\x6f\x8d\x5f\x35\x7e\x51\xfc\x54\xff\x00\x46\x1f\x19\xbe\x20\x77\
\xff\x00\x4d\xfc\xa3\xf9\x15\xd9\x7f\xe9\xcf\xe3\x6e\xf5\xff\x00\
\x47\x9d\x15\xf1\xff\x00\xb1\x76\xe7\x6c\x76\xe6\xf9\xfe\xe6\xf5\
\xe7\x70\xee\xdd\xff\x00\xbb\x7f\xba\x5d\x7f\xb4\xb2\x15\xff\x00\
\xc3\x30\x58\xac\x9e\x62\xbf\xed\xfc\x14\x54\x95\x15\x32\x47\x0b\
\xfb\xaf\x75\xbd\xcf\x53\xff\x00\xc2\x8e\xbf\x93\x27\x78\xf6\x9f\
\x5a\x74\xaf\x57\x7c\xc8\xfe\xf4\x76\x6f\x70\x76\x06\xcd\xea\xee\
\xba\xdb\x5f\xec\xbc\xfc\xaa\xc2\xff\x00\x78\xb7\xdf\x60\x6e\x2c\
\x6e\xd3\xda\x38\x2f\xe3\x3b\x8b\xa3\xb1\x3b\x7f\x13\xfc\x5b\x70\
\x65\xa9\xe9\xfe\xea\xba\xae\x96\x8e\x0f\x26\xb9\xa5\x8e\x35\x67\
\x1e\xeb\xdd\x1b\xef\xe6\xc1\xff\x00\x6e\xb3\xfe\x65\x7f\xf8\xa0\
\x3f\x32\x3f\xf8\x1d\xbb\x1b\xdf\xba\xf7\x5f\x30\x9f\xf8\x4b\xa7\
\xfd\xbf\x57\xe0\xd7\xfe\x5c\xcf\xff\x00\x01\xef\xc8\x2f\x7e\xeb\
\xdd\x7d\x5d\x7e\x51\xfc\xa3\xe8\xaf\x85\xdd\x15\xbe\x7e\x4b\x7c\
\x96\xdf\x3f\xe8\xdb\xa4\xfa\xdb\xfb\xb3\xfd\xf5\xde\xbf\xdd\x9d\
\xe3\xbc\x7f\x82\xff\x00\x7c\x77\x8e\xdf\xd8\x3b\x73\xfd\xfb\x9b\
\x07\x6f\xee\xad\xdb\x91\xfe\x23\xbb\x77\x55\x05\x27\xf9\x25\x04\
\xfe\x1f\x3f\x96\x5d\x10\xa4\x92\x27\xba\xf7\x44\x07\xe2\xe7\xf3\
\xe8\xfe\x53\xff\x00\x34\x7b\xd7\x63\x7c\x69\xf8\xd3\xf2\xaf\xfd\
\x24\xf7\x67\x64\xff\x00\x79\xbf\xb9\x5b\x2b\xfd\x06\x7c\x92\xd9\
\xdf\xc6\xbf\xb9\xdb\x3b\x70\x6f\xed\xc7\xfe\xfe\x3d\xfd\xd3\xdb\
\x57\x69\x63\xbf\x87\x6d\x2d\xab\x5f\x57\xfe\x57\x5f\x07\x9b\xc1\
\xe2\x8b\x5c\xcf\x1c\x6f\xee\xbd\xd0\x01\xff\x00\x0a\x8b\xff\x00\
\xb7\x15\x7c\xe5\xff\x00\xcb\x66\xff\x00\xe0\xc2\xf8\xfb\xef\xdd\
\x7b\xaf\x9c\x47\xf2\x17\xf9\x47\xd1\x5f\x0b\xbf\x9b\x07\xc5\x4f\
\x92\xdf\x25\xb7\xcf\xfa\x36\xe9\x3e\xb6\xff\x00\x4e\x7f\xdf\x5d\
\xeb\xfd\xd9\xde\x3b\xc7\xf8\x2f\xf7\xc7\xe3\x6f\x70\xec\x1d\xb9\
\xfe\xfd\xcd\x83\xb7\xf7\x56\xed\xc8\xff\x00\x11\xdd\xbb\xaa\x82\
\x93\xfc\x92\x82\x7f\x0f\x9f\xcb\x2e\x88\x52\x49\x13\xdd\x7b\xaf\
\xa3\xbf\xfd\x05\x17\xfc\x8a\xbf\xef\x39\x7f\xf6\x59\xbe\x61\x7f\
\xf7\x3e\xfb\xf7\x5e\xeb\xdf\xf4\x14\x5f\xf2\x2a\xff\x00\xbc\xe5\
\xff\x00\xd9\x66\xf9\x85\xff\x00\xdc\xfb\xef\xdd\x7b\xaf\x7f\xd0\
\x51\x7f\xc8\xab\xfe\xf3\x97\xff\x00\x65\x9b\xe6\x17\xff\x00\x73\
\xef\xbf\x75\xee\xbd\xff\x00\x41\x45\xff\x00\x22\xaf\xfb\xce\x5f\
\xfd\x96\x6f\x98\x5f\xfd\xcf\xbe\xfd\xd7\xba\xa8\x2f\xe7\xd1\xfc\
\xfa\x3f\x94\xff\x00\xcd\x1f\xe5\x3f\xf2\xaf\xe3\x4f\xc6\x9f\x95\
\x7f\xe9\x27\xbb\x3b\x27\xfd\x06\x7f\x72\xb6\x57\xfa\x0c\xf9\x25\
\xb3\xbf\x8d\x7f\x73\xbe\x49\x74\xf6\xfe\xdc\x7f\xef\xe3\xdf\xdd\
\x3d\xb5\x76\x96\x3b\xf8\x76\xd2\xda\xb5\xf5\x7f\xe5\x75\xf0\x79\
\xbc\x1e\x28\xb5\xcc\xf1\xc6\xfe\xeb\xdd\x54\x17\xfc\x22\xb3\xfe\
\xde\x99\xdf\x9f\xf8\xa0\x3d\xa7\xff\x00\xc1\x13\xf1\x5b\xdf\xba\
\xf7\x5f\x4f\x6f\x7e\xeb\xdd\x67\x1f\x41\xfe\xb0\xff\x00\x7a\xf7\
\xee\xbd\xd7\x7e\xfd\xd7\xba\xf7\xbf\x75\xee\xbf\xff\xd0\xdf\xe3\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\x89\xfe\xbf\xec\
\x3f\xe2\x4f\xbf\x75\xee\xbe\x70\xbf\xcf\xa3\xf9\x0b\xff\x00\x36\
\x0f\x9a\x3f\xcd\x83\xe5\x5f\xc9\x6f\x8d\x3f\x15\x3f\xd2\x4f\x49\
\xf6\x4f\xfa\x0c\xfe\xe5\x6f\x5f\xf4\xe7\xf1\xb7\x67\x7f\x1a\xfe\
\xe7\x7c\x6d\xe9\xed\x83\xb8\xff\x00\xdf\xb9\xbf\xbb\x87\x6a\xee\
\xdc\x77\xf0\xed\xdb\xb5\x6b\xe9\x3f\xca\xe8\x20\xf3\x78\x3c\xb1\
\x6b\x85\xe3\x91\xfd\xd7\xba\xa8\x2f\xfa\x05\xd3\xf9\xea\xff\x00\
\xde\x0d\x7f\xec\xcc\xfc\x3d\xff\x00\xee\x82\xf7\xee\xbd\xd7\xbf\
\xe8\x17\x4f\xe7\xab\xff\x00\x78\x35\xff\x00\xb3\x33\xf0\xf7\xff\
\x00\xba\x0b\xdf\xba\xf7\x5e\xff\x00\xa0\x5d\x3f\x9e\xaf\xfd\xe0\
\xd7\xfe\xcc\xcf\xc3\xdf\xfe\xe8\x2f\x7e\xeb\xdd\x7b\xfe\x81\x74\
\xfe\x7a\xbf\xf7\x83\x5f\xfb\x33\x3f\x0f\x7f\xfb\xa0\xbd\xfb\xaf\
\x75\xef\xfa\x05\xd3\xf9\xea\xff\x00\xde\x0d\x7f\xec\xcc\xfc\x3d\
\xff\x00\xee\x82\xf7\xee\xbd\xd7\xbf\xe8\x17\x4f\xe7\xab\xff\x00\
\x78\x35\xff\x00\xb3\x33\xf0\xf7\xff\x00\xba\x0b\xdf\xba\xf7\x5f\
\x53\x6f\xe5\xef\xd5\xdb\xef\xa3\xbe\x03\x7c\x1f\xe9\x5e\xd1\xc1\
\x7f\x75\xfb\x37\xa7\xfe\x20\x7c\x69\xea\xee\xc5\xdb\x5f\xc4\xf0\
\xf9\xaf\xee\xee\xfb\xeb\xfe\x98\xd9\x5b\x4f\x77\x60\xbf\x8c\xed\
\xdc\x86\x5b\x6f\xe5\xbf\x84\xee\x0c\x4d\x45\x3f\xdd\x50\xd5\xd5\
\x51\xcf\xe3\xd7\x0c\xb2\x46\xca\xe7\xdd\x7b\xaf\x8e\x5f\xf3\x60\
\xff\x00\xb7\xa6\x7f\x32\xbf\xfc\x5f\xef\x99\x1f\xfc\x11\x3d\x8d\
\xef\xdd\x7b\xaf\xa1\xc7\xf2\xf7\xff\x00\x85\x1d\x7f\x26\x4e\x8e\
\xf8\x0d\xf0\x7f\xa5\x7b\x47\xe6\x47\xf7\x5f\xb3\x7a\x7f\xe2\x07\
\xc6\x9e\xae\xec\x5d\xb5\xfe\xcb\xcf\xca\xac\xd7\xf7\x77\x7d\xf5\
\xff\x00\x4c\x6c\xad\xa7\xbb\xb0\x5f\xc6\x76\xef\x47\x65\xb6\xfe\
\x5b\xf8\x4e\xe0\xc4\xd4\x53\xfd\xd5\x0d\x5d\x55\x1c\xfe\x3d\x70\
\xcb\x24\x6c\xae\x7d\xd7\xba\xd5\x13\xe5\x87\xf2\x17\xfe\x6c\x1f\
\x38\xbe\x53\x7c\x95\xf9\xab\xf1\x73\xe2\xa7\xfa\x4f\xf8\xcd\xf2\
\xff\x00\xbf\xfb\x93\xe5\x1f\xc7\x5e\xcb\xff\x00\x4e\x7f\x1b\x76\
\x57\xfa\x43\xe8\xaf\x90\x1d\x8b\xb8\xfb\x63\xa8\xf7\xcf\xf7\x37\
\xb0\xfb\x87\x69\x6f\xfd\xa5\xfd\xed\xeb\xfd\xdb\x8f\xaf\xfe\x19\
\x9d\xc5\x63\x33\x14\x1f\x71\xe0\xad\xa4\xa7\xa9\x8e\x48\x53\xdd\
\x7b\xad\xde\x7f\xe8\x28\xbf\xe4\x55\xff\x00\x79\xcb\xff\x00\xb2\
\xcd\xf3\x0b\xff\x00\xb9\xf7\xdf\xba\xf7\x5f\x20\xbf\x7e\xeb\xdd\
\x7d\x7d\x3f\xe8\x28\xbf\xe4\x55\xff\x00\x79\xcb\xff\x00\xb2\xcd\
\xf3\x0b\xff\x00\xb9\xf7\xdf\xba\xf7\x5a\x03\xff\x00\xd0\x2e\x9f\
\xcf\x57\xfe\xf0\x6b\xff\x00\x66\x67\xe1\xef\xff\x00\x74\x17\xbf\
\x75\xee\xb7\xf8\xff\x00\xa0\xa2\xff\x00\x91\x57\xfd\xe7\x2f\xfe\
\xcb\x37\xcc\x2f\xfe\xe7\xdf\x7e\xeb\xdd\x68\x0f\xff\x00\x40\xba\
\x7f\x3d\x5f\xfb\xc1\xaf\xfd\x99\x9f\x87\xbf\xfd\xd0\x5e\xfd\xd7\
\xba\xfa\xfa\x7b\xf7\x5e\xeb\xe0\x1f\xef\xdd\x7b\xaf\xbf\x87\xbf\
\x75\xee\xbe\x59\x3f\xcb\xdf\xfe\x13\x8b\xfc\xe6\xfa\x3b\xe7\xcf\
\xc1\xfe\xea\xed\x1f\x86\xff\x00\xdd\x7e\xb2\xe9\xff\x00\x97\xff\
\x00\x1a\x7b\x47\xb1\x77\x2f\xfb\x30\xdf\x15\x73\x5f\xdd\xdd\x89\
\xd7\xfd\xcf\xb2\xb7\x66\xee\xce\xff\x00\x06\xdb\xbd\xe3\x96\xdc\
\x19\x6f\xe1\x3b\x7f\x13\x51\x51\xf6\xb4\x34\x95\x55\x93\xf8\xf4\
\x43\x14\x92\x32\xa1\xf7\x5e\xeb\xe8\xf1\xfc\xc2\x3a\xbb\x7d\xf7\
\x8f\xc0\x6f\x9c\x1d\x2b\xd5\xd8\x2f\xef\x47\x66\xf7\x07\xc4\x0f\
\x92\xdd\x5d\xd7\x5b\x6b\xf8\x9e\x1f\x0b\xfd\xe2\xdf\x7d\x81\xd3\
\x1b\xd7\x69\xed\x1c\x17\xf1\x9d\xc5\x90\xc4\xed\xfc\x4f\xf1\x6d\
\xc1\x96\xa7\xa7\xfb\xaa\xea\xba\x5a\x38\x3c\x9a\xe6\x96\x38\xd5\
\x9c\x7b\xaf\x75\xf3\x87\xfe\x5e\xff\x00\xf0\x9c\x5f\xe7\x37\xd1\
\xdf\x3e\x7e\x0f\xf7\x57\x68\xfc\x37\xfe\xeb\xf5\x97\x4f\xfc\xbf\
\xf8\xd3\xda\x3d\x8b\xb9\x7f\xd9\x86\xf8\xab\x9a\xfe\xee\xec\x4e\
\xbf\xee\x7d\x95\xbb\x37\x76\x77\xf8\x36\xdd\xef\x1c\xb6\xe0\xcb\
\x7f\x09\xdb\xf8\x9a\x8a\x8f\xb5\xa1\xa4\xaa\xac\x9f\xc7\xa2\x18\
\xa4\x91\x95\x0f\xba\xf7\x5f\x43\x8f\xe6\xc1\xff\x00\x6e\xb3\xfe\
\x65\x7f\xf8\xa0\x3f\x32\x3f\xf8\x1d\xbb\x1b\xdf\xba\xf7\x5f\x20\
\xbf\xe5\x3f\xff\x00\x6f\x4c\xfe\x5a\x9f\xf8\xbf\xdf\x0d\xff\x00\
\xf8\x22\x7a\xe7\xdf\xba\xf7\x5f\x5f\x4f\xe6\xc1\xff\x00\x6e\xb3\
\xfe\x65\x7f\xf8\xa0\x3f\x32\x3f\xf8\x1d\xbb\x1b\xdf\xba\xf7\x5f\
\x1c\xbf\xe5\xef\xda\x3b\x13\xa3\xbe\x7c\xfc\x1f\xee\xae\xd1\xce\
\xff\x00\x75\xfa\xcb\xa7\xfe\x5f\xfc\x69\xed\x1e\xc5\xdc\xbf\xc3\
\x33\x19\xaf\xee\xee\xc4\xeb\xfe\xe7\xd9\x5b\xb3\x77\x67\x7f\x83\
\x6d\xdc\x7e\x5b\x70\x65\xbf\x84\xed\xfc\x4d\x45\x47\xda\xd0\xd2\
\x55\x56\x4f\xe3\xd1\x0c\x52\x48\xca\x87\xdd\x7b\xaf\xa3\xc7\xf3\
\x08\xff\x00\x85\x1d\x7f\x26\x4e\xf1\xf8\x0d\xf3\x83\xa5\x7a\xbb\
\xe6\x47\xf7\xa3\xb3\x7b\x83\xe2\x07\xc9\x6e\xae\xeb\xad\xb5\xfe\
\xcb\xcf\xca\xac\x2f\xf7\x8b\x7d\xf6\x07\x4c\x6f\x5d\xa7\xb4\x70\
\x5f\xc6\x77\x17\x47\x62\x76\xfe\x27\xf8\xb6\xe0\xcb\x53\xd3\xfd\
\xd5\x75\x5d\x2d\x1c\x1e\x4d\x73\x4b\x1c\x6a\xce\x3d\xd7\xba\xf9\
\xe3\xff\x00\x29\xff\x00\xfb\x7a\x67\xf2\xd4\xff\x00\xc5\xfe\xf8\
\x6f\xff\x00\xc1\x13\xd7\x3e\xfd\xd7\xba\xfb\x1a\x7f\x30\x8e\xae\
\xdf\x7d\xe3\xf0\x1b\xe7\x07\x4a\xf5\x76\x0b\xfb\xd1\xd9\xbd\xc1\
\xf1\x03\xe4\xb7\x57\x75\xd6\xda\xfe\x27\x87\xc2\xff\x00\x78\xb7\
\xdf\x60\x74\xc6\xf5\xda\x7b\x47\x05\xfc\x67\x71\x64\x31\x3b\x7f\
\x13\xfc\x5b\x70\x65\xa9\xe9\xfe\xea\xba\xae\x96\x8e\x0f\x26\xb9\
\xa5\x8e\x35\x67\x1e\xeb\xdd\x68\x8d\xfc\x85\xff\x00\x90\xbf\xf3\
\x60\xf8\x5d\xfc\xd8\x3e\x2a\x7c\x96\xf9\x2d\xf1\x53\xfd\x1b\x74\
\x9f\x5b\x7f\xa7\x3f\xef\xae\xf5\xff\x00\x4e\x7f\x1b\x77\x8f\xf0\
\x5f\xef\x8f\xc6\xde\xe1\xd8\x3b\x73\xfd\xfb\x9b\x07\xb8\x77\x56\
\xed\xc8\xff\x00\x11\xdd\xbb\xaa\x82\x93\xfc\x92\x82\x7f\x0f\x9f\
\xcb\x2e\x88\x52\x49\x13\xdd\x7b\xad\x9e\xff\x00\xe1\x51\x7f\xf6\
\xe2\xaf\x9c\xbf\xf9\x6c\xdf\xfc\x18\x5f\x1f\x7d\xfb\xaf\x75\xa0\
\x3f\xfc\x25\xd3\xfe\xdf\xab\xf0\x6b\xff\x00\x2e\x67\xff\x00\x80\
\xf7\xe4\x17\xbf\x75\xee\xbe\x8e\xff\x00\xcf\xa3\xe2\xe7\x7a\xfc\
\xd1\xfe\x53\xff\x00\x2a\xfe\x34\xfc\x69\xd8\xdf\xe9\x27\xbb\x3b\
\x27\xfd\x06\x7f\x72\xb6\x57\xf7\x9b\x67\x6c\xef\xe3\x5f\xdc\xef\
\x92\x5d\x3d\xbf\xb7\x1f\xfb\xf8\xf7\xf6\xe0\xda\xbb\x4b\x1d\xfc\
\x3b\x69\x6d\x5a\xfa\xbf\xf2\xba\xf8\x3c\xde\x0f\x14\x5a\xe6\x78\
\xe3\x7f\x75\xee\xbe\x71\x1f\xf4\x0b\xa7\xf3\xd5\xff\x00\xbc\x1a\
\xff\x00\xd9\x99\xf8\x7b\xff\x00\xdd\x05\xef\xdd\x7b\xaf\x7f\xd0\
\x2e\x9f\xcf\x57\xfe\xf0\x6b\xff\x00\x66\x67\xe1\xef\xff\x00\x74\
\x17\xbf\x75\xee\xbd\xff\x00\x40\xba\x7f\x3d\x5f\xfb\xc1\xaf\xfd\
\x99\x9f\x87\xbf\xfd\xd0\x5e\xfd\xd7\xba\xf7\xfd\x02\xe9\xfc\xf5\
\x7f\xef\x06\xbf\xf6\x66\x7e\x1e\xff\x00\xf7\x41\x7b\xf7\x5e\xeb\
\xdf\xf4\x0b\xa7\xf3\xd5\xff\x00\xbc\x1a\xff\x00\xd9\x99\xf8\x7b\
\xff\x00\xdd\x05\xef\xdd\x7b\xaf\x7f\xd0\x2e\x9f\xcf\x57\xfe\xf0\
\x6b\xff\x00\x66\x67\xe1\xef\xff\x00\x74\x17\xbf\x75\xee\xb6\x3c\
\xff\x00\x84\xc0\xff\x00\x26\x8f\xe6\x4b\xfc\xbb\xfe\x7c\xf6\xef\
\x75\x7c\xc4\xf8\xe1\xfe\x87\xfa\xcb\x74\x7c\x40\xdf\xdd\x5d\x82\
\xdc\xbf\xe9\x7f\xa1\xbb\x03\xef\xb7\xde\x6b\xb9\xfa\x03\x76\x63\
\x30\x5f\xc1\xba\xbb\xb4\x77\xb6\xe0\xa6\xfb\x9d\xbf\xb2\x72\x95\
\x1f\x75\x35\x24\x74\x69\xf6\xba\x1e\x55\x92\x48\x92\x4f\x75\xee\
\xb7\xb8\xf7\xee\xbd\xd6\x71\xf4\x1f\xeb\x0f\x7e\xeb\xdd\x77\xef\
\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd1\xdf\xe3\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\x89\xfe\xa3\xfd\x6f\x7e\xeb\xdd\x70\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\x48\x7d\xb1\xff\x00\x0a\x3a\xfe\
\x4c\x9d\x1d\xda\x7d\x97\xd2\xbd\xa3\xf3\x23\xfb\xaf\xd9\xbd\x3f\
\xd8\x1b\xcb\xab\xbb\x17\x6d\x7f\xb2\xf3\xf2\xab\x35\xfd\xdd\xdf\
\x7d\x7f\xb8\xb2\x5b\x4f\x77\x60\xbf\x8c\xed\xde\x8e\xcb\x6d\xfc\
\xb7\xf0\x9d\xc1\x89\xa8\xa7\xfb\xaa\x1a\xba\xaa\x39\xfc\x7a\xe1\
\x96\x48\xd9\x5c\xfb\xaf\x74\x1f\xff\x00\xd0\x51\x7f\xc8\xab\xfe\
\xf3\x97\xff\x00\x65\x9b\xe6\x17\xff\x00\x73\xef\xbf\x75\xee\xbd\
\xff\x00\x41\x45\xff\x00\x22\xaf\xfb\xce\x5f\xfd\x96\x6f\x98\x5f\
\xfd\xcf\xbe\xfd\xd7\xba\xbb\xde\xa7\xed\x1d\x89\xde\x3d\x59\xd6\
\x9d\xd5\xd5\xd9\xdf\xef\x47\x59\x77\x07\x5f\xec\xde\xd1\xeb\xad\
\xcb\xfc\x33\x31\x85\xfe\xf1\x6c\x4e\xc0\xdb\xb8\xdd\xd9\xb4\x73\
\xbf\xc1\xb7\x16\x3f\x13\xb8\x31\x3f\xc5\xb6\xfe\x5a\x9e\xa3\xed\
\x6b\xa9\x29\x6b\x20\xf2\x68\x9a\x28\xe4\x56\x41\xee\xbd\xd5\x41\
\x76\xc7\xfc\x28\xeb\xf9\x32\x74\x77\x69\xf6\x5f\x4a\xf6\x8f\xcc\
\x8f\xee\xbf\x66\xf4\xff\x00\x60\x6f\x2e\xae\xec\x5d\xb5\xfe\xcb\
\xcf\xca\xac\xd7\xf7\x77\x7d\xf5\xfe\xe2\xc9\x6d\x3d\xdd\x82\xfe\
\x33\xb7\x7a\x3b\x2d\xb7\xf2\xdf\xc2\x77\x06\x26\xa2\x9f\xee\xa8\
\x6a\xea\xa8\xe7\xf1\xeb\x86\x59\x23\x65\x73\xee\xbd\xd5\xbe\xf5\
\x3f\x68\xec\x4e\xf1\xea\xce\xb4\xee\xae\xae\xce\xff\x00\x7a\x3a\
\xcb\xb8\x3a\xff\x00\x66\xf6\x8f\x5d\x6e\x5f\xe1\x99\x8c\x2f\xf7\
\x8b\x62\x76\x06\xdd\xc6\xee\xcd\xa3\x9d\xfe\x0d\xb8\xb1\xf8\x9d\
\xc1\x89\xfe\x2d\xb7\xf2\xd4\xf5\x1f\x6b\x5d\x49\x4b\x59\x07\x93\
\x44\xd1\x47\x22\xb2\x0f\x75\xee\xbe\x29\x9f\xcd\x83\xfe\xde\x99\
\xfc\xca\xff\x00\xf1\x7f\xbe\x64\x7f\xf0\x44\xf6\x37\xbf\x75\xee\
\x88\x0f\xbf\x75\xee\xbe\xa6\xdf\xcb\xdf\xfe\x14\x75\xfc\x99\x3a\
\x3b\xe0\x37\xc1\xfe\x95\xed\x1f\x99\x1f\xdd\x7e\xcd\xe9\xff\x00\
\x88\x1f\x1a\x7a\xbb\xb1\x76\xd7\xfb\x2f\x3f\x2a\xb3\x5f\xdd\xdd\
\xf7\xd7\xfd\x31\xb2\xb6\x9e\xee\xc1\x7f\x19\xdb\xbd\x1d\x96\xdb\
\xf9\x6f\xe1\x3b\x83\x13\x51\x4f\xf7\x54\x35\x75\x54\x73\xf8\xf5\
\xc3\x2c\x91\xb2\xb9\xf7\x5e\xeb\xe5\x93\xef\xdd\x7b\xaf\x7b\xf7\
\x5e\xeb\xde\xfd\xd7\xba\xfb\xf8\x7b\xf7\x5e\xeb\xe4\x17\xff\x00\
\x40\xba\x7f\x3d\x5f\xfb\xc1\xaf\xfd\x99\x9f\x87\xbf\xfd\xd0\x5e\
\xfd\xd7\xba\xfa\xfa\x7b\xf7\x5e\xea\x80\xff\x00\xe8\x28\xbf\xe4\
\x55\xff\x00\x79\xcb\xff\x00\xb2\xcd\xf3\x0b\xff\x00\xb9\xf7\xdf\
\xba\xf7\x5f\x20\xbf\x7e\xeb\xdd\x7d\xfc\x3d\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd1\x01\xfe\x6c\x1f\xf6\
\xeb\x3f\xe6\x57\xff\x00\x8a\x03\xf3\x23\xff\x00\x81\xdb\xb1\xbd\
\xfb\xaf\x75\xf1\xcb\xfe\x5e\xfd\xa3\xb1\x3a\x3b\xe7\xcf\xc1\xfe\
\xea\xed\x1c\xef\xf7\x5f\xac\xba\x7f\xe5\xff\x00\xc6\x9e\xd1\xec\
\x5d\xcb\xfc\x33\x31\x9a\xfe\xee\xec\x4e\xbf\xee\x7d\x95\xbb\x37\
\x76\x77\xf8\x36\xdd\xc7\xe5\xb7\x06\x5b\xf8\x4e\xdf\xc4\xd4\x54\
\x7d\xad\x0d\x25\x55\x64\xfe\x3d\x10\xc5\x24\x8c\xa8\x7d\xd7\xba\
\xfa\x3c\x7f\x30\x8f\xf8\x51\xd7\xf2\x64\xef\x1f\x80\xdf\x38\x3a\
\x57\xab\xbe\x64\x7f\x7a\x3b\x37\xb8\x3e\x20\x7c\x96\xea\xee\xba\
\xdb\x5f\xec\xbc\xfc\xaa\xc2\xff\x00\x78\xb7\xdf\x60\x74\xc6\xf5\
\xda\x7b\x47\x05\xfc\x67\x71\x74\x76\x27\x6f\xe2\x7f\x8b\x6e\x0c\
\xb5\x3d\x3f\xdd\x57\x55\xd2\xd1\xc1\xe4\xd7\x34\xb1\xc6\xac\xe3\
\xdd\x7b\xaf\x96\x4f\xbf\x75\xee\x97\xfd\x4f\xd5\xdb\xef\xbc\x7b\
\x4f\xad\x3a\x57\xab\xb0\x5f\xde\x8e\xcd\xee\x0e\xc0\xd9\xbd\x5d\
\xd7\x5b\x6b\xf8\x9e\x1f\x0b\xfd\xe2\xdf\x7d\x81\xb8\xb1\xbb\x4f\
\x68\xe0\xbf\x8c\xee\x2c\x86\x27\x6f\xe2\x7f\x8b\x6e\x0c\xb5\x3d\
\x3f\xdd\x57\x55\xd2\xd1\xc1\xe4\xd7\x34\xb1\xc6\xac\xe3\xdd\x7b\
\xad\x8f\x3e\x27\xff\x00\x21\x7f\xe6\xc1\xf0\x77\xe5\x37\xc6\xaf\
\x9a\xbf\x28\xfe\x2a\x7f\xa3\x0f\x8c\xdf\x10\x3b\xff\x00\xa6\xfe\
\x51\xfc\x8a\xec\xbf\xf4\xe7\xf1\xb7\x7a\xff\x00\xa3\xce\x8a\xf8\
\xff\x00\xd8\xbb\x73\xb6\x3b\x73\x7c\xff\x00\x73\x7a\xf3\xb8\x77\
\x6e\xff\x00\xdd\xbf\xdd\x2e\xbf\xda\x59\x0a\xff\x00\xe1\x98\x2c\
\x56\x4f\x31\x5f\xf6\xfe\x0a\x2a\x4a\x8a\x99\x23\x85\xfd\xd7\xba\
\xde\xe7\xa9\xff\x00\xe1\x47\x5f\xc9\x93\xbc\x7b\x4f\xad\x3a\x57\
\xab\xbe\x64\x7f\x7a\x3b\x37\xb8\x3b\x03\x66\xf5\x77\x5d\x6d\xaf\
\xf6\x5e\x7e\x55\x61\x7f\xbc\x5b\xef\xb0\x37\x16\x37\x69\xed\x1c\
\x17\xf1\x9d\xc5\xd1\xd8\x9d\xbf\x89\xfe\x2d\xb8\x32\xd4\xf4\xff\
\x00\x75\x5d\x57\x4b\x47\x07\x93\x5c\xd2\xc7\x1a\xb3\x8f\x75\xee\
\xae\xf3\xdf\xba\xf7\x54\x07\xff\x00\x0a\x8b\xff\x00\xb7\x15\x7c\
\xe5\xff\x00\xcb\x66\xff\x00\xe0\xc2\xf8\xfb\xef\xdd\x7b\xaf\x9c\
\x47\xf2\x17\xf9\x47\xd1\x5f\x0b\xbf\x9b\x07\xc5\x4f\x92\xdf\x25\
\xb7\xcf\xfa\x36\xe9\x3e\xb6\xff\x00\x4e\x7f\xdf\x5d\xeb\xfd\xd9\
\xde\x3b\xc7\xf8\x2f\xf7\xc7\xe3\x6f\x70\xec\x1d\xb9\xfe\xfd\xcd\
\x83\xb7\xf7\x56\xed\xc8\xff\x00\x11\xdd\xbb\xaa\x82\x93\xfc\x92\
\x82\x7f\x0f\x9f\xcb\x2e\x88\x52\x49\x13\xdd\x7b\xaf\xa3\xbf\xfd\
\x05\x17\xfc\x8a\xbf\xef\x39\x7f\xf6\x59\xbe\x61\x7f\xf7\x3e\xfb\
\xf7\x5e\xeb\xdf\xf4\x14\x5f\xf2\x2a\xff\x00\xbc\xe5\xff\x00\xd9\
\x66\xf9\x85\xff\x00\xdc\xfb\xef\xdd\x7b\xa1\xff\x00\xe2\xe7\xf3\
\xe8\xfe\x53\xff\x00\x34\x7b\xd7\x63\x7c\x69\xf8\xd3\xf2\xaf\xfd\
\x24\xf7\x67\x64\xff\x00\x79\xbf\xb9\x5b\x2b\xfd\x06\x7c\x92\xd9\
\xdf\xc6\xbf\xb9\xdb\x3b\x70\x6f\xed\xc7\xfe\xfe\x3d\xfd\xd3\xdb\
\x57\x69\x63\xbf\x87\x6d\x2d\xab\x5f\x57\xfe\x57\x5f\x07\x9b\xc1\
\xe2\x8b\x5c\xcf\x1c\x6f\xee\xbd\xd5\xbe\xfb\xf7\x5e\xe8\x00\xf9\
\x47\xf2\x8f\xa2\xbe\x17\x74\x56\xf9\xf9\x2d\xf2\x5b\x7c\xff\x00\
\xa3\x6e\x93\xeb\x6f\xee\xcf\xf7\xd7\x7a\xff\x00\x76\x77\x8e\xf1\
\xfe\x0b\xfd\xf1\xde\x3b\x7f\x60\xed\xcf\xf7\xee\x6c\x1d\xbf\xba\
\xb7\x6e\x47\xf8\x8e\xed\xdd\x54\x14\x9f\xe4\x94\x13\xf8\x7c\xfe\
\x59\x74\x42\x92\x48\x9e\xeb\xdd\x54\x17\xfd\x05\x17\xfc\x8a\xbf\
\xef\x39\x7f\xf6\x59\xbe\x61\x7f\xf7\x3e\xfb\xf7\x5e\xeb\xdf\xf4\
\x14\x5f\xf2\x2a\xff\x00\xbc\xe5\xff\x00\xd9\x66\xf9\x85\xff\x00\
\xdc\xfb\xef\xdd\x7b\xa3\x7f\xf0\xab\xf9\xcb\xff\x00\x2d\xaf\xe6\
\x21\xda\x79\xfe\x95\xf8\x77\xf2\x3f\xfd\x30\x76\x6e\xd7\xeb\xfc\
\xaf\x68\xe7\x76\xd7\xfa\x20\xef\x9e\xbf\xfb\x1d\x89\x85\xdc\x5b\
\x57\x69\xe4\xf3\xbf\xc6\x7b\x47\xab\xb6\x4e\xdf\xa9\xfb\x6d\xc1\
\xbd\xb1\x74\xff\x00\x6b\x0d\x5c\x95\x8f\xf7\x5a\xd2\x26\x8e\x39\
\x5e\x3f\x75\xee\xac\xf8\x7d\x47\xfa\xe3\xdf\xba\xf7\x59\xfd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd2\xdf\xe3\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xc1\xfe\x83\xfd\x7f\
\x7e\xeb\xdd\x62\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xf1\x0d\xfe\x6c\
\x1f\xf6\xf4\xcf\xe6\x57\xff\x00\x8b\xfd\xf3\x23\xff\x00\x82\x27\
\xb1\xbd\xfb\xaf\x74\x40\x7d\xfb\xaf\x75\xef\x7e\xeb\xdd\x7d\x4d\
\xbf\x97\xbf\xfc\x28\xeb\xf9\x32\x74\x77\xc0\x6f\x83\xfd\x2b\xda\
\x3f\x32\x3f\xba\xfd\x9b\xd3\xff\x00\x10\x3e\x34\xf5\x77\x62\xed\
\xaf\xf6\x5e\x7e\x55\x66\xbf\xbb\xbb\xef\xaf\xfa\x63\x65\x6d\x3d\
\xdd\x82\xfe\x33\xb7\x7a\x3b\x2d\xb7\xf2\xdf\xc2\x77\x06\x26\xa2\
\x9f\xee\xa8\x6a\xea\xa8\xe7\xf1\xeb\x86\x59\x23\x65\x73\xee\xbd\
\xd6\xa8\x9f\x2c\x3f\x90\xbf\xf3\x60\xf9\xc5\xf2\x9b\xe4\xaf\xcd\
\x5f\x8b\x9f\x15\x3f\xd2\x7f\xc6\x6f\x97\xfd\xff\x00\xdc\x9f\x28\
\xfe\x3a\xf6\x5f\xfa\x73\xf8\xdb\xb2\xbf\xd2\x1f\x45\x7c\x80\xec\
\x5d\xc7\xdb\x1d\x47\xbe\x7f\xb9\xbd\x87\xdc\x3b\x4b\x7f\xed\x2f\
\xef\x6f\x5f\xee\xdc\x7d\x7f\xf0\xcc\xee\x2b\x19\x98\xa0\xfb\x8f\
\x05\x6d\x25\x3d\x4c\x72\x42\x9e\xeb\xdd\x7d\x2d\xff\x00\x97\xbf\
\x57\x6f\xbe\x8e\xf8\x0d\xf0\x7f\xa5\x7b\x47\x05\xfd\xd7\xec\xde\
\x9f\xf8\x81\xf1\xa7\xab\xbb\x17\x6d\x7f\x13\xc3\xe6\xbf\xbb\xbb\
\xef\xaf\xfa\x63\x65\x6d\x3d\xdd\x82\xfe\x33\xb7\x72\x19\x6d\xbf\
\x96\xfe\x13\xb8\x31\x35\x14\xff\x00\x75\x43\x57\x55\x47\x3f\x8f\
\x5c\x32\xc9\x1b\x2b\x9f\x75\xee\xbe\x39\x7f\xcd\x83\xfe\xde\x99\
\xfc\xca\xff\x00\xf1\x7f\xbe\x64\x7f\xf0\x44\xf6\x37\xbf\x75\xee\
\x88\x0f\xbf\x75\xee\xbd\xef\xdd\x7b\xab\xfc\xff\x00\xa0\x5d\x3f\
\x9e\xaf\xfd\xe0\xd7\xfe\xcc\xcf\xc3\xdf\xfe\xe8\x2f\x7e\xeb\xdd\
\x7b\xfe\x81\x74\xfe\x7a\xbf\xf7\x83\x5f\xfb\x33\x3f\x0f\x7f\xfb\
\xa0\xbd\xfb\xaf\x75\xef\xfa\x05\xd3\xf9\xea\xff\x00\xde\x0d\x7f\
\xec\xcc\xfc\x3d\xff\x00\xee\x82\xf7\xee\xbd\xd7\xd7\xd3\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd5\x01\xff\x00\xd0\x51\x7f\xc8\xab\xfe\xf3\
\x97\xff\x00\x65\x9b\xe6\x17\xff\x00\x73\xef\xbf\x75\xee\xbe\x41\
\x7e\xfd\xd7\xba\xf7\xbf\x75\xee\xbe\xbe\x9f\xf4\x14\x5f\xf2\x2a\
\xff\x00\xbc\xe5\xff\x00\xd9\x66\xf9\x85\xff\x00\xdc\xfb\xef\xdd\
\x7b\xab\xfc\xf7\xee\xbd\xd2\x03\xb6\x3b\x47\x62\x74\x77\x56\x76\
\x5f\x75\x76\x8e\x77\xfb\xaf\xd6\x5d\x3f\xd7\xfb\xcb\xb4\x7b\x17\
\x72\xff\x00\x0c\xcc\x66\xbf\xbb\xbb\x13\xaf\xf6\xee\x4b\x76\x6e\
\xec\xef\xf0\x6d\xbb\x8f\xcb\x6e\x0c\xb7\xf0\x9d\xbf\x89\xa8\xa8\
\xfb\x5a\x1a\x4a\xaa\xc9\xfc\x7a\x21\x8a\x49\x19\x50\xfb\xaf\x75\
\x50\x5d\x4f\xff\x00\x0a\x3a\xfe\x4c\x9d\xe3\xda\x7d\x69\xd2\xbd\
\x5d\xf3\x23\xfb\xd1\xd9\xbd\xc1\xd8\x1b\x37\xab\xba\xeb\x6d\x7f\
\xb2\xf3\xf2\xab\x0b\xfd\xe2\xdf\x7d\x81\xb8\xb1\xbb\x4f\x68\xe0\
\xbf\x8c\xee\x2e\x8e\xc4\xed\xfc\x4f\xf1\x6d\xc1\x96\xa7\xa7\xfb\
\xaa\xea\xba\x5a\x38\x3c\x9a\xe6\x96\x38\xd5\x9c\x7b\xaf\x74\x6f\
\xbf\x9b\x07\xfd\xba\xcf\xf9\x95\xff\x00\xe2\x80\xfc\xc8\xff\x00\
\xe0\x76\xec\x6f\x7e\xeb\xdd\x7c\x53\x3a\x9f\xab\xb7\xdf\x78\xf6\
\x9f\x5a\x74\xaf\x57\x60\xbf\xbd\x1d\x9b\xdc\x1d\x81\xb3\x7a\xbb\
\xae\xb6\xd7\xf1\x3c\x3e\x17\xfb\xc5\xbe\xfb\x03\x71\x63\x76\x9e\
\xd1\xc1\x7f\x19\xdc\x59\x0c\x4e\xdf\xc4\xff\x00\x16\xdc\x19\x6a\
\x7a\x7f\xba\xae\xab\xa5\xa3\x83\xc9\xae\x69\x63\x8d\x59\xc7\xba\
\xf7\x56\xfb\xdb\x1f\xf0\x9c\x5f\xe7\x37\xd1\xdd\x59\xd9\x7d\xd5\
\xda\x3f\x0d\xff\x00\xba\xfd\x65\xd3\xfd\x7f\xbc\xbb\x47\xb1\x77\
\x2f\xfb\x30\xdf\x15\x73\x5f\xdd\xdd\x89\xd7\xfb\x77\x25\xbb\x37\
\x76\x77\xf8\x36\xdd\xef\x1c\xb6\xe0\xcb\x7f\x09\xdb\xf8\x9a\x8a\
\x8f\xb5\xa1\xa4\xaa\xac\x9f\xc7\xa2\x18\xa4\x91\x95\x0f\xba\xf7\
\x55\x05\xd4\xfd\x5d\xbe\xfb\xc7\xb4\xfa\xd3\xa5\x7a\xbb\x05\xfd\
\xe8\xec\xde\xe0\xec\x0d\x9b\xd5\xdd\x75\xb6\xbf\x89\xe1\xf0\xbf\
\xde\x2d\xf7\xd8\x1b\x8b\x1b\xb4\xf6\x8e\x0b\xf8\xce\xe2\xc8\x62\
\x76\xfe\x27\xf8\xb6\xe0\xcb\x53\xd3\xfd\xd5\x75\x5d\x2d\x1c\x1e\
\x4d\x73\x4b\x1c\x6a\xce\x3d\xd7\xba\xd8\xf3\xe2\x7f\xf2\x17\xfe\
\x6c\x1f\x07\x7e\x53\x7c\x6a\xf9\xab\xf2\x8f\xe2\xa7\xfa\x30\xf8\
\xcd\xf1\x03\xbf\xfa\x6f\xe5\x1f\xc8\xae\xcb\xff\x00\x4e\x7f\x1b\
\x77\xaf\xfa\x3c\xe8\xaf\x8f\xfd\x8b\xb7\x3b\x63\xb7\x37\xcf\xf7\
\x37\xaf\x3b\x87\x76\xef\xfd\xdb\xfd\xd2\xeb\xfd\xa5\x90\xaf\xfe\
\x19\x82\xc5\x64\xf3\x15\xff\x00\x6f\xe0\xa2\xa4\xa8\xa9\x92\x38\
\x5f\xdd\x7b\xad\xbe\xbe\x58\x7f\x3e\x8f\xe5\x3f\xf3\x8b\xe2\xcf\
\xc9\x5f\x85\x5f\x17\x3e\x55\xff\x00\xa4\xff\x00\x93\x3f\x2f\xfa\
\x03\xb9\x3e\x2e\x7c\x75\xeb\x4f\xf4\x19\xf2\x4b\x65\x7f\xa4\x3e\
\xf5\xf9\x01\xd7\x5b\x8f\xa9\xfa\x8f\x63\x7f\x7c\xbb\x0f\xa7\xb6\
\x96\xc0\xda\x5f\xde\xde\xc0\xdd\xb8\xfa\x0f\xe2\x79\xdc\xae\x33\
\x0f\x41\xf7\x1e\x7a\xda\xba\x7a\x68\xe4\x99\x3d\xd7\xba\xd5\x13\
\xf9\x7b\xff\x00\xc2\x71\x7f\x9c\xdf\x47\x7c\xf9\xf8\x3f\xdd\x5d\
\xa3\xf0\xdf\xfb\xaf\xd6\x5d\x3f\xf2\xff\x00\xe3\x4f\x68\xf6\x2e\
\xe5\xff\x00\x66\x1b\xe2\xae\x6b\xfb\xbb\xb1\x3a\xff\x00\xb9\xf6\
\x56\xec\xdd\xd9\xdf\xe0\xdb\x77\xbc\x72\xdb\x83\x2d\xfc\x27\x6f\
\xe2\x6a\x2a\x3e\xd6\x86\x92\xaa\xb2\x7f\x1e\x88\x62\x92\x46\x54\
\x3e\xeb\xdd\x7d\x2d\xfe\x51\xfc\xa3\xe8\xaf\x85\xdd\x15\xbe\x7e\
\x4b\x7c\x96\xdf\x3f\xe8\xdb\xa4\xfa\xdb\xfb\xb3\xfd\xf5\xde\xbf\
\xdd\x9d\xe3\xbc\x7f\x82\xff\x00\x7c\x77\x8e\xdf\xd8\x3b\x73\xfd\
\xfb\x9b\x07\x6f\xee\xad\xdb\x91\xfe\x23\xbb\x77\x55\x05\x27\xf9\
\x25\x04\xfe\x1f\x3f\x96\x5d\x10\xa4\x92\x27\xba\xf7\x5a\x82\xff\
\x00\x3e\x8f\xe7\xd1\xfc\xa7\xfe\x68\xff\x00\x29\xff\x00\x95\x7f\
\x1a\x7e\x34\xfc\xab\xff\x00\x49\x3d\xd9\xd9\x3f\xe8\x33\xfb\x95\
\xb2\xbf\xd0\x67\xc9\x2d\x9d\xfc\x6b\xfb\x9d\xf2\x4b\xa7\xb7\xf6\
\xe3\xff\x00\x7f\x1e\xfe\xe9\xed\xab\xb4\xb1\xdf\xc3\xb6\x96\xd5\
\xaf\xab\xff\x00\x2b\xaf\x83\xcd\xe0\xf1\x45\xae\x67\x8e\x37\xf7\
\x5e\xeb\x40\x7f\x8b\x9f\x17\x3b\xd7\xe6\x8f\x7a\xec\x6f\x8d\x3f\
\x1a\x76\x37\xfa\x49\xee\xce\xc9\xfe\xf3\x7f\x72\xb6\x57\xf7\x9b\
\x67\x6c\xef\xe3\x5f\xdc\xed\x9d\xb8\x37\xf6\xe3\xff\x00\x7f\x1e\
\xfe\xdc\x1b\x57\x69\x63\xbf\x87\x6d\x2d\xab\x5f\x57\xfe\x57\x5f\
\x07\x9b\xc1\xe2\x8b\x5c\xcf\x1c\x6f\xee\xbd\xd1\xfe\xf9\x47\xfc\
\x85\xff\x00\x9b\x07\xc2\xee\x8a\xdf\x3f\x25\xbe\x4b\x7c\x54\xff\
\x00\x46\xdd\x27\xd6\xdf\xdd\x9f\xef\xae\xf5\xff\x00\x4e\x7f\x1b\
\x77\x8f\xf0\x5f\xef\x8e\xf1\xdb\xfb\x07\x6e\x7f\xbf\x73\x60\xf7\
\x0e\xea\xdd\xb9\x1f\xe2\x3b\xb7\x75\x50\x52\x7f\x92\x50\x4f\xe1\
\xf3\xf9\x65\xd1\x0a\x49\x22\x7b\xaf\x74\x40\x7e\x2e\x7c\x5c\xef\
\x5f\x9a\x3d\xeb\xb1\xbe\x34\xfc\x69\xd8\xdf\xe9\x27\xbb\x3b\x27\
\xfb\xcd\xfd\xca\xd9\x5f\xde\x6d\x9d\xb3\xbf\x8d\x7f\x73\xb6\x76\
\xe0\xdf\xdb\x8f\xfd\xfc\x7b\xfb\x70\x6d\x5d\xa5\x8e\xfe\x1d\xb4\
\xb6\xad\x7d\x5f\xf9\x5d\x7c\x1e\x6f\x07\x8a\x2d\x73\x3c\x71\xbf\
\xba\xf7\x5b\x3d\xff\x00\x2b\xaf\xe5\x75\xf3\xaf\xf9\x2f\x7c\xeb\
\xe8\xdf\xe6\x5b\xfc\xcb\x7a\x37\xfd\x96\xdf\x84\xdf\x1b\x7f\xd2\
\x67\xfa\x6a\xee\xaf\xf4\x99\xd3\xdd\xc5\xfd\xcc\xff\x00\x4c\x5d\
\x3d\xd8\x3d\x05\xd7\x1f\xf1\x8e\x3a\x0b\xb0\x7b\x4f\xb6\xb7\x17\
\xf7\x8b\xb6\xbb\x4f\x03\x89\xff\x00\x71\x38\x1a\xff\x00\xb4\xfb\
\xff\x00\xba\xaa\xf0\xd1\xc3\x51\x51\x0f\xba\xf7\x5b\xbc\xfc\x5c\
\xfe\x7d\x1f\xca\x7f\xe6\x8f\x7a\xec\x6f\x8d\x3f\x1a\x7e\x55\xff\
\x00\xa4\x9e\xec\xec\x9f\xef\x37\xf7\x2b\x65\x7f\xa0\xcf\x92\x5b\
\x3b\xf8\xd7\xf7\x3b\x67\x6e\x0d\xfd\xb8\xff\x00\xdf\xc7\xbf\xba\
\x7b\x6a\xed\x2c\x77\xf0\xed\xa5\xb5\x6b\xea\xff\x00\xca\xeb\xe0\
\xf3\x78\x3c\x51\x6b\x99\xe3\x8d\xfd\xd7\xba\x00\x3f\xe1\x51\x7f\
\xf6\xe2\xaf\x9c\xbf\xf9\x6c\xdf\xfc\x18\x5f\x1f\x7d\xfb\xaf\x75\
\xf2\x0b\xf7\xee\xbd\xd0\xff\x00\xf1\x73\xe2\xe7\x7a\xfc\xd1\xef\
\x5d\x8d\xf1\xa7\xe3\x4e\xc6\xff\x00\x49\x3d\xd9\xd9\x3f\xde\x6f\
\xee\x56\xca\xfe\xf3\x6c\xed\x9d\xfc\x6b\xfb\x9d\xb3\xb7\x06\xfe\
\xdc\x7f\xef\xe3\xdf\xdb\x83\x6a\xed\x2c\x77\xf0\xed\xa5\xb5\x6b\
\xea\xff\x00\xca\xeb\xe0\xf3\x78\x3c\x51\x6b\x99\xe3\x8d\xfd\xd7\
\xba\xde\xe7\xfe\x13\x03\xfc\x9a\x3f\x99\x2f\xf2\xef\xf9\xf3\xdb\
\xbd\xd5\xf3\x13\xe3\x87\xfa\x1f\xeb\x2d\xd1\xf1\x03\x7f\x75\x76\
\x0b\x72\xff\x00\xa5\xfe\x86\xec\x0f\xbe\xdf\x79\xae\xe7\xe8\x0d\
\xd9\x8c\xc1\x7f\x06\xea\xee\xd1\xde\xdb\x82\x9b\xee\x76\xfe\xc9\
\xca\x54\x7d\xd4\xd4\x91\xd1\xa7\xda\xe8\x79\x56\x49\x22\x49\x3d\
\xd7\xba\xde\xe9\x7f\x50\xff\x00\x7d\xf5\xe3\xdf\xba\xf7\x59\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd3\xdf\xe3\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xc1\xfe\x9f\xec\
\x7f\xe2\x0f\xbf\x75\xee\xb1\x7b\xf7\x5e\xea\x90\xfb\x63\xfe\x14\
\x75\xfc\x99\x3a\x3b\xb4\xfb\x2f\xa5\x7b\x47\xe6\x47\xf7\x5f\xb3\
\x7a\x7f\xb0\x37\x97\x57\x76\x2e\xda\xff\x00\x65\xe7\xe5\x56\x6b\
\xfb\xbb\xbe\xfa\xff\x00\x71\x64\xb6\x9e\xee\xc1\x7f\x19\xdb\xbd\
\x1d\x96\xdb\xf9\x6f\xe1\x3b\x83\x13\x51\x4f\xf7\x54\x35\x75\x54\
\x73\xf8\xf5\xc3\x2c\x91\xb2\xb9\xf7\x5e\xeb\xe5\x13\xfc\xc2\x3b\
\x47\x62\x77\x8f\xcf\x9f\x9c\x1d\xd5\xd5\xd9\xdf\xef\x47\x59\x77\
\x07\xcb\xff\x00\x92\xdd\xa3\xd7\x5b\x97\xf8\x66\x63\x0b\xfd\xe2\
\xd8\x9d\x81\xdc\xfb\xd7\x76\x6d\x1c\xef\xf0\x6d\xc5\x8f\xc4\xee\
\x0c\x4f\xf1\x6d\xbf\x96\xa7\xa8\xfb\x5a\xea\x4a\x5a\xc8\x3c\x9a\
\x26\x8a\x39\x15\x90\x7b\xaf\x74\x50\x7d\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5f\x53\x6f\xe5\xef\xff\x00\x0a\x3a\xfe\x4c\
\x9d\x1d\xf0\x1b\xe0\xff\x00\x4a\xf6\x8f\xcc\x8f\xee\xbf\x66\xf4\
\xff\x00\xc4\x0f\x8d\x3d\x5d\xd8\xbb\x6b\xfd\x97\x9f\x95\x59\xaf\
\xee\xee\xfb\xeb\xfe\x98\xd9\x5b\x4f\x77\x60\xbf\x8c\xed\xde\x8e\
\xcb\x6d\xfc\xb7\xf0\x9d\xc1\x89\xa8\xa7\xfb\xaa\x1a\xba\xaa\x39\
\xfc\x7a\xe1\x96\x48\xd9\x5c\xfb\xaf\x75\xb3\xdf\x53\xf6\x8e\xc4\
\xef\x1e\xac\xeb\x4e\xea\xea\xec\xef\xf7\xa3\xac\xbb\x83\xaf\xf6\
\x6f\x68\xf5\xd6\xe5\xfe\x19\x98\xc2\xff\x00\x78\xb6\x27\x60\x6d\
\xdc\x6e\xec\xda\x39\xdf\xe0\xdb\x8b\x1f\x89\xdc\x18\x9f\xe2\xdb\
\x7f\x2d\x4f\x51\xf6\xb5\xd4\x94\xb5\x90\x79\x34\x4d\x14\x72\x2b\
\x20\xf7\x5e\xeb\xe6\x11\xfc\xc2\x3f\xe1\x38\xbf\xce\x6f\xbc\x7e\
\x7c\xfc\xe0\xee\xae\xae\xf8\x6f\xfd\xe8\xeb\x2e\xe0\xf9\x7f\xf2\
\x5b\xb4\x7a\xeb\x72\xff\x00\xb3\x0d\xf1\x57\x0b\xfd\xe2\xd8\x9d\
\x81\xdc\xfb\xd7\x76\x6d\x1c\xef\xf0\x6d\xc5\xde\x38\x9d\xc1\x89\
\xfe\x2d\xb7\xf2\xd4\xf5\x1f\x6b\x5d\x49\x4b\x59\x07\x93\x44\xd1\
\x47\x22\xb2\x0f\x75\xee\xb5\x84\xed\x8e\xae\xdf\x7d\x1d\xda\x7d\
\x97\xd2\xbd\xa3\x82\xfe\xeb\xf6\x6f\x4f\xf6\x06\xf2\xea\xee\xc5\
\xdb\x5f\xc4\xf0\xf9\xaf\xee\xee\xfb\xeb\xfd\xc5\x92\xda\x7b\xbb\
\x05\xfc\x67\x6e\xe4\x32\xdb\x7f\x2d\xfc\x27\x70\x62\x6a\x29\xfe\
\xea\x86\xae\xaa\x8e\x7f\x1e\xb8\x65\x92\x36\x57\x3e\xeb\xdd\x20\
\x3d\xfb\xaf\x75\xf7\xf0\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\x40\x7f\
\xf4\x14\x5f\xf2\x2a\xff\x00\xbc\xe5\xff\x00\xd9\x66\xf9\x85\xff\
\x00\xdc\xfb\xef\xdd\x7b\xab\xfc\xf7\xee\xbd\xd5\x01\xff\x00\xd0\
\x51\x7f\xc8\xab\xfe\xf3\x97\xff\x00\x65\x9b\xe6\x17\xff\x00\x73\
\xef\xbf\x75\xee\xbe\x41\x7e\xfd\xd7\xba\xf7\xbf\x75\xee\xaf\xf3\
\xfe\x81\x74\xfe\x7a\xbf\xf7\x83\x5f\xfb\x33\x3f\x0f\x7f\xfb\xa0\
\xbd\xfb\xaf\x75\x40\x7e\xfd\xd7\xba\xfb\xd8\xf6\xc7\x68\xec\x4e\
\x8e\xea\xce\xcb\xee\xae\xd1\xce\xff\x00\x75\xfa\xcb\xa7\xfa\xff\
\x00\x79\x76\x8f\x62\xee\x5f\xe1\x99\x8c\xd7\xf7\x77\x62\x75\xfe\
\xdd\xc9\x6e\xcd\xdd\x9d\xfe\x0d\xb7\x71\xf9\x6d\xc1\x96\xfe\x13\
\xb7\xf1\x35\x15\x1f\x6b\x43\x49\x55\x59\x3f\x8f\x44\x31\x49\x23\
\x2a\x1f\x75\xee\xb5\x84\xfe\x61\x1f\xf0\xa3\xaf\xe4\xc9\xde\x3f\
\x01\xbe\x70\x74\xaf\x57\x7c\xc8\xfe\xf4\x76\x6f\x70\x7c\x40\xf9\
\x2d\xd5\xdd\x75\xb6\xbf\xd9\x79\xf9\x55\x85\xfe\xf1\x6f\xbe\xc0\
\xe9\x8d\xeb\xb4\xf6\x8e\x0b\xf8\xce\xe2\xe8\xec\x4e\xdf\xc4\xff\
\x00\x16\xdc\x19\x6a\x7a\x7f\xba\xae\xab\xa5\xa3\x83\xc9\xae\x69\
\x63\x8d\x59\xc7\xba\xf7\x5f\x3c\x7f\xe5\x3f\xff\x00\x6f\x4c\xfe\
\x5a\x9f\xf8\xbf\xdf\x0d\xff\x00\xf8\x22\x7a\xe7\xdf\xba\xf7\x5f\
\x63\x4f\xe6\x11\xd5\xdb\xef\xbc\x7e\x03\x7c\xe0\xe9\x5e\xae\xc1\
\x7f\x7a\x3b\x37\xb8\x3e\x20\x7c\x96\xea\xee\xba\xdb\x5f\xc4\xf0\
\xf8\x5f\xef\x16\xfb\xec\x0e\x98\xde\xbb\x4f\x68\xe0\xbf\x8c\xee\
\x2c\x86\x27\x6f\xe2\x7f\x8b\x6e\x0c\xb5\x3d\x3f\xdd\x57\x55\xd2\
\xd1\xc1\xe4\xd7\x34\xb1\xc6\xac\xe3\xdd\x7b\xaf\x9c\x3f\xf2\xf7\
\xff\x00\x84\xe2\xff\x00\x39\xbe\x8e\xf9\xf3\xf0\x7f\xba\xbb\x47\
\xe1\xbf\xf7\x5f\xac\xba\x7f\xe5\xff\x00\xc6\x9e\xd1\xec\x5d\xcb\
\xfe\xcc\x37\xc5\x5c\xd7\xf7\x77\x62\x75\xff\x00\x73\xec\xad\xd9\
\xbb\xb3\xbf\xc1\xb6\xef\x78\xe5\xb7\x06\x5b\xf8\x4e\xdf\xc4\xd4\
\x54\x7d\xad\x0d\x25\x55\x64\xfe\x3d\x10\xc5\x24\x8c\xa8\x7d\xd7\
\xba\xfa\x3c\x7f\x30\x8e\xae\xdf\x7d\xe3\xf0\x1b\xe7\x07\x4a\xf5\
\x76\x0b\xfb\xd1\xd9\xbd\xc1\xf1\x03\xe4\xb7\x57\x75\xd6\xda\xfe\
\x27\x87\xc2\xff\x00\x78\xb7\xdf\x60\x74\xc6\xf5\xda\x7b\x47\x05\
\xfc\x67\x71\x64\x31\x3b\x7f\x13\xfc\x5b\x70\x65\xa9\xe9\xfe\xea\
\xba\xae\x96\x8e\x0f\x26\xb9\xa5\x8e\x35\x67\x1e\xeb\xdd\x7c\xd2\
\x3e\x27\xff\x00\x21\x7f\xe6\xc1\xf0\x77\xe5\x37\xc6\xaf\x9a\xbf\
\x28\xfe\x2a\x7f\xa3\x0f\x8c\xdf\x10\x3b\xff\x00\xa6\xfe\x51\xfc\
\x8a\xec\xbf\xf4\xe7\xf1\xb7\x7a\xff\x00\xa3\xce\x8a\xf8\xff\x00\
\xd8\xbb\x73\xb6\x3b\x73\x7c\xff\x00\x73\x7a\xf3\xb8\x77\x6e\xff\
\x00\xdd\xbf\xdd\x2e\xbf\xda\x59\x0a\xff\x00\xe1\x98\x2c\x56\x4f\
\x31\x5f\xf6\xfe\x0a\x2a\x4a\x8a\x99\x23\x85\xfd\xd7\xba\xdb\xeb\
\xe5\x87\xf3\xe8\xfe\x53\xff\x00\x38\xbe\x2c\xfc\x95\xf8\x55\xf1\
\x73\xe5\x5f\xfa\x4f\xf9\x33\xf2\xff\x00\xa0\x3b\x93\xe2\xe7\xc7\
\x5e\xb4\xff\x00\x41\x9f\x24\xb6\x57\xfa\x43\xef\x5f\x90\x1d\x75\
\xb8\xfa\x9f\xa8\xf6\x37\xf7\xcb\xb0\xfa\x7b\x69\x6c\x0d\xa5\xfd\
\xed\xec\x0d\xdb\x8f\xa0\xfe\x27\x9d\xca\xe3\x30\xf4\x1f\x71\xe7\
\xad\xab\xa7\xa6\x8e\x49\x93\xdd\x7b\xad\x41\x7e\x27\xff\x00\x21\
\x7f\xe6\xc1\xf0\x77\xe5\x37\xc6\xaf\x9a\xbf\x28\xfe\x2a\x7f\xa3\
\x0f\x8c\xdf\x10\x3b\xff\x00\xa6\xfe\x51\xfc\x8a\xec\xbf\xf4\xe7\
\xf1\xb7\x7a\xff\x00\xa3\xce\x8a\xf8\xff\x00\xd8\xbb\x73\xb6\x3b\
\x73\x7c\xff\x00\x73\x7a\xf3\xb8\x77\x6e\xff\x00\xdd\xbf\xdd\x2e\
\xbf\xda\x59\x0a\xff\x00\xe1\x98\x2c\x56\x4f\x31\x5f\xf6\xfe\x0a\
\x2a\x4a\x8a\x99\x23\x85\xfd\xd7\xba\xdd\xe7\xfe\x82\x8b\xfe\x45\
\x5f\xf7\x9c\xbf\xfb\x2c\xdf\x30\xbf\xfb\x9f\x7d\xfb\xaf\x74\x40\
\x7f\x9a\x2f\xf3\x45\xf8\x29\xfc\xe8\x7e\x0a\x77\x97\xf2\xd2\xfe\
\x5a\x5d\xe5\xfe\xcc\x97\xcd\x9f\x92\x5f\xe8\xcf\xfd\x0a\xf4\xaf\
\xfa\x33\xee\x1e\x9d\xfe\xf9\xff\x00\xa1\xde\xe1\xeb\xee\xfd\xec\
\x7f\xf8\xc8\xfd\xfb\xd7\xdd\x59\xd4\xbb\x77\xfb\xbb\xd4\xbd\x59\
\x9e\xcb\x7f\xb9\x6c\xf5\x07\xdd\xfd\x87\xda\xd2\xf9\xab\x26\xa7\
\xa7\x9b\xdd\x7b\xad\x21\xbe\x51\xff\x00\x21\x7f\xe6\xc1\xf0\xbb\
\xa2\xb7\xcf\xc9\x6f\x92\xdf\x15\x3f\xd1\xb7\x49\xf5\xb7\xf7\x67\
\xfb\xeb\xbd\x7f\xd3\x9f\xc6\xdd\xe3\xfc\x17\xfb\xe3\xbc\x76\xfe\
\xc1\xdb\x9f\xef\xdc\xd8\x3d\xc3\xba\xb7\x6e\x47\xf8\x8e\xed\xdd\
\x54\x14\x9f\xe4\x94\x13\xf8\x7c\xfe\x59\x74\x42\x92\x48\x9e\xeb\
\xdd\x7b\xf9\x0b\xfc\xa3\xe8\xaf\x85\xdf\xcd\x83\xe2\xa7\xc9\x6f\
\x92\xdb\xe7\xfd\x1b\x74\x9f\x5b\x7f\xa7\x3f\xef\xae\xf5\xfe\xec\
\xef\x1d\xe3\xfc\x17\xfb\xe3\xf1\xb7\xb8\x76\x0e\xdc\xff\x00\x7e\
\xe6\xc1\xdb\xfb\xab\x76\xe4\x7f\x88\xee\xdd\xd5\x41\x49\xfe\x49\
\x41\x3f\x87\xcf\xe5\x97\x44\x29\x24\x89\xee\xbd\xd6\xef\x3f\xcd\
\x17\xf9\xa2\xfc\x14\xfe\x74\x3f\x05\x3b\xcb\xf9\x69\x7f\x2d\x2e\
\xf2\xff\x00\x66\x4b\xe6\xcf\xc9\x2f\xf4\x67\xfe\x85\x7a\x57\xfd\
\x19\xf7\x0f\x4e\xff\x00\x7c\xff\x00\xd0\xef\x70\xf5\xf7\x7e\xf6\
\x3f\xfc\x64\x7e\xfd\xeb\xee\xac\xea\x5d\xbb\xfd\xdd\xea\x5e\xac\
\xcf\x65\xbf\xdc\xb6\x7a\x83\xee\xfe\xc3\xed\x69\x7c\xd5\x93\x53\
\xd3\xcd\xee\xbd\xd5\x41\x7f\x21\x7f\xe4\x2f\xfc\xd8\x3e\x17\x7f\
\x36\x0f\x8a\x9f\x25\xbe\x4b\x7c\x54\xff\x00\x46\xdd\x27\xd6\xdf\
\xe9\xcf\xfb\xeb\xbd\x7f\xd3\x9f\xc6\xdd\xe3\xfc\x17\xfb\xe3\xf1\
\xb7\xb8\x76\x0e\xdc\xff\x00\x7e\xe6\xc1\xee\x1d\xd5\xbb\x72\x3f\
\xc4\x77\x6e\xea\xa0\xa4\xff\x00\x24\xa0\x9f\xc3\xe7\xf2\xcb\xa2\
\x14\x92\x44\xf7\x5e\xeb\x6f\xaf\xe7\xd1\xf1\x73\xbd\x7e\x68\xff\
\x00\x29\xff\x00\x95\x7f\x1a\x7e\x34\xec\x6f\xf4\x93\xdd\x9d\x93\
\xfe\x83\x3f\xb9\x5b\x2b\xfb\xcd\xb3\xb6\x77\xf1\xaf\xee\x77\xc9\
\x2e\x9e\xdf\xdb\x8f\xfd\xfc\x7b\xfb\x70\x6d\x5d\xa5\x8e\xfe\x1d\
\xb4\xb6\xad\x7d\x5f\xf9\x5d\x7c\x1e\x6f\x07\x8a\x2d\x73\x3c\x71\
\xbf\xba\xf7\x5a\x82\xff\x00\x21\x7f\xe4\x2f\xfc\xd8\x3e\x17\x7f\
\x36\x0f\x8a\x9f\x25\xbe\x4b\x7c\x54\xff\x00\x46\xdd\x27\xd6\xdf\
\xe9\xcf\xfb\xeb\xbd\x7f\xd3\x9f\xc6\xdd\xe3\xfc\x17\xfb\xe3\xf1\
\xb7\xb8\x76\x0e\xdc\xff\x00\x7e\xe6\xc1\xee\x1d\xd5\xbb\x72\x3f\
\xc4\x77\x6e\xea\xa0\xa4\xff\x00\x24\xa0\x9f\xc3\xe7\xf2\xcb\xa2\
\x14\x92\x44\xf7\x5e\xeb\x6f\xaf\xe7\xd1\xf1\x73\xbd\x7e\x68\xff\
\x00\x29\xff\x00\x95\x7f\x1a\x7e\x34\xec\x6f\xf4\x93\xdd\x9d\x93\
\xfe\x83\x3f\xb9\x5b\x2b\xfb\xcd\xb3\xb6\x77\xf1\xaf\xee\x77\xc9\
\x2e\x9e\xdf\xdb\x8f\xfd\xfc\x7b\xfb\x70\x6d\x5d\xa5\x8e\xfe\x1d\
\xb4\xb6\xad\x7d\x5f\xf9\x5d\x7c\x1e\x6f\x07\x8a\x2d\x73\x3c\x71\
\xbf\xba\xf7\x5f\x30\x9f\x94\x7f\xc8\x5f\xf9\xb0\x7c\x2e\xe8\xad\
\xf3\xf2\x5b\xe4\xb7\xc5\x4f\xf4\x6d\xd2\x7d\x6d\xfd\xd9\xfe\xfa\
\xef\x5f\xf4\xe7\xf1\xb7\x78\xff\x00\x05\xfe\xf8\xef\x1d\xbf\xb0\
\x76\xe7\xfb\xf7\x36\x0f\x70\xee\xad\xdb\x91\xfe\x23\xbb\x77\x55\
\x05\x27\xf9\x25\x04\xfe\x1f\x3f\x96\x5d\x10\xa4\x92\x27\xba\xf7\
\x43\xff\x00\xfc\x25\xd3\xfe\xdf\xab\xf0\x6b\xff\x00\x2e\x67\xff\
\x00\x80\xf7\xe4\x17\xbf\x75\xee\xbe\xbe\x9e\xfd\xd7\xba\xec\x7d\
\x47\xfa\xe3\xfd\xef\xdf\xba\xf7\x59\xfd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5f\xff\xd4\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\
\xbd\xd7\xbd\xfb\xaf\x75\xc1\xfe\x80\xff\x00\x8f\xfb\xef\xf7\xaf\
\x7e\xeb\xdd\x6b\x7f\xf3\xd3\xfe\x14\xfd\xf0\x1b\xf9\x77\xfc\xb0\
\xed\x6f\x87\x7d\xd5\xd4\x5f\x2f\xf7\x47\x66\xf4\xff\x00\xf7\x1b\
\xfb\xcb\x9d\xea\xed\x83\xd3\x19\xad\x89\x5d\xfe\x90\x3a\xdb\x67\
\x76\x8e\x1b\xf8\x16\x4f\x76\x77\xfe\xc9\xdc\x15\x3f\x6d\xb7\xf7\
\xb5\x24\x35\x5f\x71\x8b\xa5\xd1\x59\x1c\xa8\x9e\x48\xd5\x25\x93\
\xdd\x7b\xad\x60\xfb\x63\xfe\x13\x03\xf3\xe7\xf9\x93\xf6\x9f\x65\
\xff\x00\x31\x6e\x8c\xed\xdf\x88\x1b\x53\xa4\xfe\x7d\x76\x06\xf2\
\xf9\xab\xd3\xbb\x5f\xb6\x37\xf7\x73\xe0\xbb\x4f\x6d\xf5\x67\xca\
\x7d\xc5\x92\xef\x3e\xbe\xc0\x76\x5e\x13\x67\xf4\x06\xfb\xda\x58\
\x7e\xc0\xc3\xed\x2d\xf7\x49\x4f\x99\xa5\xc5\xe7\x33\x38\xea\x7c\
\x8c\x73\x47\x4d\x5d\x57\x0a\xa5\x44\x9e\xeb\xdd\x20\x3f\xe8\x0a\
\xcf\xe6\x99\xff\x00\x3f\xf3\xe0\x0f\xfe\x8d\x3f\x91\x3f\xfd\xca\
\xde\xfd\xd7\xba\xd5\x93\xe4\x27\x4a\xee\x9f\x8d\x9d\xf9\xde\x1f\
\x1d\x37\xd5\x7e\xdf\xca\xef\x6e\x82\xed\xfe\xcb\xe9\x5d\xe3\x94\
\xda\x75\x59\x1a\xed\xad\x92\xdd\x3d\x57\xbd\x33\x5b\x17\x70\xd7\
\xed\xaa\xdc\xc6\x2b\x05\x96\xac\xdb\xf5\x99\x6c\x14\xd2\x51\xcb\
\x55\x43\x47\x53\x25\x33\x23\x4b\x04\x2e\x5a\x35\xf7\x5e\xe8\x20\
\xf7\xee\xbd\xd6\xd3\x7f\x1e\xff\x00\xe1\x22\xff\x00\xcc\x8b\xe4\
\x9f\x41\xf4\x7f\xc8\xbd\x8b\xdd\x9f\x08\x71\x5b\x27\xbf\x7a\x83\
\xad\x3b\xab\x67\x62\xf7\x67\x64\x77\xc5\x0e\xe9\xc6\xed\x6e\xd4\
\xd9\x78\x5d\xf5\xb7\xa8\x37\x2d\x16\x1f\xe3\x5e\x77\x13\x47\xb8\
\x28\xf1\x39\xd8\x63\xac\x8a\x96\xba\xb2\x9a\x3a\x95\x75\x8a\x79\
\x90\x2c\x8d\xee\xbd\xd0\xbf\xff\x00\x40\x56\x7f\x34\xcf\xf9\xff\
\x00\x9f\x00\x7f\xf4\x69\xfc\x89\xff\x00\xee\x56\xf7\xee\xbd\xd5\
\xde\xf5\x3f\xfc\x29\xfb\xe0\x37\xf2\xd8\xea\xce\xb4\xfe\x5d\x3d\
\xe7\xd4\x5f\x2f\xf7\x5f\x76\x7c\x05\xeb\xfd\x9b\xf0\xab\xb8\xb7\
\x47\x53\xec\x1e\x98\xce\xf5\x66\xe4\xed\x3f\x8b\x1b\x77\x1b\xd1\
\x9d\x83\x9f\xeb\x4c\xde\xf0\xef\xfd\x89\xbb\x73\x1d\x7f\x98\xdd\
\xbb\x12\xae\xa3\x0d\x55\x94\xc1\xe1\xb2\x35\x18\xe9\x21\x92\xa6\
\x86\x92\x66\x7a\x78\xfd\xd7\xba\xdb\x6b\xe3\xdf\x75\x6d\x6f\x92\
\x7d\x07\xd1\xff\x00\x22\xf6\x2d\x06\xe0\xc5\x6c\x9e\xfd\xea\x0e\
\xb4\xee\xad\x9d\x8b\xdd\x94\xb8\xea\x1d\xd3\x8d\xda\xdd\xa9\xb2\
\xf0\xbb\xeb\x6f\x50\x6e\x5a\x2c\x3e\x57\x3b\x89\xa3\xdc\x14\x78\
\x9c\xec\x31\xd6\x45\x4b\x5d\x59\x4d\x1d\x4a\xba\xc5\x3c\xc8\x16\
\x46\xf7\x5e\xeb\xe2\xd9\xfc\xd8\x3f\xed\xe9\x9f\xcc\xaf\xff\x00\
\x17\xfb\xe6\x47\xff\x00\x04\x4f\x63\x7b\xf7\x5e\xe8\x80\xfb\xf7\
\x5e\xeb\xe9\xed\xff\x00\x41\xa9\xff\x00\x2b\x3f\xf9\xf0\x7f\x3f\
\xbf\xf4\x56\x7c\x76\xff\x00\xee\xa9\xf7\xee\xbd\xd7\xbf\xe8\x35\
\x3f\xe5\x67\xff\x00\x3e\x0f\xe7\xf7\xfe\x8a\xcf\x8e\xdf\xfd\xd5\
\x3e\xfd\xd7\xba\xa0\x3f\xfa\x02\xb3\xf9\xa6\x7f\xcf\xfc\xf8\x03\
\xff\x00\xa3\x4f\xe4\x4f\xff\x00\x72\xb7\xbf\x75\xee\xaf\xf3\xfe\
\x83\x53\xfe\x56\x7f\xf3\xe0\xfe\x7f\x7f\xe8\xac\xf8\xed\xff\x00\
\xdd\x53\xef\xdd\x7b\xaa\x03\xff\x00\xa0\x2b\x3f\x9a\x67\xfc\xff\
\x00\xcf\x80\x3f\xfa\x34\xfe\x44\xff\x00\xf7\x2b\x7b\xf7\x5e\xeb\
\x50\x5f\x7e\xeb\xdd\x6d\xf5\xff\x00\x40\x56\x7f\x34\xcf\xf9\xff\
\x00\x9f\x00\x7f\xf4\x69\xfc\x89\xff\x00\xee\x56\xf7\xee\xbd\xd7\
\xd3\xdb\xdf\xba\xf7\x5f\x30\x9f\xfa\x02\xb3\xf9\xa6\x7f\xcf\xfc\
\xf8\x03\xff\x00\xa3\x4f\xe4\x4f\xff\x00\x72\xb7\xbf\x75\xee\xbe\
\x8a\xff\x00\x37\x3a\x57\x74\xfc\x93\xf8\x61\xf2\xef\xe3\xa6\xc5\
\xaf\xdb\xf8\xad\xed\xdf\xbf\x18\x3b\xf7\xa5\x76\x76\x53\x76\x55\
\x64\x68\x76\xb6\x37\x74\xf6\xa7\x54\xee\xcd\x8b\xb7\xab\xf7\x2d\
\x6e\x1f\x15\x9d\xcb\x51\xed\xfa\x3c\xb6\x76\x19\x2b\x25\xa5\xa1\
\xac\xa9\x8e\x99\x5d\xa2\x82\x67\x0b\x1b\x7b\xaf\x75\xf3\x49\xf9\
\x09\xff\x00\x09\x17\xfe\x64\x5f\x1b\x3a\x0f\xbc\x3e\x45\xef\xae\
\xec\xf8\x43\x95\xd9\x3d\x05\xd4\x1d\x97\xdd\x5b\xc7\x17\xb4\xfb\
\x23\xbe\x2b\xb7\x4e\x4b\x6b\x75\x5e\xcb\xcd\x6f\xad\xc3\x41\xb6\
\xa8\xb3\x1f\x1a\xf0\x58\x9a\xcd\xc1\x59\x89\xc1\x4d\x1d\x1c\x55\
\x55\xd4\x74\xd2\x54\xb2\x2c\xb3\xc2\x85\xa4\x5f\x75\xee\xa8\x0f\
\xe1\x1f\x75\x6d\x6f\x8d\x9f\x33\xfe\x22\x7c\x8b\xdf\x54\x1b\x83\
\x2b\xb2\x7a\x0b\xe4\xff\x00\x41\x77\x56\xf1\xc5\xed\x3a\x5c\x75\
\x76\xe9\xc9\x6d\x6e\xab\xed\x6d\xa7\xbe\xb7\x0d\x06\xda\xa2\xcc\
\x65\x70\x58\x9a\xcd\xc1\x59\x89\xc1\x4d\x1d\x1c\x55\x55\xd4\x74\
\xd2\x54\xb2\x2c\xb3\xc2\x85\xa4\x5f\x75\xee\xbe\x96\xdf\x1e\xff\
\x00\xe1\x5d\x1f\xcb\x77\xe4\x9f\x7e\x74\x7f\xc7\x4d\x8b\xd2\x7f\
\x37\xb1\x5b\xdb\xbf\x7b\x7f\xad\x3a\x57\x67\x65\x37\x67\x5b\xf4\
\x3d\x0e\xd6\xc6\xee\x9e\xd4\xde\x98\x5d\x8b\xb7\xab\xf7\x2d\x6e\
\x1f\xe4\xa6\x77\x2d\x47\xb7\xe8\xf2\xd9\xd8\x64\xac\x96\x96\x86\
\xb2\xa6\x3a\x65\x76\x8a\x09\x9c\x2c\x6d\xee\xbd\xd6\xd3\x7e\xfd\
\xd7\xba\x08\x3e\x42\x77\x56\xd6\xf8\xd9\xd0\x7d\xe1\xf2\x2f\x7d\
\x50\x6e\x0c\xae\xc9\xe8\x2e\xa0\xec\xbe\xea\xde\x38\xbd\xa7\x4b\
\x8e\xae\xdd\x39\x2d\xad\xd5\x7b\x2f\x35\xbe\xb7\x0d\x06\xda\xa2\
\xcc\x65\x70\x58\x9a\xcd\xc1\x59\x89\xc1\x4d\x1d\x1c\x55\x55\xd4\
\x74\xd2\x54\xb2\x2c\xb3\xc2\x85\xa4\x5f\x75\xee\xb4\xc5\xf9\xb9\
\xff\x00\x0a\xe8\xfe\x5b\xbf\x24\xfe\x18\x7c\xbb\xf8\xe9\xb1\x7a\
\x4f\xe6\xf6\x2b\x7b\x77\xef\xc6\x0e\xfd\xe9\x5d\x9d\x94\xdd\x9d\
\x6f\xd0\xf4\x3b\x5b\x1b\xba\x7b\x53\xaa\x77\x66\xc5\xdb\xd5\xfb\
\x96\xb7\x0f\xf2\x53\x3b\x96\xa3\xdb\xf4\x79\x6c\xec\x32\x56\x4b\
\x4b\x43\x59\x53\x1d\x32\xbb\x45\x04\xce\x16\x36\xf7\x5e\xeb\x44\
\x7f\x84\x7d\xd5\xb5\xbe\x36\x7c\xcf\xf8\x89\xf2\x2f\x7d\x50\x6e\
\x0c\xae\xc9\xe8\x2f\x93\xfd\x05\xdd\x5b\xc7\x17\xb4\xe9\x71\xd5\
\xdb\xa7\x25\xb5\xba\xaf\xb5\xb6\x9e\xfa\xdc\x34\x1b\x6a\x8b\x31\
\x95\xc1\x62\x6b\x37\x05\x66\x27\x05\x34\x74\x71\x55\x57\x51\xd3\
\x49\x52\xc8\xb2\xcf\x0a\x16\x91\x7d\xd7\xba\xfa\x0c\x76\xc7\xfc\
\x29\xfb\xe0\x37\xf3\x27\xea\xce\xcb\xfe\x5d\x3d\x19\xd4\x5f\x2f\
\xf6\xa7\x76\x7c\xfa\xeb\xfd\xe5\xf0\xab\xa7\x77\x47\x6c\x6c\x1e\
\x98\xc1\x75\x66\xdb\xed\x3f\x94\xfb\x77\x25\xd1\x9d\x7d\x9f\xec\
\xbc\xde\xcf\xef\xfd\xf7\xbb\x70\xfd\x7f\x87\xdd\xbb\xee\x92\xa3\
\x33\x55\x8b\xc1\xe6\x72\x34\xf8\xe8\xe6\x92\x9a\x86\xae\x65\x4a\
\x79\x3d\xd7\xba\xa4\x2f\xfa\x02\xb3\xf9\xa6\x7f\xcf\xfc\xf8\x03\
\xff\x00\xa3\x4f\xe4\x4f\xff\x00\x72\xb7\xbf\x75\xee\x87\xff\x00\
\x8b\x9f\xc9\x5b\xe5\x37\xfc\x27\x7b\xbd\x76\x37\xf3\x89\xf9\xab\
\xbf\xba\x03\xb3\xfe\x33\x7c\x40\xfe\xf3\x7f\xa4\xbd\x8d\xf1\x73\
\x74\xf6\x2e\xf5\xef\x5c\xe7\xfb\x30\x1b\x3b\x70\x7c\x5c\xd9\xbf\
\xdc\x6d\xb3\xdb\x1d\x57\xd2\x7d\x7f\x93\xfe\x19\xbf\xfb\xb7\x15\
\x59\x93\xfb\xfd\xcf\x8c\xf0\xe1\xe9\xea\xe5\x83\xee\x2a\x63\x86\
\x92\x7f\x75\xee\x97\xff\x00\xce\x5f\xfe\x14\xfd\xf0\x1b\xf9\x88\
\x7f\x2d\xaf\x91\xff\x00\x0e\xfa\x57\xa8\xbe\x5f\xed\x7e\xcd\xee\
\x0f\xf4\x41\xfd\xda\xce\xf6\x8e\xc1\xe9\x8c\x2e\xc4\xa1\xff\x00\
\x47\xfd\xf3\xd5\xdd\xa3\x99\xfe\x3b\x93\xda\x7d\xff\x00\xbd\xb7\
\x05\x37\xdc\xed\xfd\x93\x57\x0d\x2f\xdb\xe2\xea\xb5\xd6\x49\x12\
\x3f\x8e\x36\x79\x63\xf7\x5e\xeb\x50\x5f\x81\x7f\x0a\xbb\x4f\xf9\
\x88\x7c\xb0\xea\x9f\x87\x7d\x2b\x9f\xeb\xfd\xaf\xd9\xbd\xc1\xfd\
\xf9\xfe\xed\x67\x7b\x47\x2b\xb8\xb0\xbb\x12\x87\xfd\x1f\xf5\xb6\
\xf1\xed\x1c\xcf\xf1\xdc\x9e\xd3\xda\xbb\xdb\x70\x53\x7d\xce\xdf\
\xd9\x35\x70\xd2\xfd\xbe\x2e\xab\x5d\x64\x91\x23\xf8\xe3\x67\x96\
\x3f\x75\xee\xb7\x7a\xfe\x4d\x1f\xf0\x98\x1f\x9f\x3f\xcb\xbf\xf9\
\x92\xfc\x70\xf9\x89\xdd\x5d\xbb\xf1\x03\x74\x75\x97\x4f\xff\x00\
\xa5\xff\x00\xef\x2e\x0b\xab\xb7\xf7\x73\xe6\xb7\xdd\x77\xfa\x40\
\xe8\x6e\xd1\xea\xec\x37\xf0\x2c\x66\xec\xe8\x0d\x93\xb7\xea\x7e\
\xdb\x70\x6f\x6a\x49\xaa\xbe\xe3\x29\x4b\xa2\x8e\x39\x5d\x3c\x92\
\x2a\x45\x27\xba\xf7\x5b\xdc\x7b\xf7\x5e\xe8\xa0\xfc\xf4\xf9\xab\
\xd5\x9f\xcb\xbf\xe2\x7f\x6b\x7c\xc4\xee\xac\x07\x60\x6e\x8e\xb2\
\xe9\xff\x00\xee\x37\xf7\x97\x05\xd5\xd8\xad\xbb\x9a\xdf\x75\xdf\
\xe9\x03\xb2\x76\x77\x57\x61\xbf\x81\x63\x37\x66\xea\xd9\x3b\x7e\
\xa7\xed\xb7\x06\xf6\xa4\x9a\xab\xee\x32\x94\xba\x28\xe3\x95\xd3\
\xc9\x22\xa4\x52\x7b\xaf\x75\xae\x1f\xfd\x06\xa7\xfc\xac\xff\x00\
\xe7\xc1\xfc\xfe\xff\x00\xd1\x59\xf1\xdb\xff\x00\xba\xa7\xdf\xba\
\xf7\x46\xff\x00\xe0\x5f\xfc\x29\xfb\xe0\x37\xf3\x10\xf9\x61\xd5\
\x3f\x0e\xfa\x57\xa8\xbe\x5f\xed\x7e\xcd\xee\x0f\xef\xcf\xf7\x6b\
\x3b\xda\x3b\x07\xa6\x30\xbb\x12\x87\xfd\x1f\xf5\xb6\xf1\xed\x1c\
\xcf\xf1\xdc\x9e\xd3\xef\xfd\xed\xb8\x29\xbe\xe7\x6f\xec\x9a\xb8\
\x69\x7e\xdf\x17\x55\xae\xb2\x48\x91\xfc\x71\xb3\xcb\x1f\xba\xf7\
\x47\xfb\xf9\xcb\xfc\x2a\xed\x3f\xe6\x21\xfc\xb6\xbe\x47\xfc\x3b\
\xe9\x5c\xff\x00\x5f\xed\x7e\xcd\xee\x0f\xf4\x41\xfd\xda\xce\xf6\
\x8e\x57\x71\x61\x76\x25\x0f\xfa\x3f\xef\x9e\xae\xed\x1c\xcf\xf1\
\xdc\x9e\xd3\xda\xbb\xdb\x70\x53\x7d\xce\xdf\xd9\x35\x70\xd2\xfd\
\xbe\x2e\xab\x5d\x64\x91\x23\xf8\xe3\x67\x96\x3f\x75\xee\xb4\xc5\
\xf8\xb9\xfc\x95\xbe\x53\x7f\xc2\x77\xbb\xd7\x63\x7f\x38\x9f\x9a\
\xbb\xfb\xa0\x3b\x3f\xe3\x37\xc4\x0f\xef\x37\xfa\x4b\xd8\xdf\x17\
\x37\x4f\x62\xef\x5e\xf5\xce\x7f\xb3\x01\xb3\xb7\x07\xc5\xcd\x9b\
\xfd\xc6\xdb\x3d\xb1\xd5\x7d\x27\xd7\xf9\x3f\xe1\x9b\xff\x00\xbb\
\x71\x55\x99\x3f\xbf\xdc\xf8\xcf\x0e\x1e\x9e\xae\x58\x3e\xe2\xa6\
\x38\x69\x27\xf7\x5e\xeb\x69\xbf\xe5\x81\xff\x00\x0a\x14\xf8\x61\
\xfc\xd9\x3b\xf3\x77\x7c\x74\xf8\xe9\xd6\x5f\x27\xf6\x5e\xf6\xd9\
\x7d\x41\x9f\xee\xac\xa6\x53\xba\xb6\x5f\x54\xed\xcd\xad\x51\xb5\
\xb6\xe6\xf4\xd8\x1b\x16\xb6\x82\x82\xb7\x62\xf7\x57\x63\xe5\xa5\
\xdc\x12\xe5\xbb\x1e\x86\x48\xa2\x92\x86\x2a\x66\xa6\x8a\x76\x69\
\xd5\xd6\x38\xe5\xf7\x5e\xea\xf7\x97\x96\x1f\xeb\xff\x00\xbd\x73\
\xef\xdd\x7b\xac\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\
\xaf\xff\xd5\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xc5\xff\x00\x49\xff\x00\x61\xfe\xf6\x3d\xfb\xaf\x75\xf2\x05\
\xff\x00\x85\x45\xff\x00\xdb\xf5\x7e\x72\xff\x00\xe5\xb3\x7f\xf0\
\x1e\xfc\x7d\xf7\xee\xbd\xd7\xd3\xdb\xf9\x4f\xff\x00\xdb\xac\xff\
\x00\x96\xa7\xfe\x28\x0f\xc3\x7f\xfe\x07\x6e\xb9\xf7\xee\xbd\xd1\
\xfe\xf7\xee\xbd\xd7\xce\xa3\xe6\xe7\xfc\x24\x5f\xf9\x91\x7c\x93\
\xf9\x9f\xf2\xef\xe4\x5e\xc5\xee\xcf\x84\x38\xad\x93\xdf\xbf\x27\
\xfb\xf7\xba\xb6\x76\x2f\x76\x76\x47\x7c\x50\xee\x9c\x6e\xd6\xed\
\x4e\xd6\xdd\x9b\xeb\x6f\x50\x6e\x5a\x2c\x3f\xc6\xbc\xee\x26\x8f\
\x70\x51\xe2\x73\xb0\xc7\x59\x15\x2d\x75\x65\x34\x75\x2a\xeb\x14\
\xf3\x20\x59\x1b\xdd\x7b\xad\x31\x7e\x42\x74\xae\xe9\xf8\xd9\xdf\
\x9d\xe1\xf1\xd3\x7d\x57\xed\xfc\xae\xf6\xe8\x2e\xdf\xec\xbe\x95\
\xde\x39\x4d\xa7\x55\x91\xae\xda\xd9\x2d\xd3\xd5\x7b\xd3\x35\xb1\
\x77\x0d\x7e\xda\xad\xcc\x62\xb0\x59\x6a\xcd\xbf\x59\x96\xc1\x4d\
\x25\x1c\xb5\x54\x34\x75\x32\x53\x32\x34\xb0\x42\xe5\xa3\x5f\x75\
\xee\xbe\xd2\x7f\xca\x7f\xfe\xdd\x67\xfc\xb5\x3f\xf1\x40\x7e\x1b\
\xff\x00\xf0\x3b\x75\xcf\xbf\x75\xee\xa9\x8b\xe4\x27\xfc\x2b\xa3\
\xf9\x6e\xfc\x6c\xef\xce\xf0\xf8\xe9\xbe\xba\x4f\xe6\xf6\x57\x7b\
\x74\x17\x6f\xf6\x5f\x4a\xef\x1c\xa6\xd3\xeb\x7e\x87\xae\xda\xd9\
\x2d\xd3\xd5\x7b\xd3\x35\xb1\x77\x0d\x7e\xda\xad\xcc\x7c\x94\xc1\
\x65\xab\x36\xfd\x66\x5b\x05\x34\x94\x72\xd5\x50\xd1\xd4\xc9\x4c\
\xc8\xd2\xc1\x0b\x96\x8d\x7d\xd7\xba\xf9\xa4\xfc\xdc\xee\xad\xad\
\xf2\x4f\xe6\x7f\xcb\xbf\x91\x7b\x16\x83\x70\x62\xb6\x4f\x7e\xfc\
\x9f\xef\xde\xea\xd9\xd8\xbd\xd9\x4b\x8e\xa1\xdd\x38\xdd\xad\xda\
\x9d\xad\xbb\x37\xd6\xde\xa0\xdc\xb4\x58\x7c\xae\x77\x13\x47\xb8\
\x28\xf1\x39\xd8\x63\xac\x8a\x96\xba\xb2\x9a\x3a\x95\x75\x8a\x79\
\x90\x2c\x8d\xee\xbd\xd7\xd9\x4f\xf9\x4f\xff\x00\xdb\xac\xff\x00\
\x96\xa7\xfe\x28\x0f\xc3\x7f\xfe\x07\x6e\xb9\xf7\xee\xbd\xd6\x94\
\xdf\x37\x3f\xe1\x22\xff\x00\xcc\x8b\xe4\x9f\xcc\xff\x00\x97\x7f\
\x22\xf6\x2f\x76\x7c\x21\xc5\x6c\x9e\xfd\xf9\x3f\xdf\xbd\xd5\xb3\
\xb1\x7b\xb3\xb2\x3b\xe2\x87\x74\xe3\x76\xb7\x6a\x76\xb6\xec\xdf\
\x5b\x7a\x83\x72\xd1\x61\xfe\x35\xe7\x71\x34\x7b\x82\x8f\x13\x9d\
\x86\x3a\xc8\xa9\x6b\xab\x29\xa3\xa9\x57\x58\xa7\x99\x02\xc8\xde\
\xeb\xdd\x69\x8b\xf2\x13\xa5\x77\x4f\xc6\xce\xfc\xef\x0f\x8e\x9b\
\xea\xbf\x6f\xe5\x77\xb7\x41\x76\xff\x00\x65\xf4\xae\xf1\xca\x6d\
\x3a\xac\x8d\x76\xd6\xc9\x6e\x9e\xab\xde\x99\xad\x8b\xb8\x6b\xf6\
\xd5\x6e\x63\x15\x82\xcb\x56\x6d\xfa\xcc\xb6\x0a\x69\x28\xe5\xaa\
\xa1\xa3\xa9\x92\x99\x91\xa5\x82\x17\x2d\x1a\xfb\xaf\x75\xb4\xdf\
\xfd\x01\x59\xfc\xd3\x3f\xe7\xfe\x7c\x01\xff\x00\xd1\xa7\xf2\x27\
\xff\x00\xb9\x5b\xdf\xba\xf7\x5e\xff\x00\xa0\x2b\x3f\x9a\x67\xfc\
\xff\x00\xcf\x80\x3f\xfa\x34\xfe\x44\xff\x00\xf7\x2b\x7b\xf7\x5e\
\xeb\xe9\xed\xef\xdd\x7b\xaf\x98\x4f\xfd\x01\x59\xfc\xd3\x3f\xe7\
\xfe\x7c\x01\xff\x00\xd1\xa7\xf2\x27\xff\x00\xb9\x5b\xdf\xba\xf7\
\x57\xf9\xff\x00\x41\xa9\xff\x00\x2b\x3f\xf9\xf0\x7f\x3f\xbf\xf4\
\x56\x7c\x76\xff\x00\xee\xa9\xf7\xee\xbd\xd7\xcc\x27\xdf\xba\xf7\
\x5f\x4f\x6f\xfa\x0d\x4f\xf9\x59\xff\x00\xcf\x83\xf9\xfd\xff\x00\
\xa2\xb3\xe3\xb7\xff\x00\x75\x4f\xbf\x75\xee\xb6\xfa\xf7\xee\xbd\
\xd6\xa0\xbf\xf4\x1a\x9f\xf2\xb3\xff\x00\x9f\x07\xf3\xfb\xff\x00\
\x45\x67\xc7\x6f\xfe\xea\x9f\x7e\xeb\xdd\x0b\xff\x00\x1e\xff\x00\
\xe1\x5d\x1f\xcb\x77\xe4\x9f\x7e\x74\x7f\xc7\x4d\x8b\xd2\x7f\x37\
\xb1\x5b\xdb\xbf\x7b\x7f\xad\x3a\x57\x67\x65\x37\x67\x5b\xf4\x3d\
\x0e\xd6\xc6\xee\x9e\xd4\xde\x98\x5d\x8b\xb7\xab\xf7\x2d\x6e\x1f\
\xe4\xa6\x77\x2d\x47\xb7\xe8\xf2\xd9\xd8\x64\xac\x96\x96\x86\xb2\
\xa6\x3a\x65\x76\x8a\x09\x9c\x2c\x6d\xee\xbd\xd5\xce\xff\x00\x36\
\x0f\xfb\x75\x9f\xf3\x2b\xff\x00\xc5\x01\xf9\x91\xff\x00\xc0\xed\
\xd8\xde\xfd\xd7\xba\xf8\xb6\x7c\x7b\xe9\x5d\xd3\xf2\x4f\xbf\x3a\
\x3f\xe3\xa6\xc5\xaf\xdb\xf8\xad\xed\xdf\xbd\xbf\xd6\x9d\x2b\xb3\
\xb2\x9b\xb2\xab\x23\x43\xb5\xb1\xbb\xa7\xb5\x37\xa6\x17\x62\xed\
\xea\xfd\xcb\x5b\x87\xc5\x67\x72\xd4\x7b\x7e\x8f\x2d\x9d\x86\x4a\
\xc9\x69\x68\x6b\x2a\x63\xa6\x57\x68\xa0\x99\xc2\xc6\xde\xeb\xdd\
\x6d\xb5\xd4\xff\x00\xf0\x98\x1f\x9f\x3f\xcb\x63\xb4\xfa\xd3\xf9\
\x8b\x77\x9f\x6e\xfc\x40\xdd\x7d\x27\xf0\x17\xb0\x36\x6f\xcd\x5e\
\xe2\xda\xfd\x4f\xbf\xbb\x9f\x3b\xda\x7b\x93\xab\x3e\x2c\x6e\x2c\
\x6f\x79\xf6\x0e\x03\xad\x30\x9b\xc3\xa0\x36\x26\xd2\xcc\x76\x06\
\x63\x69\x6c\x4a\xba\x7c\x35\x2e\x53\x39\x86\xc7\x54\x64\x64\x86\
\x3a\x9a\xea\x48\x59\xea\x23\xf7\x5e\xeb\x61\xcf\x8f\x7f\xf0\xae\
\x8f\xe5\xbb\xf2\x4f\xbf\x3a\x3f\xe3\xa6\xc5\xe9\x3f\x9b\xd8\xad\
\xed\xdf\xbd\xbf\xd6\x9d\x2b\xb3\xb2\x9b\xb3\xad\xfa\x1e\x87\x6b\
\x63\x77\x4f\x6a\x6f\x4c\x2e\xc5\xdb\xd5\xfb\x96\xb7\x0f\xf2\x53\
\x3b\x96\xa3\xdb\xf4\x79\x6c\xec\x32\x56\x4b\x4b\x43\x59\x53\x1d\
\x32\xbb\x45\x04\xce\x16\x36\xf7\x5e\xea\xe7\x7f\x9b\x07\xfd\xba\
\xcf\xf9\x95\xff\x00\xe2\x80\xfc\xc8\xff\x00\xe0\x76\xec\x6f\x7e\
\xeb\xdd\x7c\x5b\x3e\x3d\xf4\xae\xe9\xf9\x27\xdf\x9d\x1f\xf1\xd3\
\x62\xd7\xed\xfc\x56\xf6\xef\xde\xdf\xeb\x4e\x95\xd9\xd9\x4d\xd9\
\x55\x91\xa1\xda\xd8\xdd\xd3\xda\x9b\xd3\x0b\xb1\x76\xf5\x7e\xe5\
\xad\xc3\xe2\xb3\xb9\x6a\x3d\xbf\x47\x96\xce\xc3\x25\x64\xb4\xb4\
\x35\x95\x31\xd3\x2b\xb4\x50\x4c\xe1\x63\x6f\x75\xee\xb6\x3c\xf9\
\x09\xff\x00\x09\x17\xfe\x64\x5f\x1b\x3a\x0f\xbc\x3e\x45\xef\xae\
\xec\xf8\x43\x95\xd9\x3d\x05\xd4\x1d\x97\xdd\x5b\xc7\x17\xb4\xfb\
\x23\xbe\x2b\xb7\x4e\x4b\x6b\x75\x5e\xcb\xcd\x6f\xad\xc3\x41\xb6\
\xa8\xb3\x1f\x1a\xf0\x58\x9a\xcd\xc1\x59\x89\xc1\x4d\x1d\x1c\x55\
\x55\xd4\x74\xd2\x54\xb2\x2c\xb3\xc2\x85\xa4\x5f\x75\xee\xa8\x0f\
\xe1\x1f\x75\x6d\x6f\x8d\x9f\x33\xfe\x22\x7c\x8b\xdf\x54\x1b\x83\
\x2b\xb2\x7a\x0b\xe4\xff\x00\x41\x77\x56\xf1\xc5\xed\x3a\x5c\x75\
\x76\xe9\xc9\x6d\x6e\xab\xed\x6d\xa7\xbe\xb7\x0d\x06\xda\xa2\xcc\
\x65\x70\x58\x9a\xcd\xc1\x59\x89\xc1\x4d\x1d\x1c\x55\x55\xd4\x74\
\xd2\x54\xb2\x2c\xb3\xc2\x85\xa4\x5f\x75\xee\xbe\x96\xdf\x1e\xff\
\x00\xe1\x5d\x1f\xcb\x77\xe4\x9f\x7e\x74\x7f\xc7\x4d\x8b\xd2\x7f\
\x37\xb1\x5b\xdb\xbf\x7b\x7f\xad\x3a\x57\x67\x65\x37\x67\x5b\xf4\
\x3d\x0e\xd6\xc6\xee\x9e\xd4\xde\x98\x5d\x8b\xb7\xab\xf7\x2d\x6e\
\x1f\xe4\xa6\x77\x2d\x47\xb7\xe8\xf2\xd9\xd8\x64\xac\x96\x96\x86\
\xb2\xa6\x3a\x65\x76\x8a\x09\x9c\x2c\x6d\xee\xbd\xd1\x9f\xff\x00\
\x85\x45\xff\x00\xdb\x8a\xbe\x72\xff\x00\xe5\xb3\x7f\xf0\x61\x7c\
\x7d\xf7\xee\xbd\xd7\xcb\x27\xe0\x5f\xc2\xae\xd3\xfe\x62\x1f\x2c\
\x3a\xa7\xe1\xdf\x4a\xe7\xfa\xff\x00\x6b\xf6\x6f\x70\x7f\x7e\x7f\
\xbb\x59\xde\xd1\xca\xee\x2c\x2e\xc4\xa1\xff\x00\x47\xfd\x6d\xbc\
\x7b\x47\x33\xfc\x77\x27\xb4\xf6\xae\xf6\xdc\x14\xdf\x73\xb7\xf6\
\x4d\x5c\x34\xbf\x6f\x8b\xaa\xd7\x59\x24\x48\xfe\x38\xd9\xe5\x8f\
\xdd\x7b\xad\xae\xfe\x2e\x7f\x25\x6f\x94\xdf\xf0\x9d\xee\xf5\xd8\
\xdf\xce\x27\xe6\xae\xfe\xe8\x0e\xcf\xf8\xcd\xf1\x03\xfb\xcd\xfe\
\x92\xf6\x37\xc5\xcd\xd3\xd8\xbb\xd7\xbd\x73\x9f\xec\xc0\x6c\xed\
\xc1\xf1\x73\x66\xff\x00\x71\xb6\xcf\x6c\x75\x5f\x49\xf5\xfe\x4f\
\xf8\x66\xff\x00\xee\xdc\x55\x66\x4f\xef\xf7\x3e\x33\xc3\x87\xa7\
\xab\x96\x0f\xb8\xa9\x8e\x1a\x49\xfd\xd7\xba\xd8\xf3\xe0\x5f\xfc\
\x29\xfb\xe0\x37\xf3\x10\xf9\x61\xd5\x3f\x0e\xfa\x57\xa8\xbe\x5f\
\xed\x7e\xcd\xee\x0f\xef\xcf\xf7\x6b\x3b\xda\x3b\x07\xa6\x30\xbb\
\x12\x87\xfd\x1f\xf5\xb6\xf1\xed\x1c\xcf\xf1\xdc\x9e\xd3\xef\xfd\
\xed\xb8\x29\xbe\xe7\x6f\xec\x9a\xb8\x69\x7e\xdf\x17\x55\xae\xb2\
\x48\x91\xfc\x71\xb3\xcb\x1f\xba\xf7\x5b\x1d\xfb\xf7\x5e\xea\xb0\
\xbf\x9c\xbf\xc2\xae\xd3\xfe\x62\x1f\xcb\x6b\xe4\x7f\xc3\xbe\x95\
\xcf\xf5\xfe\xd7\xec\xde\xe0\xff\x00\x44\x1f\xdd\xac\xef\x68\xe5\
\x77\x16\x17\x62\x50\xff\x00\xa3\xfe\xf9\xea\xee\xd1\xcc\xff\x00\
\x1d\xc9\xed\x3d\xab\xbd\xb7\x05\x37\xdc\xed\xfd\x93\x57\x0d\x2f\
\xdb\xe2\xea\xb5\xd6\x49\x12\x3f\x8e\x36\x79\x63\xf7\x5e\xeb\xe7\
\x0f\xf3\xd3\xfe\x13\x03\xf3\xe7\xf9\x77\xfc\x4f\xed\x6f\x98\x9d\
\xd5\xdb\xbf\x10\x37\x47\x59\x74\xff\x00\xf7\x1b\xfb\xcb\x82\xea\
\xed\xfd\xdc\xf9\xad\xf7\x5d\xfe\x90\x3b\x27\x67\x75\x76\x1b\xf8\
\x16\x33\x76\x74\x06\xc9\xdb\xf5\x3f\x6d\xb8\x37\xb5\x24\xd5\x5f\
\x71\x94\xa5\xd1\x47\x1c\xae\x9e\x49\x15\x22\x93\xdd\x7b\xa2\x03\
\xfc\x9a\x3e\x6a\xf5\x67\xf2\xef\xfe\x64\xbf\x1c\x3e\x62\x77\x56\
\x03\xb0\x37\x47\x59\x74\xff\x00\xfa\x5f\xfe\xf2\xe0\xba\xbb\x15\
\xb7\x73\x5b\xee\xbb\xfd\x20\x74\x37\x68\xf5\x76\x1b\xf8\x16\x33\
\x76\x6e\xad\x93\xb7\xea\x7e\xdb\x70\x6f\x6a\x49\xaa\xbe\xe3\x29\
\x4b\xa2\x8e\x39\x5d\x3c\x92\x2a\x45\x27\xba\xf7\x5b\xdc\xff\x00\
\xd0\x6a\x7f\xca\xcf\xfe\x7c\x1f\xcf\xef\xfd\x15\x9f\x1d\xbf\xfb\
\xaa\x7d\xfb\xaf\x74\x00\x7c\xa3\xfe\x75\x3f\x16\x7f\xe1\x44\x3d\
\x15\xbe\x7f\x93\xb7\xc2\xad\x83\xdf\xfd\x61\xf2\x67\xe5\xff\x00\
\xf7\x67\xfd\x1a\x6f\x9f\x94\x7b\x5b\xae\xb6\x57\x45\x60\xff\x00\
\xd9\x7f\xde\x3b\x7f\xe5\x1e\xf2\xfe\xfc\xee\x6e\xa7\xed\x4e\xec\
\xec\x0c\x67\xf1\x3d\x81\xd2\x59\x5a\x3c\x67\xd8\x6d\x8c\x9f\x9b\
\x31\x51\x49\x14\xff\x00\x6f\x4d\x24\xd5\x70\x7b\xaf\x74\x2f\xff\
\x00\xc2\x7a\xff\x00\xe1\x3d\x7f\x33\xff\x00\x94\xdf\xcc\xfe\xcd\
\xf9\x17\xf2\x2f\xb3\x7e\x30\x6f\x4d\x93\xbd\x3e\x30\x6f\x4e\x95\
\xc5\xe2\xfa\x57\x7a\x76\xb6\xe3\xdd\x34\xfb\xa7\x71\xf6\xb7\x4a\
\xef\xaa\x2a\xfa\xfa\x2d\xf5\xd2\xbd\x71\x89\x8b\x6f\xc5\x89\xeb\
\x8a\xe8\xe5\x96\x3a\xe9\x6a\x56\xa6\x58\x15\x60\x64\x69\x24\x8b\
\xdd\x7b\xad\xc7\x17\x86\x1f\xeb\xff\x00\xbd\xf1\xef\xdd\x7b\xac\
\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\xff\xd6\xdf\
\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xc5\xff\x00\
\x4f\xfa\xe7\xfe\x37\xff\x00\x11\xef\xdd\x7b\xad\x10\x7f\x9c\xbf\
\xfc\x26\x07\xe7\xcf\xf3\x10\xfe\x64\xbf\x23\xfe\x62\x74\xaf\x6e\
\xfc\x40\xda\xfd\x65\xdc\x1f\xe8\x83\xfb\xb5\x82\xed\x1d\xfd\xdc\
\xf8\x5d\xf7\x43\xfe\x8f\xfa\x1b\xab\xba\xbb\x33\xfc\x77\x19\xb4\
\xfa\x03\x7b\x6d\xfa\x6f\xb9\xdc\x1b\x26\xae\x6a\x5f\xb7\xca\x55\
\x6b\xa3\x92\x27\x7f\x1c\x8c\xf1\x47\xee\xbd\xd6\xe3\x3f\x08\xfa\
\x57\x74\xfc\x6c\xf8\x61\xf1\x13\xe3\xa6\xfa\xaf\xdb\xf9\x5d\xed\
\xd0\x5f\x18\x3a\x0b\xa5\x77\x8e\x53\x69\xd5\x64\x6b\xb6\xb6\x4b\
\x74\xf5\x5f\x54\xed\x3d\x8b\xb8\x6b\xf6\xd5\x6e\x63\x15\x82\xcb\
\x56\x6d\xfa\xcc\xb6\x0a\x69\x28\xe5\xaa\xa1\xa3\xa9\x92\x99\x91\
\xa5\x82\x17\x2d\x1a\xfb\xaf\x75\x40\x7f\x21\x3f\xe1\x5d\x1f\xcb\
\x77\xe3\x67\x7e\x77\x87\xc7\x4d\xf5\xd2\x7f\x37\xb2\xbb\xdb\xa0\
\xbb\x7f\xb2\xfa\x57\x78\xe5\x36\x9f\x5b\xf4\x3d\x76\xd6\xc9\x6e\
\x9e\xab\xde\x99\xad\x8b\xb8\x6b\xf6\xd5\x6e\x63\xe4\xa6\x0b\x2d\
\x59\xb7\xeb\x32\xd8\x29\xa4\xa3\x96\xaa\x86\x8e\xa6\x4a\x66\x46\
\x96\x08\x5c\xb4\x6b\xee\xbd\xd6\xc7\x9f\x1e\xfb\xab\x6b\x7c\x93\
\xe8\x3e\x8f\xf9\x17\xb1\x68\x37\x06\x2b\x64\xf7\xef\x50\x75\xa7\
\x75\x6c\xec\x5e\xec\xa5\xc7\x50\xee\x9c\x6e\xd6\xed\x4d\x97\x85\
\xdf\x5b\x7a\x83\x72\xd1\x61\xf2\xb9\xdc\x4d\x1e\xe0\xa3\xc4\xe7\
\x61\x8e\xb2\x2a\x5a\xea\xca\x68\xea\x55\xd6\x29\xe6\x40\xb2\x37\
\xba\xf7\x5f\x16\xcf\xe6\xc1\xff\x00\x6f\x4c\xfe\x65\x7f\xf8\xbf\
\xdf\x32\x3f\xf8\x22\x7b\x1b\xdf\xba\xf7\x5b\xac\xfc\x23\xff\x00\
\x85\x74\x7f\x2d\xdf\x8d\x9f\x0c\x3e\x22\x7c\x74\xdf\x5d\x27\xf3\
\x7b\x2b\xbd\xba\x0b\xe3\x07\x41\x74\xae\xf1\xca\x6d\x3e\xb7\xe8\
\x7a\xed\xad\x92\xdd\x3d\x57\xd5\x3b\x4f\x62\xee\x1a\xfd\xb5\x5b\
\x98\xf9\x29\x82\xcb\x56\x6d\xfa\xcc\xb6\x0a\x69\x28\xe5\xaa\xa1\
\xa3\xa9\x92\x99\x91\xa5\x82\x17\x2d\x1a\xfb\xaf\x75\x5c\x3d\xb1\
\xff\x00\x09\x81\xf9\xf3\xfc\xc9\xfb\x4f\xb2\xff\x00\x98\xb7\x46\
\x76\xef\xc4\x0d\xa9\xd2\x7f\x3e\xbb\x03\x79\x7c\xd5\xe9\xdd\xaf\
\xdb\x1b\xfb\xb9\xf0\x5d\xa7\xb6\xfa\xb3\xe5\x3e\xe2\xc9\x77\x9f\
\x5f\x60\x3b\x2f\x09\xb3\xfa\x03\x7d\xed\x2c\x3f\x60\x61\xf6\x96\
\xfb\xa4\xa7\xcc\xd2\xe2\xf3\x99\x9c\x75\x3e\x46\x39\xa3\xa6\xae\
\xab\x85\x52\xa2\x4f\x75\xee\x90\x1f\xf4\x05\x67\xf3\x4c\xff\x00\
\x9f\xf9\xf0\x07\xff\x00\x46\x9f\xc8\x9f\xfe\xe5\x6f\x7e\xeb\xdd\
\x5d\xef\x53\xff\x00\xc2\x9f\xbe\x03\x7f\x2d\x8e\xac\xeb\x4f\xe5\
\xd3\xde\x7d\x45\xf2\xff\x00\x75\xf7\x67\xc0\x5e\xbf\xd9\xbf\x0a\
\xbb\x8b\x74\x75\x3e\xc1\xe9\x8c\xef\x56\x6e\x4e\xd3\xf8\xb1\xb7\
\x71\xbd\x19\xd8\x39\xfe\xb4\xcd\xef\x0e\xff\x00\xd8\x9b\xb7\x31\
\xd7\xf9\x8d\xdb\xb1\x2a\xea\x30\xd5\x59\x4c\x1e\x1b\x23\x51\x8e\
\x92\x19\x2a\x68\x69\x26\x67\xa7\x8f\xdd\x7b\xad\xb6\xbe\x3d\xf7\
\x56\xd6\xf9\x27\xd0\x7d\x1f\xf2\x2f\x62\xd0\x6e\x0c\x56\xc9\xef\
\xde\xa0\xeb\x4e\xea\xd9\xd8\xbd\xd9\x4b\x8e\xa1\xdd\x38\xdd\xad\
\xda\x9b\x2f\x0b\xbe\xb6\xf5\x06\xe5\xa2\xc3\xe5\x73\xb8\x9a\x3d\
\xc1\x47\x89\xce\xc3\x1d\x64\x54\xb5\xd5\x94\xd1\xd4\xab\xac\x53\
\xcc\x81\x64\x6f\x75\xee\xbe\x2d\x9f\xcd\x83\xfe\xde\x99\xfc\xca\
\xff\x00\xf1\x7f\xbe\x64\x7f\xf0\x44\xf6\x37\xbf\x75\xee\xbe\xde\
\x5e\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\
\xeb\xe0\x1f\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\x6f\xaf\xfa\x02\xb3\
\xf9\xa6\x7f\xcf\xfc\xf8\x03\xff\x00\xa3\x4f\xe4\x4f\xff\x00\x72\
\xb7\xbf\x75\xee\xbe\x9e\xde\xfd\xd7\xba\xf9\x84\xff\x00\xd0\x15\
\x9f\xcd\x33\xfe\x7f\xe7\xc0\x1f\xfd\x1a\x7f\x22\x7f\xfb\x95\xbd\
\xfb\xaf\x74\x67\xfe\x11\xff\x00\xc2\x45\xff\x00\x99\x17\xc6\xcf\
\x99\xff\x00\x11\x3e\x45\xef\xae\xec\xf8\x43\x95\xd9\x3d\x05\xf2\
\x7f\xa0\xbb\xab\x78\xe2\xf6\x9f\x64\x77\xc5\x76\xe9\xc9\x6d\x6e\
\xab\xed\x6d\xa7\xbe\xb7\x0d\x06\xda\xa2\xcc\x7c\x6b\xc1\x62\x6b\
\x37\x05\x66\x27\x05\x34\x74\x71\x55\x57\x51\xd3\x49\x52\xc8\xb2\
\xcf\x0a\x16\x91\x7d\xd7\xba\xdd\x67\xf9\xb0\x7f\xdb\xac\xff\x00\
\x99\x5f\xfe\x28\x0f\xcc\x8f\xfe\x07\x6e\xc6\xf7\xee\xbd\xd7\xc6\
\xb3\xe1\x1f\x75\x6d\x6f\x8d\x9f\x33\xfe\x22\x7c\x8b\xdf\x54\x1b\
\x83\x2b\xb2\x7a\x0b\xe4\xff\x00\x41\x77\x56\xf1\xc5\xed\x3a\x5c\
\x75\x76\xe9\xc9\x6d\x6e\xab\xed\x6d\xa7\xbe\xb7\x0d\x06\xda\xa2\
\xcc\x65\x70\x58\x9a\xcd\xc1\x59\x89\xc1\x4d\x1d\x1c\x55\x55\xd4\
\x74\xd2\x54\xb2\x2c\xb3\xc2\x85\xa4\x5f\x75\xee\xbe\x83\x1d\xb1\
\xff\x00\x0a\x7e\xf8\x0d\xfc\xc9\xfa\xb3\xb2\xff\x00\x97\x4f\x46\
\x75\x17\xcb\xfd\xa9\xdd\x9f\x3e\xba\xff\x00\x79\x7c\x2a\xe9\xdd\
\xd1\xdb\x1b\x07\xa6\x30\x5d\x59\xb6\xfb\x4f\xe5\x3e\xdd\xc9\x74\
\x67\x5f\x67\xfb\x2f\x37\xb3\xfb\xff\x00\x7d\xee\xdc\x3f\x5f\xe1\
\xf7\x6e\xfb\xa4\xa8\xcc\xd5\x62\xf0\x79\x9c\x8d\x3e\x3a\x39\xa4\
\xa6\xa1\xab\x99\x52\x9e\x4f\x75\xee\xab\x87\xe1\x1f\xfc\x24\x5f\
\xf9\x91\x7c\x6c\xf9\x9f\xf1\x13\xe4\x5e\xfa\xee\xcf\x84\x39\x5d\
\x93\xd0\x5f\x27\xfa\x0b\xba\xb7\x8e\x2f\x69\xf6\x47\x7c\x57\x6e\
\x9c\x96\xd6\xea\xbe\xd6\xda\x7b\xeb\x70\xd0\x6d\xaa\x2c\xc7\xc6\
\xbc\x16\x26\xb3\x70\x56\x62\x70\x53\x47\x47\x15\x55\x75\x1d\x34\
\x95\x2c\x8b\x2c\xf0\xa1\x69\x17\xdd\x7b\xad\xd6\x7f\x9b\x07\xfd\
\xba\xcf\xf9\x95\xff\x00\xe2\x80\xfc\xc8\xff\x00\xe0\x76\xec\x6f\
\x7e\xeb\xdd\x7c\x6b\x3e\x11\xf7\x56\xd6\xf8\xd9\xf3\x3f\xe2\x27\
\xc8\xbd\xf5\x41\xb8\x32\xbb\x27\xa0\xbe\x4f\xf4\x17\x75\x6f\x1c\
\x5e\xd3\xa5\xc7\x57\x6e\x9c\x96\xd6\xea\xbe\xd6\xda\x7b\xeb\x70\
\xd0\x6d\xaa\x2c\xc6\x57\x05\x89\xac\xdc\x15\x98\x9c\x14\xd1\xd1\
\xc5\x55\x5d\x47\x4d\x25\x4b\x22\xcb\x3c\x28\x5a\x45\xf7\x5e\xeb\
\xe8\x31\xdb\x1f\xf0\xa7\xef\x80\xdf\xcc\x9f\xab\x3b\x2f\xf9\x74\
\xf4\x67\x51\x7c\xbf\xda\x9d\xd9\xf3\xeb\xaf\xf7\x97\xc2\xae\x9d\
\xdd\x1d\xb1\xb0\x7a\x63\x05\xd5\x9b\x6f\xb4\xfe\x53\xed\xdc\x97\
\x46\x75\xf6\x7f\xb2\xf3\x7b\x3f\xbf\xf7\xde\xed\xc3\xf5\xfe\x1f\
\x76\xef\xba\x4a\x8c\xcd\x56\x2f\x07\x99\xc8\xd3\xe3\xa3\x9a\x4a\
\x6a\x1a\xb9\x95\x29\xe4\xf7\x5e\xeb\x5e\x3f\x90\x9f\xf0\x91\x7f\
\xe6\x45\xf1\xb3\xa0\xfb\xc3\xe4\x5e\xfa\xee\xcf\x84\x39\x5d\x93\
\xd0\x5d\x41\xd9\x7d\xd5\xbc\x71\x7b\x4f\xb2\x3b\xe2\xbb\x74\xe4\
\xb6\xb7\x55\xec\xbc\xd6\xfa\xdc\x34\x1b\x6a\x8b\x31\xf1\xaf\x05\
\x89\xac\xdc\x15\x98\x9c\x14\xd1\xd1\xc5\x55\x5d\x47\x4d\x25\x4b\
\x22\xcb\x3c\x28\x5a\x45\xf7\x5e\xea\x98\xbf\x94\xff\x00\xfd\xbd\
\x33\xf9\x6a\x7f\xe2\xff\x00\x7c\x37\xff\x00\xe0\x89\xeb\x9f\x7e\
\xeb\xdd\x7d\x6d\x7f\x9c\xbf\xc2\xae\xd3\xfe\x62\x1f\xcb\x6b\xe4\
\x7f\xc3\xbe\x95\xcf\xf5\xfe\xd7\xec\xde\xe0\xff\x00\x44\x1f\xdd\
\xac\xef\x68\xe5\x77\x16\x17\x62\x50\xff\x00\xa3\xfe\xf9\xea\xee\
\xd1\xcc\xff\x00\x1d\xc9\xed\x3d\xab\xbd\xb7\x05\x37\xdc\xed\xfd\
\x93\x57\x0d\x2f\xdb\xe2\xea\xb5\xd6\x49\x12\x3f\x8e\x36\x79\x63\
\xf7\x5e\xeb\x4c\x5f\x8b\x9f\xc9\x5b\xe5\x37\xfc\x27\x7b\xbd\x76\
\x37\xf3\x89\xf9\xab\xbf\xba\x03\xb3\xfe\x33\x7c\x40\xfe\xf3\x7f\
\xa4\xbd\x8d\xf1\x73\x74\xf6\x2e\xf5\xef\x5c\xe7\xfb\x30\x1b\x3b\
\x70\x7c\x5c\xd9\xbf\xdc\x6d\xb3\xdb\x1d\x57\xd2\x7d\x7f\x93\xfe\
\x19\xbf\xfb\xb7\x15\x59\x93\xfb\xfd\xcf\x8c\xf0\xe1\xe9\xea\xe5\
\x83\xee\x2a\x63\x86\x92\x7f\x75\xee\x8f\xf7\xca\x3f\xe7\x53\xf1\
\x67\xfe\x14\x43\xd1\x5b\xe7\xf9\x3b\x7c\x2a\xd8\x3d\xff\x00\xd6\
\x1f\x26\x7e\x5f\xff\x00\x76\x7f\xd1\xa6\xf9\xf9\x47\xb5\xba\xeb\
\x65\x74\x56\x0f\xfd\x97\xfd\xe3\xb7\xfe\x51\xef\x2f\xef\xce\xe6\
\xea\x7e\xd4\xee\xce\xc0\xc6\x7f\x13\xd8\x1d\x25\x95\xa3\xc6\x7d\
\x86\xd8\xc9\xf9\xb3\x15\x14\x91\x4f\xf6\xf4\xd2\x4d\x57\x07\xba\
\xf7\x48\x0f\xe4\xd1\xff\x00\x09\x81\xf9\xf3\xfc\xbb\xff\x00\x99\
\x2f\xc7\x0f\x98\x9d\xd5\xdb\xbf\x10\x37\x47\x59\x74\xff\x00\xfa\
\x5f\xfe\xf2\xe0\xba\xbb\x7f\x77\x3e\x6b\x7d\xd7\x7f\xa4\x0e\x86\
\xed\x1e\xae\xc3\x7f\x02\xc6\x6e\xce\x80\xd9\x3b\x7e\xa7\xed\xb7\
\x06\xf6\xa4\x9a\xab\xee\x32\x94\xba\x28\xe3\x95\xd3\xc9\x22\xa4\
\x52\x7b\xaf\x75\xb7\xd7\xcf\x4f\x9a\xbd\x59\xfc\xbb\xfe\x27\xf6\
\xb7\xcc\x4e\xea\xc0\x76\x06\xe8\xeb\x2e\x9f\xfe\xe3\x7f\x79\x70\
\x5d\x5d\x8a\xdb\xb9\xad\xf7\x5d\xfe\x90\x3b\x27\x67\x75\x76\x1b\
\xf8\x16\x33\x76\x6e\xad\x93\xb7\xea\x7e\xdb\x70\x6f\x6a\x49\xaa\
\xbe\xe3\x29\x4b\xa2\x8e\x39\x5d\x3c\x92\x2a\x45\x27\xba\xf7\x5a\
\xe1\xff\x00\xd0\x6a\x7f\xca\xcf\xfe\x7c\x1f\xcf\xef\xfd\x15\x9f\
\x1d\xbf\xfb\xaa\x7d\xfb\xaf\x74\x00\x7c\xa3\xfe\x75\x3f\x16\x7f\
\xe1\x44\x3d\x15\xbe\x7f\x93\xb7\xc2\xad\x83\xdf\xfd\x61\xf2\x67\
\xe5\xff\x00\xf7\x67\xfd\x1a\x6f\x9f\x94\x7b\x5b\xae\xb6\x57\x45\
\x60\xff\x00\xd9\x7f\xde\x3b\x7f\xe5\x1e\xf2\xfe\xfc\xee\x6e\xa7\
\xed\x4e\xec\xec\x0c\x67\xf1\x3d\x81\xd2\x59\x5a\x3c\x67\xd8\x6d\
\x8c\x9f\x9b\x31\x51\x49\x14\xff\x00\x6f\x4d\x24\xd5\x70\x7b\xaf\
\x75\x50\x5f\xf4\x05\x67\xf3\x4c\xff\x00\x9f\xf9\xf0\x07\xff\x00\
\x46\x9f\xc8\x9f\xfe\xe5\x6f\x7e\xeb\xdd\x7b\xfe\x80\xac\xfe\x69\
\x9f\xf3\xff\x00\x3e\x00\xff\x00\xe8\xd3\xf9\x13\xff\x00\xdc\xad\
\xef\xdd\x7b\xa1\xff\x00\xe2\xe7\xf2\x56\xf9\x4d\xff\x00\x09\xde\
\xef\x5d\x8d\xfc\xe2\x7e\x6a\xef\xee\x80\xec\xff\x00\x8c\xdf\x10\
\x3f\xbc\xdf\xe9\x2f\x63\x7c\x5c\xdd\x3d\x8b\xbd\x7b\xd7\x39\xfe\
\xcc\x06\xce\xdc\x1f\x17\x36\x6f\xf7\x1b\x6c\xf6\xc7\x55\xf4\x9f\
\x5f\xe4\xff\x00\x86\x6f\xfe\xed\xc5\x56\x64\xfe\xff\x00\x73\xe3\
\x3c\x38\x7a\x7a\xb9\x60\xfb\x8a\x98\xe1\xa4\x9f\xdd\x7b\xad\xa6\
\xff\x00\x96\x07\xfc\x28\x53\xe1\x87\xf3\x64\xef\xcd\xdd\xf1\xd3\
\xe3\xa7\x59\x7c\x9f\xd9\x7b\xdb\x65\xf5\x06\x7f\xba\xb2\x99\x4e\
\xea\xd9\x7d\x53\xb7\x36\xb5\x46\xd6\xdb\x9b\xd3\x60\x6c\x5a\xda\
\x0a\x0a\xdd\x8b\xdd\x5d\x8f\x96\x97\x70\x4b\x96\xec\x7a\x19\x22\
\x8a\x4a\x18\xa9\x9a\x9a\x29\xd9\xa7\x57\x58\xe3\x97\xdd\x7b\xab\
\xdd\x1f\x51\xfe\xb8\xff\x00\x7b\xf7\xee\xbd\xd6\x7f\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\xd7\xdf\xe3\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\x8e\x4f\xc7\xfb\x1f\xf8\x8f\
\x7e\xeb\xdd\x63\xf7\xee\xbd\xd6\xac\x9f\x21\x3f\xe1\x5d\x1f\xcb\
\x77\xe3\x67\x7e\x77\x87\xc7\x4d\xf5\xd2\x7f\x37\xb2\xbb\xdb\xa0\
\xbb\x7f\xb2\xfa\x57\x78\xe5\x36\x9f\x5b\xf4\x3d\x76\xd6\xc9\x6e\
\x9e\xab\xde\x99\xad\x8b\xb8\x6b\xf6\xd5\x6e\x63\xe4\xa6\x0b\x2d\
\x59\xb7\xeb\x32\xd8\x29\xa4\xa3\x96\xaa\x86\x8e\xa6\x4a\x66\x46\
\x96\x08\x5c\xb4\x6b\xee\xbd\xd7\xcd\x27\xe6\xe7\x75\x6d\x6f\x92\
\x7f\x33\xfe\x5d\xfc\x8b\xd8\xb4\x1b\x83\x15\xb2\x7b\xf7\xe4\xff\
\x00\x7e\xf7\x56\xce\xc5\xee\xca\x5c\x75\x0e\xe9\xc6\xed\x6e\xd4\
\xed\x6d\xd9\xbe\xb6\xf5\x06\xe5\xa2\xc3\xe5\x73\xb8\x9a\x3d\xc1\
\x47\x89\xce\xc3\x1d\x64\x54\xb5\xd5\x94\xd1\xd4\xab\xac\x53\xcc\
\x81\x64\x6f\x75\xee\xb7\xb8\xf8\x47\xff\x00\x0a\xe8\xfe\x5b\xbf\
\x1b\x3e\x18\x7c\x44\xf8\xe9\xbe\xba\x4f\xe6\xf6\x57\x7b\x74\x17\
\xc6\x0e\x82\xe9\x5d\xe3\x94\xda\x7d\x6f\xd0\xf5\xdb\x5b\x25\xba\
\x7a\xaf\xaa\x76\x9e\xc5\xdc\x35\xfb\x6a\xb7\x31\xf2\x53\x05\x96\
\xac\xdb\xf5\x99\x6c\x14\xd2\x51\xcb\x55\x43\x47\x53\x25\x33\x23\
\x4b\x04\x2e\x5a\x35\xf7\x5e\xea\xb8\x7b\x63\xfe\x13\x03\xf3\xe7\
\xf9\x93\xf6\x9f\x65\xff\x00\x31\x6e\x8c\xed\xdf\x88\x1b\x53\xa4\
\xfe\x7d\x76\x06\xf2\xf9\xab\xd3\xbb\x5f\xb6\x37\xf7\x73\xe0\xbb\
\x4f\x6d\xf5\x67\xca\x7d\xc5\x92\xef\x3e\xbe\xc0\x76\x5e\x13\x67\
\xf4\x06\xfb\xda\x58\x7e\xc0\xc3\xed\x2d\xf7\x49\x4f\x99\xa5\xc5\
\xe7\x33\x38\xea\x7c\x8c\x73\x47\x4d\x5d\x57\x0a\xa5\x44\x9e\xeb\
\xdd\x20\x3f\xe8\x0a\xcf\xe6\x99\xff\x00\x3f\xf3\xe0\x0f\xfe\x8d\
\x3f\x91\x3f\xfd\xca\xde\xfd\xd7\xba\xbb\xde\xa7\xff\x00\x85\x3f\
\x7c\x06\xfe\x5b\x1d\x59\xd6\x9f\xcb\xa7\xbc\xfa\x8b\xe5\xfe\xeb\
\xee\xcf\x80\xbd\x7f\xb3\x7e\x15\x77\x16\xe8\xea\x7d\x83\xd3\x19\
\xde\xac\xdc\x9d\xa7\xf1\x63\x6e\xe3\x7a\x33\xb0\x73\xfd\x69\x9b\
\xde\x1d\xff\x00\xb1\x37\x6e\x63\xaf\xf3\x1b\xb7\x62\x55\xd4\x61\
\xaa\xb2\x98\x3c\x36\x46\xa3\x1d\x24\x32\x54\xd0\xd2\x4c\xcf\x4f\
\x1f\xba\xf7\x5b\x6d\x7c\x7b\xee\xad\xad\xf2\x4f\xa0\xfa\x3f\xe4\
\x5e\xc5\xa0\xdc\x18\xad\x93\xdf\xbd\x41\xd6\x9d\xd5\xb3\xb1\x7b\
\xb2\x97\x1d\x43\xba\x71\xbb\x5b\xb5\x36\x5e\x17\x7d\x6d\xea\x0d\
\xcb\x45\x87\xca\xe7\x71\x34\x7b\x82\x8f\x13\x9d\x86\x3a\xc8\xa9\
\x6b\xab\x29\xa3\xa9\x57\x58\xa7\x99\x02\xc8\xde\xeb\xdd\x7c\x5b\
\x3f\x9b\x07\xfd\xbd\x33\xf9\x95\xff\x00\xe2\xff\x00\x7c\xc8\xff\
\x00\xe0\x89\xec\x6f\x7e\xeb\xdd\x7d\x7d\x3f\x94\xff\x00\xfd\xba\
\xcf\xf9\x6a\x7f\xe2\x80\xfc\x37\xff\x00\xe0\x76\xeb\x9f\x7e\xeb\
\xdd\x69\x4d\xf3\x73\xfe\x12\x2f\xfc\xc8\xbe\x49\xfc\xcf\xf9\x77\
\xf2\x2f\x62\xf7\x67\xc2\x1c\x56\xc9\xef\xdf\x93\xfd\xfb\xdd\x5b\
\x3b\x17\xbb\x3b\x23\xbe\x28\x77\x4e\x37\x6b\x76\xa7\x6b\x6e\xcd\
\xf5\xb7\xa8\x37\x2d\x16\x1f\xe3\x5e\x77\x13\x47\xb8\x28\xf1\x39\
\xd8\x63\xac\x8a\x96\xba\xb2\x9a\x3a\x95\x75\x8a\x79\x90\x2c\x8d\
\xee\xbd\xd5\xae\xff\x00\xd0\x6a\x7f\xca\xcf\xfe\x7c\x1f\xcf\xef\
\xfd\x15\x9f\x1d\xbf\xfb\xaa\x7d\xfb\xaf\x75\xef\xfa\x0d\x4f\xf9\
\x59\xff\x00\xcf\x83\xf9\xfd\xff\x00\xa2\xb3\xe3\xb7\xff\x00\x75\
\x4f\xbf\x75\xee\xb6\xfa\xf7\xee\xbd\xd6\xa0\xbf\xf4\x1a\x9f\xf2\
\xb3\xff\x00\x9f\x07\xf3\xfb\xff\x00\x45\x67\xc7\x6f\xfe\xea\x9f\
\x7e\xeb\xdd\x7c\xc2\x7d\xfb\xaf\x75\xb7\xd7\xfd\x01\x59\xfc\xd3\
\x3f\xe7\xfe\x7c\x01\xff\x00\xd1\xa7\xf2\x27\xff\x00\xb9\x5b\xdf\
\xba\xf7\x5f\x4f\x6f\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd6\xac\x9f\x1e\xff\x00\xe1\x5d\x1f\xcb\x77\xe4\x9f\x7e\x74\x7f\
\xc7\x4d\x8b\xd2\x7f\x37\xb1\x5b\xdb\xbf\x7b\x7f\xad\x3a\x57\x67\
\x65\x37\x67\x5b\xf4\x3d\x0e\xd6\xc6\xee\x9e\xd4\xde\x98\x5d\x8b\
\xb7\xab\xf7\x2d\x6e\x1f\xe4\xa6\x77\x2d\x47\xb7\xe8\xf2\xd9\xd8\
\x64\xac\x96\x96\x86\xb2\xa6\x3a\x65\x76\x8a\x09\x9c\x2c\x6d\xee\
\xbd\xd5\xce\xff\x00\x36\x0f\xfb\x75\x9f\xf3\x2b\xff\x00\xc5\x01\
\xf9\x91\xff\x00\xc0\xed\xd8\xde\xfd\xd7\xba\xf8\xb6\x7c\x7b\xe9\
\x5d\xd3\xf2\x4f\xbf\x3a\x3f\xe3\xa6\xc5\xaf\xdb\xf8\xad\xed\xdf\
\xbd\xbf\xd6\x9d\x2b\xb3\xb2\x9b\xb2\xab\x23\x43\xb5\xb1\xbb\xa7\
\xb5\x37\xa6\x17\x62\xed\xea\xfd\xcb\x5b\x87\xc5\x67\x72\xd4\x7b\
\x7e\x8f\x2d\x9d\x86\x4a\xc9\x69\x68\x6b\x2a\x63\xa6\x57\x68\xa0\
\x99\xc2\xc6\xde\xeb\xdd\x6e\x75\xf0\x8f\xfe\x12\x2f\xfc\xc8\xbe\
\x36\x7c\xcf\xf8\x89\xf2\x2f\x7d\x77\x67\xc2\x1c\xae\xc9\xe8\x2f\
\x93\xfd\x05\xdd\x5b\xc7\x17\xb4\xfb\x23\xbe\x2b\xb7\x4e\x4b\x6b\
\x75\x5f\x6b\x6d\x3d\xf5\xb8\x68\x36\xd5\x16\x63\xe3\x5e\x0b\x13\
\x59\xb8\x2b\x31\x38\x29\xa3\xa3\x8a\xaa\xba\x8e\x9a\x4a\x96\x45\
\x96\x78\x50\xb4\x8b\xee\xbd\xd6\xff\x00\x1f\x21\x3b\xab\x6b\x7c\
\x6c\xe8\x3e\xf0\xf9\x17\xbe\xa8\x37\x06\x57\x64\xf4\x17\x50\x76\
\x5f\x75\x6f\x1c\x5e\xd3\xa5\xc7\x57\x6e\x9c\x96\xd6\xea\xbd\x97\
\x9a\xdf\x5b\x86\x83\x6d\x51\x66\x32\xb8\x2c\x4d\x66\xe0\xac\xc4\
\xe0\xa6\x8e\x8e\x2a\xaa\xea\x3a\x69\x2a\x59\x16\x59\xe1\x42\xd2\
\x2f\xba\xf7\x5a\x92\xf6\xc7\xfc\x29\xfb\xe0\x37\xf3\x27\xea\xce\
\xcb\xfe\x5d\x3d\x19\xd4\x5f\x2f\xf6\xa7\x76\x7c\xfa\xeb\xfd\xe5\
\xf0\xab\xa7\x77\x47\x6c\x6c\x1e\x98\xc1\x75\x66\xdb\xed\x3f\x94\
\xfb\x77\x25\xd1\x9d\x7d\x9f\xec\xbc\xde\xcf\xef\xfd\xf7\xbb\x70\
\xfd\x7f\x87\xdd\xbb\xee\x92\xa3\x33\x55\x8b\xc1\xe6\x72\x34\xf8\
\xe8\xe6\x92\x9a\x86\xae\x65\x4a\x79\x3d\xd7\xba\xd7\x8f\xe4\x27\
\xfc\x24\x5f\xf9\x91\x7c\x6c\xe8\x3e\xf0\xf9\x17\xbe\xbb\xb3\xe1\
\x0e\x57\x64\xf4\x17\x50\x76\x5f\x75\x6f\x1c\x5e\xd3\xec\x8e\xf8\
\xae\xdd\x39\x2d\xad\xd5\x7b\x2f\x35\xbe\xb7\x0d\x06\xda\xa2\xcc\
\x7c\x6b\xc1\x62\x6b\x37\x05\x66\x27\x05\x34\x74\x71\x55\x57\x51\
\xd3\x49\x52\xc8\xb2\xcf\x0a\x16\x91\x7d\xd7\xba\xa0\x3f\x84\x7d\
\xd5\xb5\xbe\x36\x7c\xcf\xf8\x89\xf2\x2f\x7d\x50\x6e\x0c\xae\xc9\
\xe8\x2f\x93\xfd\x05\xdd\x5b\xc7\x17\xb4\xe9\x71\xd5\xdb\xa7\x25\
\xb5\xba\xaf\xb5\xb6\x9e\xfa\xdc\x34\x1b\x6a\x8b\x31\x95\xc1\x62\
\x6b\x37\x05\x66\x27\x05\x34\x74\x71\x55\x57\x51\xd3\x49\x52\xc8\
\xb2\xcf\x0a\x16\x91\x7d\xd7\xba\xfa\x0c\x76\xc7\xfc\x29\xfb\xe0\
\x37\xf3\x27\xea\xce\xcb\xfe\x5d\x3d\x19\xd4\x5f\x2f\xf6\xa7\x76\
\x7c\xfa\xeb\xfd\xe5\xf0\xab\xa7\x77\x47\x6c\x6c\x1e\x98\xc1\x75\
\x66\xdb\xed\x3f\x94\xfb\x77\x25\xd1\x9d\x7d\x9f\xec\xbc\xde\xcf\
\xef\xfd\xf7\xbb\x70\xfd\x7f\x87\xdd\xbb\xee\x92\xa3\x33\x55\x8b\
\xc1\xe6\x72\x34\xf8\xe8\xe6\x92\x9a\x86\xae\x65\x4a\x79\x3d\xd7\
\xba\xa8\x1e\xa7\xff\x00\x84\xc0\xfc\xf9\xfe\x5b\x1d\xa7\xd6\x9f\
\xcc\x5b\xbc\xfb\x77\xe2\x06\xeb\xe9\x3f\x80\xbd\x81\xb3\x7e\x6a\
\xf7\x16\xd7\xea\x7d\xfd\xdc\xf9\xde\xd3\xdc\x9d\x59\xf1\x63\x71\
\x63\x7b\xcf\xb0\x70\x1d\x69\x84\xde\x1d\x01\xb1\x36\x96\x63\xb0\
\x33\x1b\x4b\x62\x55\xd3\xe1\xa9\x72\x99\xcc\x36\x3a\xa3\x23\x24\
\x31\xd4\xd7\x52\x42\xcf\x51\x1f\xba\xf7\x57\x7b\xff\x00\x41\xa9\
\xff\x00\x2b\x3f\xf9\xf0\x7f\x3f\xbf\xf4\x56\x7c\x76\xff\x00\xee\
\xa9\xf7\xee\xbd\xd0\x01\xf2\x8f\xf9\xd4\xfc\x59\xff\x00\x85\x10\
\xf4\x56\xf9\xfe\x4e\xdf\x0a\xb6\x0f\x7f\xf5\x87\xc9\x9f\x97\xff\
\x00\xdd\x9f\xf4\x69\xbe\x7e\x51\xed\x6e\xba\xd9\x5d\x15\x83\xff\
\x00\x65\xff\x00\x78\xed\xff\x00\x94\x7b\xcb\xfb\xf3\xb9\xba\x9f\
\xb5\x3b\xb3\xb0\x31\x9f\xc4\xf6\x07\x49\x65\x68\xf1\x9f\x61\xb6\
\x32\x7e\x6c\xc5\x45\x24\x53\xfd\xbd\x34\x93\x55\xc1\xee\xbd\xd1\
\x01\xf8\xb9\xfc\x95\xbe\x53\x7f\xc2\x77\xbb\xd7\x63\x7f\x38\x9f\
\x9a\xbb\xfb\xa0\x3b\x3f\xe3\x37\xc4\x0f\xef\x37\xfa\x4b\xd8\xdf\
\x17\x37\x4f\x62\xef\x5e\xf5\xce\x7f\xb3\x01\xb3\xb7\x07\xc5\xcd\
\x9b\xfd\xc6\xdb\x3d\xb1\xd5\x7d\x27\xd7\xf9\x3f\xe1\x9b\xff\x00\
\xbb\x71\x55\x99\x3f\xbf\xdc\xf8\xcf\x0e\x1e\x9e\xae\x58\x3e\xe2\
\xa6\x38\x69\x27\xf7\x5e\xeb\x63\xcf\x81\x7f\xf0\xa7\xef\x80\xdf\
\xcc\x43\xe5\x87\x54\xfc\x3b\xe9\x5e\xa2\xf9\x7f\xb5\xfb\x37\xb8\
\x3f\xbf\x3f\xdd\xac\xef\x68\xec\x1e\x98\xc2\xec\x4a\x1f\xf4\x7f\
\xd6\xdb\xc7\xb4\x73\x3f\xc7\x72\x7b\x4f\xbf\xf7\xb6\xe0\xa6\xfb\
\x9d\xbf\xb2\x6a\xe1\xa5\xfb\x7c\x5d\x56\xba\xc9\x22\x47\xf1\xc6\
\xcf\x2c\x7e\xeb\xdd\x2f\xff\x00\xe1\x51\x7f\xf6\xe2\xaf\x9c\xbf\
\xf9\x6c\xdf\xfc\x18\x5f\x1f\x7d\xfb\xaf\x75\xf2\xc9\xf8\x17\xf0\
\xab\xb4\xff\x00\x98\x87\xcb\x0e\xa9\xf8\x77\xd2\xb9\xfe\xbf\xda\
\xfd\x9b\xdc\x1f\xdf\x9f\xee\xd6\x77\xb4\x72\xbb\x8b\x0b\xb1\x28\
\x7f\xd1\xff\x00\x5b\x6f\x1e\xd1\xcc\xff\x00\x1d\xc9\xed\x3d\xab\
\xbd\xb7\x05\x37\xdc\xed\xfd\x93\x57\x0d\x2f\xdb\xe2\xea\xb5\xd6\
\x49\x12\x3f\x8e\x36\x79\x63\xf7\x5e\xeb\x6b\xbf\x8b\x9f\xc9\x5b\
\xe5\x37\xfc\x27\x7b\xbd\x76\x37\xf3\x89\xf9\xab\xbf\xba\x03\xb3\
\xfe\x33\x7c\x40\xfe\xf3\x7f\xa4\xbd\x8d\xf1\x73\x74\xf6\x2e\xf5\
\xef\x5c\xe7\xfb\x30\x1b\x3b\x70\x7c\x5c\xd9\xbf\xdc\x6d\xb3\xdb\
\x1d\x57\xd2\x7d\x7f\x93\xfe\x19\xbf\xfb\xb7\x15\x59\x93\xfb\xfd\
\xcf\x8c\xf0\xe1\xe9\xea\xe5\x83\xee\x2a\x63\x86\x92\x7f\x75\xee\
\xb6\x3c\xf8\x17\xff\x00\x0a\x7e\xf8\x0d\xfc\xc4\x3e\x58\x75\x4f\
\xc3\xbe\x95\xea\x2f\x97\xfb\x5f\xb3\x7b\x83\xfb\xf3\xfd\xda\xce\
\xf6\x8e\xc1\xe9\x8c\x2e\xc4\xa1\xff\x00\x47\xfd\x6d\xbc\x7b\x47\
\x33\xfc\x77\x27\xb4\xfb\xff\x00\x7b\x6e\x0a\x6f\xb9\xdb\xfb\x26\
\xae\x1a\x5f\xb7\xc5\xd5\x6b\xac\x92\x24\x7f\x1c\x6c\xf2\xc7\xee\
\xbd\xd6\xc7\x7e\xfd\xd7\xba\xac\x2f\xe7\x2f\xf0\xab\xb4\xff\x00\
\x98\x87\xf2\xda\xf9\x1f\xf0\xef\xa5\x73\xfd\x7f\xb5\xfb\x37\xb8\
\x3f\xd1\x07\xf7\x6b\x3b\xda\x39\x5d\xc5\x85\xd8\x94\x3f\xe8\xff\
\x00\xbe\x7a\xbb\xb4\x73\x3f\xc7\x72\x7b\x4f\x6a\xef\x6d\xc1\x4d\
\xf7\x3b\x7f\x64\xd5\xc3\x4b\xf6\xf8\xba\xad\x75\x92\x44\x8f\xe3\
\x8d\x9e\x58\xfd\xd7\xba\xa2\x2f\xf8\x4f\x5f\xfc\x27\xaf\xe6\x7f\
\xf2\x9b\xf9\x9f\xd9\xbf\x22\xfe\x45\xf6\x6f\xc6\x0d\xe9\xb2\x77\
\xa7\xc6\x0d\xe9\xd2\xb8\xbc\x5f\x4a\xef\x4e\xd6\xdc\x7b\xa6\x9f\
\x74\xee\x3e\xd6\xe9\x5d\xf5\x45\x5f\x5f\x45\xbe\xba\x57\xae\x31\
\x31\x6d\xf8\xb1\x3d\x71\x5d\x1c\xb2\xc7\x5d\x2d\x4a\xd4\xcb\x02\
\xac\x0c\x8d\x24\x91\x7b\xaf\x75\xb8\xe2\xfe\xa1\xfe\xfb\xf1\xef\
\xdd\x7b\xac\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\
\xff\xd0\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xc1\xfe\x83\xfd\x7f\x7e\xeb\xdd\x6b\x7f\xf3\xd3\xfe\x14\xfd\xf0\
\x1b\xf9\x77\xfc\xb0\xed\x6f\x87\x7d\xd5\xd4\x5f\x2f\xf7\x47\x66\
\xf4\xff\x00\xf7\x1b\xfb\xcb\x9d\xea\xed\x83\xd3\x19\xad\x89\x5d\
\xfe\x90\x3a\xdb\x67\x76\x8e\x1b\xf8\x16\x4f\x76\x77\xfe\xc9\xdc\
\x15\x3f\x6d\xb7\xf7\xb5\x24\x35\x5f\x71\x8b\xa5\xd1\x59\x1c\xa8\
\x9e\x48\xd5\x25\x93\xdd\x7b\xad\x60\xfb\x63\xfe\x13\x03\xf3\xe7\
\xf9\x93\xf6\x9f\x65\xff\x00\x31\x6e\x8c\xed\xdf\x88\x1b\x53\xa4\
\xfe\x7d\x76\x06\xf2\xf9\xab\xd3\xbb\x5f\xb6\x37\xf7\x73\xe0\xbb\
\x4f\x6d\xf5\x67\xca\x7d\xc5\x92\xef\x3e\xbe\xc0\x76\x5e\x13\x67\
\xf4\x06\xfb\xda\x58\x7e\xc0\xc3\xed\x2d\xf7\x49\x4f\x99\xa5\xc5\
\xe7\x33\x38\xea\x7c\x8c\x73\x47\x4d\x5d\x57\x0a\xa5\x44\x9e\xeb\
\xdd\x20\x3f\xe8\x0a\xcf\xe6\x99\xff\x00\x3f\xf3\xe0\x0f\xfe\x8d\
\x3f\x91\x3f\xfd\xca\xde\xfd\xd7\xba\xd5\x93\xe4\x27\x4a\xee\x9f\
\x8d\x9d\xf9\xde\x1f\x1d\x37\xd5\x7e\xdf\xca\xef\x6e\x82\xed\xfe\
\xcb\xe9\x5d\xe3\x94\xda\x75\x59\x1a\xed\xad\x92\xdd\x3d\x57\xbd\
\x33\x5b\x17\x70\xd7\xed\xaa\xdc\xc6\x2b\x05\x96\xac\xdb\xf5\x99\
\x6c\x14\xd2\x51\xcb\x55\x43\x47\x53\x25\x33\x23\x4b\x04\x2e\x5a\
\x35\xf7\x5e\xeb\x7f\x8f\x84\x7f\xf0\xae\x8f\xe5\xbb\xf1\xb3\xe1\
\x87\xc4\x4f\x8e\x9b\xeb\xa4\xfe\x6f\x65\x77\xb7\x41\x7c\x60\xe8\
\x2e\x95\xde\x39\x4d\xa7\xd6\xfd\x0f\x5d\xb5\xb2\x5b\xa7\xaa\xfa\
\xa7\x69\xec\x5d\xc3\x5f\xb6\xab\x73\x1f\x25\x30\x59\x6a\xcd\xbf\
\x59\x96\xc1\x4d\x25\x1c\xb5\x54\x34\x75\x32\x53\x32\x34\xb0\x42\
\xe5\xa3\x5f\x75\xee\xb7\x3a\xf8\xf7\xdd\x5b\x5b\xe4\x9f\x41\xf4\
\x7f\xc8\xbd\x8b\x41\xb8\x31\x5b\x27\xbf\x7a\x83\xad\x3b\xab\x67\
\x62\xf7\x65\x2e\x3a\x87\x74\xe3\x76\xb7\x6a\x6c\xbc\x2e\xfa\xdb\
\xd4\x1b\x96\x8b\x0f\x95\xce\xe2\x68\xf7\x05\x1e\x27\x3b\x0c\x75\
\x91\x52\xd7\x56\x53\x47\x52\xae\xb1\x4f\x32\x05\x91\xbd\xd7\xba\
\xd0\x1f\xe6\xe7\xfc\x24\x5f\xf9\x91\x7c\x93\xf9\x9f\xf2\xef\xe4\
\x5e\xc5\xee\xcf\x84\x38\xad\x93\xdf\xbf\x27\xfb\xf7\xba\xb6\x76\
\x2f\x76\x76\x47\x7c\x50\xee\x9c\x6e\xd6\xed\x4e\xd6\xdd\x9b\xeb\
\x6f\x50\x6e\x5a\x2c\x3f\xc6\xbc\xee\x26\x8f\x70\x51\xe2\x73\xb0\
\xc7\x59\x15\x2d\x75\x65\x34\x75\x2a\xeb\x14\xf3\x20\x59\x1b\xdd\
\x7b\xad\xee\x3e\x11\xf4\xae\xe9\xf8\xd9\xf0\xc3\xe2\x27\xc7\x4d\
\xf5\x5f\xb7\xf2\xbb\xdb\xa0\xbe\x30\x74\x17\x4a\xef\x1c\xa6\xd3\
\xaa\xc8\xd7\x6d\x6c\x96\xe9\xea\xbe\xa9\xda\x7b\x17\x70\xd7\xed\
\xaa\xdc\xc6\x2b\x05\x96\xac\xdb\xf5\x99\x6c\x14\xd2\x51\xcb\x55\
\x43\x47\x53\x25\x33\x23\x4b\x04\x2e\x5a\x35\xf7\x5e\xeb\x44\x7f\
\x9b\x9f\xf0\x91\x7f\xe6\x45\xf2\x4f\xe6\x7f\xcb\xbf\x91\x7b\x17\
\xbb\x3e\x10\xe2\xb6\x4f\x7e\xfc\x9f\xef\xde\xea\xd9\xd8\xbd\xd9\
\xd9\x1d\xf1\x43\xba\x71\xbb\x5b\xb5\x3b\x5b\x76\x6f\xad\xbd\x41\
\xb9\x68\xb0\xff\x00\x1a\xf3\xb8\x9a\x3d\xc1\x47\x89\xce\xc3\x1d\
\x64\x54\xb5\xd5\x94\xd1\xd4\xab\xac\x53\xcc\x81\x64\x6f\x75\xee\
\xb7\xb8\xf8\x47\xd2\xbb\xa7\xe3\x67\xc3\x0f\x88\x9f\x1d\x37\xd5\
\x7e\xdf\xca\xef\x6e\x82\xf8\xc1\xd0\x5d\x2b\xbc\x72\x9b\x4e\xab\
\x23\x5d\xb5\xb2\x5b\xa7\xaa\xfa\xa7\x69\xec\x5d\xc3\x5f\xb6\xab\
\x73\x18\xac\x16\x5a\xb3\x6f\xd6\x65\xb0\x53\x49\x47\x2d\x55\x0d\
\x1d\x4c\x94\xcc\x8d\x2c\x10\xb9\x68\xd7\xdd\x7b\xa3\x3f\xef\xdd\
\x7b\xaf\x80\x7f\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\xa7\xb7\xfd\x06\
\xa7\xfc\xac\xff\x00\xe7\xc1\xfc\xfe\xff\x00\xd1\x59\xf1\xdb\xff\
\x00\xba\xa7\xdf\xba\xf7\x54\x07\xff\x00\x40\x56\x7f\x34\xcf\xf9\
\xff\x00\x9f\x00\x7f\xf4\x69\xfc\x89\xff\x00\xee\x56\xf7\xee\xbd\
\xd1\x81\xf8\xd1\xff\x00\x08\x97\xf9\x1f\xd8\x3d\x59\x89\xdd\xbf\
\x28\xfe\x66\xf5\xff\x00\xc6\xee\xcc\xcc\xfd\x86\x43\xfd\x12\xec\
\x1e\xa0\xaa\xf9\x13\xfd\xd7\xc3\x64\x76\xe6\x07\x25\xfc\x33\x7a\
\xef\xcf\xf4\xb1\xd3\xfb\x7e\x9f\xb0\x30\xbb\x82\xb7\x21\x8c\xc9\
\x50\xe0\xe3\xdc\x18\x24\xfb\x18\xea\x28\xb3\x75\xd1\xd4\xda\x1f\
\x75\xee\xbe\x8f\x3e\x3f\xf1\xff\x00\x78\xff\x00\x8d\xfb\xf7\x5e\
\xeb\xde\x3f\xf1\xff\x00\x78\xff\x00\x8d\xfb\xf7\x5e\xeb\xde\x3f\
\xf1\xff\x00\x78\xff\x00\x8d\xfb\xf7\x5e\xeb\xde\x3f\xf1\xff\x00\
\x78\xff\x00\x8d\xfb\xf7\x5e\xeb\x48\x6f\x89\xff\x00\xf0\x8d\x6f\
\xf6\x57\xfe\x53\x7c\x6a\xf9\x2d\xff\x00\x0e\x39\xfd\xf8\xff\x00\
\x65\xe3\xbf\xfa\x6f\xbc\xff\x00\xb9\x5f\xec\xa0\xff\x00\x76\xbf\
\xbe\x1f\xe8\x97\xb1\x76\xe6\xfe\xfe\xeb\xff\x00\x78\xff\x00\xd9\
\xa1\xdc\x1f\xdd\xff\x00\xef\x07\xf7\x7f\xed\x3e\xfb\xec\x2b\x7e\
\xd3\xcd\xe5\xfb\x79\xb4\xf8\xdb\xdd\x7b\xad\xbe\xbe\x58\x74\x47\
\xfb\x34\x1f\x16\x7e\x4a\xfc\x69\xfe\xf5\x7f\x71\xff\x00\xd9\x87\
\xe8\x0e\xe4\xe8\xcf\xef\xaf\xf0\x3f\xef\x2f\xf7\x3f\xfd\x2d\x75\
\xd6\xe3\xd8\x3f\xde\x8f\xee\xe7\xf1\x8d\xbf\xfd\xe0\xfe\xef\xff\
\x00\x78\x3e\xef\xec\x7e\xfe\x8b\xee\xfc\x3e\x2f\xb8\x87\x57\x91\
\x7d\xd7\xba\xd4\x17\xe2\x7f\xfc\x23\x5b\xfd\x95\xff\x00\x94\xdf\
\x1a\xbe\x4b\x7f\xc3\x8e\x7f\x7e\x3f\xd9\x78\xef\xfe\x9b\xef\x3f\
\xee\x57\xfb\x28\x3f\xdd\xaf\xef\x87\xfa\x25\xec\x5d\xb9\xbf\xbf\
\xba\xff\x00\xde\x3f\xf6\x68\x77\x07\xf7\x7f\xfb\xc1\xfd\xdf\xfb\
\x4f\xbe\xfb\x0a\xdf\xb4\xf3\x79\x7e\xde\x6d\x3e\x36\xf7\x5e\xeb\
\x77\x9f\x1f\xf8\xff\x00\xbc\x7f\xc6\xfd\xfb\xaf\x74\x00\x7c\xb0\
\xe8\x8f\xf6\x68\x3e\x2c\xfc\x95\xf8\xd3\xfd\xea\xfe\xe3\xff\x00\
\xb3\x0f\xd0\x1d\xc9\xd1\x9f\xdf\x5f\xe0\x7f\xde\x5f\xee\x7f\xfa\
\x5a\xeb\xad\xc7\xb0\x7f\xbd\x1f\xdd\xcf\xe3\x1b\x7f\xfb\xc1\xfd\
\xdf\xfe\xf0\x7d\xdf\xd8\xfd\xfd\x17\xdd\xf8\x7c\x5f\x71\x0e\xaf\
\x22\xfb\xaf\x75\xa5\x27\x4b\xff\x00\xc2\x3c\x7b\xfb\xe2\x5f\xcc\
\xff\x00\x83\x9f\x22\xfa\x8f\xe6\x87\x4f\xf7\x86\xc8\xe8\xdf\x93\
\xfd\x3b\xdd\x5d\xcd\x8b\xec\x7e\xb2\xde\x9d\x0d\xba\x68\x76\xb7\
\x52\x76\xb7\x5e\x6f\x94\xa0\xeb\x1a\x1d\xb3\x9c\xf9\x05\x89\xdf\
\x9b\x83\x71\x62\x71\x19\x58\xcc\x59\x5a\xed\xaf\x4d\x47\x53\x05\
\x22\xf9\xe7\x4a\xa9\xa4\xa2\xf7\x5e\xeb\x6d\x8f\xe6\xc1\xff\x00\
\x6e\xb3\xfe\x65\x7f\xf8\xa0\x3f\x32\x3f\xf8\x1d\xbb\x1b\xdf\xba\
\xf7\x5f\x16\xcf\x8f\x7d\x2b\xba\x7e\x49\xf7\xe7\x47\xfc\x74\xd8\
\xb5\xfb\x7f\x15\xbd\xbb\xf7\xb7\xfa\xd3\xa5\x76\x76\x53\x76\x55\
\x64\x68\x76\xb6\x37\x74\xf6\xa6\xf4\xc2\xec\x5d\xbd\x5f\xb9\x6b\
\x70\xf8\xac\xee\x5a\x8f\x6f\xd1\xe5\xb3\xb0\xc9\x59\x2d\x2d\x0d\
\x65\x4c\x74\xca\xed\x14\x13\x38\x58\xdb\xdd\x7b\xad\xce\xbe\x11\
\xff\x00\xc2\x45\xff\x00\x99\x17\xc6\xcf\x99\xff\x00\x11\x3e\x45\
\xef\xae\xec\xf8\x43\x95\xd9\x3d\x05\xf2\x7f\xa0\xbb\xab\x78\xe2\
\xf6\x9f\x64\x77\xc5\x76\xe9\xc9\x6d\x6e\xab\xed\x6d\xa7\xbe\xb7\
\x0d\x06\xda\xa2\xcc\x7c\x6b\xc1\x62\x6b\x37\x05\x66\x27\x05\x34\
\x74\x71\x55\x57\x51\xd3\x49\x52\xc8\xb2\xcf\x0a\x16\x91\x7d\xd7\
\xba\xdd\x67\xf9\xb0\x7f\xdb\xac\xff\x00\x99\x5f\xfe\x28\x0f\xcc\
\x8f\xfe\x07\x6e\xc6\xf7\xee\xbd\xd7\xc4\x37\xdf\xba\xf7\x56\x7b\
\xfc\x9a\x3e\x6a\xf5\x67\xf2\xef\xfe\x64\xbf\x1c\x3e\x62\x77\x56\
\x03\xb0\x37\x47\x59\x74\xff\x00\xfa\x5f\xfe\xf2\xe0\xba\xbb\x15\
\xb7\x73\x5b\xee\xbb\xfd\x20\x74\x37\x68\xf5\x76\x1b\xf8\x16\x33\
\x76\x6e\xad\x93\xb7\xea\x7e\xdb\x70\x6f\x6a\x49\xaa\xbe\xe3\x29\
\x4b\xa2\x8e\x39\x5d\x3c\x92\x2a\x45\x27\xba\xf7\x5b\x9d\x7c\xa3\
\xfe\x75\x3f\x16\x7f\xe1\x44\x3d\x15\xbe\x7f\x93\xb7\xc2\xad\x83\
\xdf\xfd\x61\xf2\x67\xe5\xff\x00\xf7\x67\xfd\x1a\x6f\x9f\x94\x7b\
\x5b\xae\xb6\x57\x45\x60\xff\x00\xd9\x7f\xde\x3b\x7f\xe5\x1e\xf2\
\xfe\xfc\xee\x6e\xa7\xed\x4e\xec\xec\x0c\x67\xf1\x3d\x81\xd2\x59\
\x5a\x3c\x67\xd8\x6d\x8c\x9f\x9b\x31\x51\x49\x14\xff\x00\x6f\x4d\
\x24\xd5\x70\x7b\xaf\x74\x40\x7e\x2e\x7f\x25\x6f\x94\xdf\xf0\x9d\
\xee\xf5\xd8\xdf\xce\x27\xe6\xae\xfe\xe8\x0e\xcf\xf8\xcd\xf1\x03\
\xfb\xcd\xfe\x92\xf6\x37\xc5\xcd\xd3\xd8\xbb\xd7\xbd\x73\x9f\xec\
\xc0\x6c\xed\xc1\xf1\x73\x66\xff\x00\x71\xb6\xcf\x6c\x75\x5f\x49\
\xf5\xfe\x4f\xf8\x66\xff\x00\xee\xdc\x55\x66\x4f\xef\xf7\x3e\x33\
\xc3\x87\xa7\xab\x96\x0f\xb8\xa9\x8e\x1a\x49\xfd\xd7\xba\x3f\xdf\
\x28\xff\x00\x9d\x4f\xc5\x9f\xf8\x51\x0f\x45\x6f\x9f\xe4\xed\xf0\
\xab\x60\xf7\xff\x00\x58\x7c\x99\xf9\x7f\xfd\xd9\xff\x00\x46\x9b\
\xe7\xe5\x1e\xd6\xeb\xad\x95\xd1\x58\x3f\xf6\x5f\xf7\x8e\xdf\xf9\
\x47\xbc\xbf\xbf\x3b\x9b\xa9\xfb\x53\xbb\x3b\x03\x19\xfc\x4f\x60\
\x74\x96\x56\x8f\x19\xf6\x1b\x63\x27\xe6\xcc\x54\x52\x45\x3f\xdb\
\xd3\x49\x35\x5c\x1e\xeb\xdd\x10\x1f\x8b\x9f\xc9\x5b\xe5\x37\xfc\
\x27\x7b\xbd\x76\x37\xf3\x89\xf9\xab\xbf\xba\x03\xb3\xfe\x33\x7c\
\x40\xfe\xf3\x7f\xa4\xbd\x8d\xf1\x73\x74\xf6\x2e\xf5\xef\x5c\xe7\
\xfb\x30\x1b\x3b\x70\x7c\x5c\xd9\xbf\xdc\x6d\xb3\xdb\x1d\x57\xd2\
\x7d\x7f\x93\xfe\x19\xbf\xfb\xb7\x15\x59\x93\xfb\xfd\xcf\x8c\xf0\
\xe1\xe9\xea\xe5\x83\xee\x2a\x63\x86\x92\x7f\x75\xee\x97\xff\x00\
\xce\x5f\xfe\x14\xfd\xf0\x1b\xf9\x88\x7f\x2d\xaf\x91\xff\x00\x0e\
\xfa\x57\xa8\xbe\x5f\xed\x7e\xcd\xee\x0f\xf4\x41\xfd\xda\xce\xf6\
\x8e\xc1\xe9\x8c\x2e\xc4\xa1\xff\x00\x47\xfd\xf3\xd5\xdd\xa3\x99\
\xfe\x3b\x93\xda\x7d\xff\x00\xbd\xb7\x05\x37\xdc\xed\xfd\x93\x57\
\x0d\x2f\xdb\xe2\xea\xb5\xd6\x49\x12\x3f\x8e\x36\x79\x63\xf7\x5e\
\xea\x90\xff\x00\xe1\x2e\x9f\xf6\xfd\x5f\x83\x5f\xf9\x73\x3f\xfc\
\x07\xbf\x20\xbd\xfb\xaf\x75\xf5\x36\xf9\xe9\xf3\x57\xab\x3f\x97\
\x7f\xc4\xfe\xd6\xf9\x89\xdd\x58\x0e\xc0\xdd\x1d\x65\xd3\xff\x00\
\xdc\x6f\xef\x2e\x0b\xab\xb1\x5b\x77\x35\xbe\xeb\xbf\xd2\x07\x64\
\xec\xee\xae\xc3\x7f\x02\xc6\x6e\xcd\xd5\xb2\x76\xfd\x4f\xdb\x6e\
\x0d\xed\x49\x35\x57\xdc\x65\x29\x74\x51\xc7\x2b\xa7\x92\x45\x48\
\xa4\xf7\x5e\xea\xa0\xbe\x05\xff\x00\xc2\x9f\xbe\x03\x7f\x31\x0f\
\x96\x1d\x53\xf0\xef\xa5\x7a\x8b\xe5\xfe\xd7\xec\xde\xe0\xfe\xfc\
\xff\x00\x76\xb3\xbd\xa3\xb0\x7a\x63\x0b\xb1\x28\x7f\xd1\xff\x00\
\x5b\x6f\x1e\xd1\xcc\xff\x00\x1d\xc9\xed\x3e\xff\x00\xde\xdb\x82\
\x9b\xee\x76\xfe\xc9\xab\x86\x97\xed\xf1\x75\x5a\xeb\x24\x89\x1f\
\xc7\x1b\x3c\xb1\xfb\xaf\x75\xb1\xdf\xbf\x75\xee\xbb\x5f\xa8\xff\
\x00\x5c\x7b\xf7\x5e\xeb\x3f\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xeb\xff\xd1\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\x8e\x4f\xc0\xff\x00\x7d\xfe\xfb\x8f\x7e\xeb\xdd\x68\
\x87\xfc\xe5\xff\x00\xe1\x30\x3f\x3e\x7f\x98\x87\xf3\x25\xf9\x1f\
\xf3\x13\xa5\x7b\x77\xe2\x06\xd7\xeb\x2e\xe0\xff\x00\x44\x1f\xdd\
\xac\x17\x68\xef\xee\xe7\xc2\xef\xba\x1f\xf4\x7f\xd0\xdd\x5d\xd5\
\xd9\x9f\xe3\xb8\xcd\xa7\xd0\x1b\xdb\x6f\xd3\x7d\xce\xe0\xd9\x35\
\x73\x52\xfd\xbe\x52\xab\x5d\x1c\x91\x3b\xf8\xe4\x67\x8a\x3f\x75\
\xee\x87\xfe\xa7\xff\x00\x85\x3f\x7c\x06\xfe\x5b\x1d\x59\xd6\x9f\
\xcb\xa7\xbc\xfa\x8b\xe5\xfe\xeb\xee\xcf\x80\xbd\x7f\xb3\x7e\x15\
\x77\x16\xe8\xea\x7d\x83\xd3\x19\xde\xac\xdc\x9d\xa7\xf1\x63\x6e\
\xe3\x7a\x33\xb0\x73\xfd\x69\x9b\xde\x1d\xff\x00\xb1\x37\x6e\x63\
\xaf\xf3\x1b\xb7\x62\x55\xd4\x61\xaa\xb2\x98\x3c\x36\x46\xa3\x1d\
\x24\x32\x54\xd0\xd2\x4c\xcf\x4f\x1f\xba\xf7\x5b\x6d\x7c\x7b\xee\
\xad\xad\xf2\x4f\xa0\xfa\x3f\xe4\x5e\xc5\xa0\xdc\x18\xad\x93\xdf\
\xbd\x41\xd6\x9d\xd5\xb3\xb1\x7b\xb2\x97\x1d\x43\xba\x71\xbb\x5b\
\xb5\x36\x5e\x17\x7d\x6d\xea\x0d\xcb\x45\x87\xca\xe7\x71\x34\x7b\
\x82\x8f\x13\x9d\x86\x3a\xc8\xa9\x6b\xab\x29\xa3\xa9\x57\x58\xa7\
\x99\x02\xc8\xde\xeb\xdd\x7c\x5b\x3f\x9b\x07\xfd\xbd\x33\xf9\x95\
\xff\x00\xe2\xff\x00\x7c\xc8\xff\x00\xe0\x89\xec\x6f\x7e\xeb\xdd\
\x5c\xef\xc7\xbf\xf8\x48\xbf\xf3\x22\xf9\x27\xd0\x7d\x1f\xf2\x2f\
\x62\xf7\x67\xc2\x1c\x56\xc9\xef\xde\xa0\xeb\x4e\xea\xd9\xd8\xbd\
\xd9\xd9\x1d\xf1\x43\xba\x71\xbb\x5b\xb5\x36\x5e\x17\x7d\x6d\xea\
\x0d\xcb\x45\x87\xf8\xd7\x9d\xc4\xd1\xee\x0a\x3c\x4e\x76\x18\xeb\
\x22\xa5\xae\xac\xa6\x8e\xa5\x5d\x62\x9e\x64\x0b\x23\x7b\xaf\x75\
\xb0\xe7\x53\xff\x00\xc2\x9f\xbe\x03\x7f\x2d\x8e\xac\xeb\x4f\xe5\
\xd3\xde\x7d\x45\xf2\xff\x00\x75\xf7\x67\xc0\x5e\xbf\xd9\xbf\x0a\
\xbb\x8b\x74\x75\x3e\xc1\xe9\x8c\xef\x56\x6e\x4e\xd3\xf8\xb1\xb7\
\x71\xbd\x19\xd8\x39\xfe\xb4\xcd\xef\x0e\xff\x00\xd8\x9b\xb7\x31\
\xd7\xf9\x8d\xdb\xb1\x2a\xea\x30\xd5\x59\x4c\x1e\x1b\x23\x51\x8e\
\x92\x19\x2a\x68\x69\x26\x67\xa7\x8f\xdd\x7b\xa5\xff\x00\xfd\x06\
\xa7\xfc\xac\xff\x00\xe7\xc1\xfc\xfe\xff\x00\xd1\x59\xf1\xdb\xff\
\x00\xba\xa7\xdf\xba\xf7\x5b\x4d\xfc\x7b\xee\xad\xad\xf2\x4f\xa0\
\xfa\x3f\xe4\x5e\xc5\xa0\xdc\x18\xad\x93\xdf\xbd\x41\xd6\x9d\xd5\
\xb3\xb1\x7b\xb2\x97\x1d\x43\xba\x71\xbb\x5b\xb5\x36\x5e\x17\x7d\
\x6d\xea\x0d\xcb\x45\x87\xca\xe7\x71\x34\x7b\x82\x8f\x13\x9d\x86\
\x3a\xc8\xa9\x6b\xab\x29\xa3\xa9\x57\x58\xa7\x99\x02\xc8\xde\xeb\
\xdd\x0b\xfe\xfd\xd7\xba\xd5\x93\xe4\x27\xfc\x2b\xa3\xf9\x6e\xfc\
\x6c\xef\xce\xf0\xf8\xe9\xbe\xba\x4f\xe6\xf6\x57\x7b\x74\x17\x6f\
\xf6\x5f\x4a\xef\x1c\xa6\xd3\xeb\x7e\x87\xae\xda\xd9\x2d\xd3\xd5\
\x7b\xd3\x35\xb1\x77\x0d\x7e\xda\xad\xcc\x7c\x94\xc1\x65\xab\x36\
\xfd\x66\x5b\x05\x34\x94\x72\xd5\x50\xd1\xd4\xc9\x4c\xc8\xd2\xc1\
\x0b\x96\x8d\x7d\xd7\xba\x08\x3f\xe8\x35\x3f\xe5\x67\xff\x00\x3e\
\x0f\xe7\xf7\xfe\x8a\xcf\x8e\xdf\xfd\xd5\x3e\xfd\xd7\xba\xa0\x3f\
\xfa\x02\xb3\xf9\xa6\x7f\xcf\xfc\xf8\x03\xff\x00\xa3\x4f\xe4\x4f\
\xff\x00\x72\xb7\xbf\x75\xee\xbd\xff\x00\x40\x56\x7f\x34\xcf\xf9\
\xff\x00\x9f\x00\x7f\xf4\x69\xfc\x89\xff\x00\xee\x56\xf7\xee\xbd\
\xd7\xbf\xe8\x0a\xcf\xe6\x99\xff\x00\x3f\xf3\xe0\x0f\xfe\x8d\x3f\
\x91\x3f\xfd\xca\xde\xfd\xd7\xba\xd9\x73\xe3\xd7\xfc\x2b\xa3\xf9\
\x6e\xfc\x94\xef\xde\x8e\xf8\xe9\xb1\x7a\x4f\xe6\xf6\x27\x7b\x77\
\xf7\x70\x75\xa7\x4a\x6c\xec\xa6\xec\xeb\x7e\x87\xa1\xda\xd8\xdd\
\xd3\xda\x9b\xd3\x0b\xb1\x76\xf6\x43\x72\xd6\xe1\xfe\x4a\x67\x72\
\xd4\x7b\x7e\x8f\x2d\x9d\x86\x4a\xc9\x69\x68\x6b\x2a\x63\xa6\x57\
\x68\xa0\x99\xc2\xc6\xde\xeb\xdd\x62\xff\x00\x85\x47\x7f\x30\xbf\
\x92\x9f\x09\xfa\xaf\xe2\x96\xc6\xf8\xc9\xd9\x7b\xaf\xa8\x37\x47\
\x7c\xee\x8e\xe5\xae\xdd\x1b\xe7\x68\x4f\x86\xa7\xca\xff\x00\x74\
\xba\xcf\x6e\x6c\x9c\x3d\x4e\xda\x82\xa7\x21\x85\xc8\x65\x31\x95\
\x39\x5c\x8f\x6d\x53\xd6\x41\x5d\x8f\xa9\xa2\xa9\xa4\x93\x1a\x0a\
\xb1\x76\x8d\xa2\x49\x77\x2b\x46\x10\x21\xa1\x3d\x18\xed\xd0\x47\
\x33\x48\x64\x50\x40\x03\x1f\x6f\xfc\x57\x5a\x37\xa7\xf3\x39\xfe\
\x65\xb2\xb3\xbb\x7f\x30\xbf\x9c\x43\x5b\x16\x21\x7e\x59\xf7\xda\
\xa8\x2c\x6e\x74\xa2\x6f\xd5\x44\x51\x7e\x14\x00\x07\xe0\x7b\x2f\
\x33\xcb\xc4\xca\xdf\xb4\xf4\x71\xf4\xf6\xff\x00\xef\x84\xfd\x83\
\xa1\x43\x70\xfc\xdd\xfe\x6c\xdb\x3f\x6f\xed\x4d\xd7\xb8\xbe\x76\
\x7c\xe3\xa1\xc0\x6f\x6a\x08\xf2\x3b\x66\xbf\xfd\x9c\x8e\xe3\xab\
\x19\x3a\x39\x69\x29\x2b\xe3\x9b\xed\x68\xbb\x46\xa6\xb6\x88\x9a\
\x5a\xe8\x9b\x4d\x44\x51\x30\xd5\x6b\x5c\x10\x3d\x24\xb3\x46\x8b\
\x23\xbb\x69\x3c\x33\xfe\xcf\x5b\x8e\xd6\x19\x18\xa2\x40\x85\x87\
\xc8\x74\x93\x5f\xe6\x49\xfc\xca\x9b\xf5\xff\x00\x30\xaf\x9b\xe8\
\x3f\xc3\xe5\x9f\x7e\x31\xff\x00\x78\xdf\xc0\x7f\xbc\xfb\x4f\xf5\
\xaf\x41\x47\x6a\xfd\xa7\xa5\x8b\xb4\xc6\x72\xd1\x46\x3f\x20\x7a\
\x9b\x1f\xf3\x27\xfe\x63\xa8\x06\xbf\xe6\x0f\xf3\x86\x46\xb7\xe7\
\xe5\x97\x7f\x5a\xff\x00\xe2\x0f\x60\x91\xf4\xf6\xcb\x5d\xdc\x37\
\xfa\x33\x53\xed\x3d\x2a\x4d\xb2\xcd\x7e\x2b\x74\x3f\xed\x47\x53\
\x63\xfe\x65\x3f\xcc\x8a\x52\xa2\x3f\xe6\x01\xf3\x71\x8f\xe3\xfe\
\x72\xbf\xbd\x85\xff\x00\x1c\x93\xbf\xb9\xff\x00\x63\xed\xb3\x77\
\x38\xad\x6e\x1f\xf6\x9e\x9e\x5b\x0b\x23\x81\x67\x17\xfb\xca\xff\
\x00\x9b\xa7\x38\xbf\x98\xb7\xf3\x26\x90\x03\x27\xf3\x03\xf9\xb3\
\x18\x3c\x91\xfe\xcd\x7f\x7c\x92\x3f\xd8\xa6\xfd\xff\x00\x89\xf6\
\xc3\xee\x13\x28\xa8\xb8\x93\xf6\x9e\x9d\xfd\xd5\x68\xdc\x6d\x22\
\x03\xfd\x2a\xff\x00\x9b\xa7\xea\x2f\xe6\x25\xfc\xc4\x90\x2b\x4f\
\xfc\xc0\x7e\x6d\xce\xdc\x9b\x1f\x95\xbd\xf8\x07\xe2\xc3\xfe\x66\
\x11\x04\x0f\xf1\x1e\xd2\xb6\xe9\x74\x75\x01\x34\x9f\xef\x47\xa7\
\x97\x6b\xdb\xd4\x00\x6c\xe2\x27\xfd\x28\xff\x00\x37\x4f\xd0\xff\
\x00\x31\xff\x00\xe6\x17\x60\xbf\xec\xf9\xfc\xd1\x24\x0f\xed\x7c\
\xa5\xef\x36\x24\x0f\xea\xcd\xbe\xc9\x3f\xec\x7d\xa7\x37\xf7\xa4\
\x93\xf5\x92\xff\x00\xbd\xb7\xf9\xfa\x57\x1d\x86\xd4\x02\x86\xdb\
\xe1\xd5\xfe\x91\x7f\xcd\xd0\x2f\xbb\xbf\x99\xe7\xf3\x2a\xdb\xfb\
\xb7\xee\x71\x9f\xcc\x1b\xe6\xbc\x5f\x6c\x28\x6b\x29\x69\xa7\xf9\
\x47\xdd\xd5\xd8\xef\x22\x44\x9e\x9a\x8c\x55\x7e\xf8\xaa\xc6\x56\
\x42\xf2\xc6\x4b\xc7\x34\x4f\x1b\xde\xcc\xa4\x13\xec\xf6\xc2\xea\
\x77\xb7\x52\xd3\x39\x6a\x9c\x92\x4f\x44\x7b\x8e\xdf\x69\x14\xec\
\xab\x6d\x18\x14\x1c\x14\x0f\xf2\x75\xf4\x34\xff\x00\x84\xeb\xfc\
\xe5\xee\x2f\x9f\x1f\xcb\xc9\xfb\x27\xbf\x77\x46\x53\x7c\xf6\xe7\
\x5c\xf7\xaf\x66\x75\x06\xed\xdf\x59\x6a\x4d\xbb\x8f\xa8\xdd\x66\
\x87\x1b\xb4\x3b\x23\x03\x5d\x1e\x3b\x6b\xe0\xb6\xf6\x2a\x8a\x0c\
\x5e\xd9\xec\xda\x2c\x60\x41\x0b\x48\xed\x40\xd2\x33\x9d\x7a\x54\
\x43\x6d\x23\x49\x1d\x58\xf7\x03\x4e\x81\x77\xd0\xac\x33\xe9\x41\
\x45\x20\x1a\x7f\x2f\xf2\x74\x76\x3f\x9b\x07\xfd\xba\xcf\xf9\x95\
\xff\x00\xe2\x80\xfc\xc8\xff\x00\xe0\x76\xec\x6f\x6a\x3a\x47\xd7\
\xc6\xb3\xe1\x1f\x75\x6d\x6f\x8d\x9f\x33\xfe\x22\x7c\x8b\xdf\x54\
\x1b\x83\x2b\xb2\x7a\x0b\xe4\xff\x00\x41\x77\x56\xf1\xc5\xed\x3a\
\x5c\x75\x76\xe9\xc9\x6d\x6e\xab\xed\x6d\xa7\xbe\xb7\x0d\x06\xda\
\xa2\xcc\x65\x70\x58\x9a\xcd\xc1\x59\x89\xc1\x4d\x1d\x1c\x55\x55\
\xd4\x74\xd2\x54\xb2\x2c\xb3\xc2\x85\xa4\x5f\x75\xee\xbe\x8a\xff\
\x00\xf4\x1a\x9f\xf2\xb3\xff\x00\x9f\x07\xf3\xfb\xff\x00\x45\x67\
\xc7\x6f\xfe\xea\x9f\x7e\xeb\xdd\x20\x3b\x63\xfe\x14\xfd\xf0\x1b\
\xf9\x93\xf5\x67\x65\xff\x00\x2e\x9e\x8c\xea\x2f\x97\xfb\x53\xbb\
\x3e\x7d\x75\xfe\xf2\xf8\x55\xd3\xbb\xa3\xb6\x36\x0f\x4c\x60\xba\
\xb3\x6d\xf6\x9f\xca\x7d\xbb\x92\xe8\xce\xbe\xcf\xf6\x5e\x6f\x67\
\xf7\xfe\xfb\xdd\xb8\x7e\xbf\xc3\xee\xdd\xf7\x49\x51\x99\xaa\xc5\
\xe0\xf3\x39\x1a\x7c\x74\x73\x49\x4d\x43\x57\x32\xa5\x3c\x9e\xeb\
\xdd\x6b\x07\xf3\xd3\xfe\x13\x03\xf3\xe7\xf9\x77\xfc\x4f\xed\x6f\
\x98\x9d\xd5\xdb\xbf\x10\x37\x47\x59\x74\xff\x00\xf7\x1b\xfb\xcb\
\x82\xea\xed\xfd\xdc\xf9\xad\xf7\x5d\xfe\x90\x3b\x27\x67\x75\x76\
\x1b\xf8\x16\x33\x76\x74\x06\xc9\xdb\xf5\x3f\x6d\xb8\x37\xb5\x24\
\xd5\x5f\x71\x94\xa5\xd1\x47\x1c\xae\x9e\x49\x15\x22\x93\xdd\x7b\
\xaa\x82\xf8\x17\xf0\xab\xb4\xff\x00\x98\x87\xcb\x0e\xa9\xf8\x77\
\xd2\xb9\xfe\xbf\xda\xfd\x9b\xdc\x1f\xdf\x9f\xee\xd6\x77\xb4\x72\
\xbb\x8b\x0b\xb1\x28\x7f\xd1\xff\x00\x5b\x6f\x1e\xd1\xcc\xff\x00\
\x1d\xc9\xed\x3d\xab\xbd\xb7\x05\x37\xdc\xed\xfd\x93\x57\x0d\x2f\
\xdb\xe2\xea\xb5\xd6\x49\x12\x3f\x8e\x36\x79\x63\xf7\x5e\xeb\x6b\
\xbf\x8b\x9f\xc9\x5b\xe5\x37\xfc\x27\x7b\xbd\x76\x37\xf3\x89\xf9\
\xab\xbf\xba\x03\xb3\xfe\x33\x7c\x40\xfe\xf3\x7f\xa4\xbd\x8d\xf1\
\x73\x74\xf6\x2e\xf5\xef\x5c\xe7\xfb\x30\x1b\x3b\x70\x7c\x5c\xd9\
\xbf\xdc\x6d\xb3\xdb\x1d\x57\xd2\x7d\x7f\x93\xfe\x19\xbf\xfb\xb7\
\x15\x59\x93\xfb\xfd\xcf\x8c\xf0\xe1\xe9\xea\xe5\x83\xee\x2a\x63\
\x86\x92\x7f\x75\xee\x8f\xf7\xca\x3f\xe7\x53\xf1\x67\xfe\x14\x43\
\xd1\x5b\xe7\xf9\x3b\x7c\x2a\xd8\x3d\xff\x00\xd6\x1f\x26\x7e\x5f\
\xff\x00\x76\x7f\xd1\xa6\xf9\xf9\x47\xb5\xba\xeb\x65\x74\x56\x0f\
\xfd\x97\xfd\xe3\xb7\xfe\x51\xef\x2f\xef\xce\xe6\xea\x7e\xd4\xee\
\xce\xc0\xc6\x7f\x13\xd8\x1d\x25\x95\xa3\xc6\x7d\x86\xd8\xc9\xf9\
\xb3\x15\x14\x91\x4f\xf6\xf4\xd2\x4d\x57\x07\xba\xf7\x44\x07\xe2\
\xe7\xf2\x56\xf9\x4d\xff\x00\x09\xde\xef\x5d\x8d\xfc\xe2\x7e\x6a\
\xef\xee\x80\xec\xff\x00\x8c\xdf\x10\x3f\xbc\xdf\xe9\x2f\x63\x7c\
\x5c\xdd\x3d\x8b\xbd\x7b\xd7\x39\xfe\xcc\x06\xce\xdc\x1f\x17\x36\
\x6f\xf7\x1b\x6c\xf6\xc7\x55\xf4\x9f\x5f\xe4\xff\x00\x86\x6f\xfe\
\xed\xc5\x56\x64\xfe\xff\x00\x73\xe3\x3c\x38\x7a\x7a\xb9\x60\xfb\
\x8a\x98\xe1\xa4\x9f\xdd\x7b\xa3\xfd\xf2\x8f\xf9\xd4\xfc\x59\xff\
\x00\x85\x10\xf4\x56\xf9\xfe\x4e\xdf\x0a\xb6\x0f\x7f\xf5\x87\xc9\
\x9f\x97\xff\x00\xdd\x9f\xf4\x69\xbe\x7e\x51\xed\x6e\xba\xd9\x5d\
\x15\x83\xff\x00\x65\xff\x00\x78\xed\xff\x00\x94\x7b\xcb\xfb\xf3\
\xb9\xba\x9f\xb5\x3b\xb3\xb0\x31\x9f\xc4\xf6\x07\x49\x65\x68\xf1\
\x9f\x61\xb6\x32\x7e\x6c\xc5\x45\x24\x53\xfd\xbd\x34\x93\x55\xc1\
\xee\xbd\xd6\xb8\x7f\x3d\x3f\xe1\x30\x3f\x3e\x7f\x97\x7f\xc4\xfe\
\xd6\xf9\x89\xdd\x5d\xbb\xf1\x03\x74\x75\x97\x4f\xff\x00\x71\xbf\
\xbc\xb8\x2e\xae\xdf\xdd\xcf\x9a\xdf\x75\xdf\xe9\x03\xb2\x76\x77\
\x57\x61\xbf\x81\x63\x37\x67\x40\x6c\x9d\xbf\x53\xf6\xdb\x83\x7b\
\x52\x4d\x55\xf7\x19\x4a\x5d\x14\x71\xca\xe9\xe4\x91\x52\x29\x3d\
\xd7\xba\x20\x3f\xc9\xa3\xe6\xaf\x56\x7f\x2e\xff\x00\xe6\x4b\xf1\
\xc3\xe6\x27\x75\x60\x3b\x03\x74\x75\x97\x4f\xff\x00\xa5\xff\x00\
\xef\x2e\x0b\xab\xb1\x5b\x77\x35\xbe\xeb\xbf\xd2\x07\x43\x76\x8f\
\x57\x61\xbf\x81\x63\x37\x66\xea\xd9\x3b\x7e\xa7\xed\xb7\x06\xf6\
\xa4\x9a\xab\xee\x32\x94\xba\x28\xe3\x95\xd3\xc9\x22\xa4\x52\x7b\
\xaf\x75\xb3\xdf\xf3\x97\xff\x00\x85\x3f\x7c\x06\xfe\x62\x1f\xcb\
\x6b\xe4\x7f\xc3\xbe\x95\xea\x2f\x97\xfb\x5f\xb3\x7b\x83\xfd\x10\
\x7f\x76\xb3\xbd\xa3\xb0\x7a\x63\x0b\xb1\x28\x7f\xd1\xff\x00\x7c\
\xf5\x77\x68\xe6\x7f\x8e\xe4\xf6\x9f\x7f\xef\x6d\xc1\x4d\xf7\x3b\
\x7f\x64\xd5\xc3\x4b\xf6\xf8\xba\xad\x75\x92\x44\x8f\xe3\x8d\x9e\
\x58\xfd\xd7\xba\xd6\x13\xf9\x34\x7c\xd5\xea\xcf\xe5\xdf\xfc\xc9\
\x7e\x38\x7c\xc4\xee\xac\x07\x60\x6e\x8e\xb2\xe9\xff\x00\xf4\xbf\
\xfd\xe5\xc1\x75\x76\x2b\x6e\xe6\xb7\xdd\x77\xfa\x40\xe8\x6e\xd1\
\xea\xec\x37\xf0\x2c\x66\xec\xdd\x5b\x27\x6f\xd4\xfd\xb6\xe0\xde\
\xd4\x93\x55\x7d\xc6\x52\x97\x45\x1c\x72\xba\x79\x24\x54\x8a\x4f\
\x75\xee\xbe\x9a\xff\x00\xcb\x03\xfe\x14\x29\xf0\xc3\xf9\xb2\x77\
\xe6\xee\xf8\xe9\xf1\xd3\xac\xbe\x4f\xec\xbd\xed\xb2\xfa\x83\x3f\
\xdd\x59\x4c\xa7\x75\x6c\xbe\xa9\xdb\x9b\x5a\xa3\x6b\x6d\xcd\xe9\
\xb0\x36\x2d\x6d\x05\x05\x6e\xc5\xee\xae\xc7\xcb\x4b\xb8\x25\xcb\
\x76\x3d\x0c\x91\x45\x25\x0c\x54\xcd\x4d\x14\xec\xd3\xab\xac\x71\
\xcb\xee\xbd\xd5\xee\xaf\xd4\x7f\xaf\xef\xdd\x7b\xac\xfe\xfd\xd7\
\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\xff\xd2\xdf\xe3\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\x85\xff\x00\x51\xff\x00\
\x61\xfe\xf4\x3d\xfb\xaf\x75\xae\x17\xcf\x4f\xf8\x53\xf7\xc0\x6f\
\xe5\xdf\xf2\xc3\xb5\xbe\x1d\xf7\x57\x51\x7c\xbf\xdd\x1d\x9b\xd3\
\xff\x00\xdc\x6f\xef\x2e\x77\xab\xb6\x0f\x4c\x66\xb6\x25\x77\xfa\
\x40\xeb\x6d\x9d\xda\x38\x6f\xe0\x59\x3d\xd9\xdf\xfb\x27\x70\x54\
\xfd\xb6\xdf\xde\xd4\x90\xd5\x7d\xc6\x2e\x97\x45\x64\x72\xa2\x79\
\x23\x54\x96\x4f\x75\xee\xbe\x5d\x3f\x37\x3b\xab\x6b\x7c\x93\xf9\
\x9f\xf2\xef\xe4\x5e\xc5\xa0\xdc\x18\xad\x93\xdf\xbf\x27\xfb\xf7\
\xba\xb6\x76\x2f\x76\x52\xe3\xa8\x77\x4e\x37\x6b\x76\xa7\x6b\x6e\
\xcd\xf5\xb7\xa8\x37\x2d\x16\x1f\x2b\x9d\xc4\xd1\xee\x0a\x3c\x4e\
\x76\x18\xeb\x22\xa5\xae\xac\xa6\x8e\xa5\x5d\x62\x9e\x64\x0b\x23\
\x7b\xaf\x75\xf6\x53\xfe\x53\xff\x00\xf6\xeb\x3f\xe5\xa9\xff\x00\
\x8a\x03\xf0\xdf\xff\x00\x81\xdb\xae\x7d\xfb\xaf\x75\xa5\x37\xcd\
\xcf\xf8\x48\xbf\xf3\x22\xf9\x27\xf3\x3f\xe5\xdf\xc8\xbd\x8b\xdd\
\x9f\x08\x71\x5b\x27\xbf\x7e\x4f\xf7\xef\x75\x6c\xec\x5e\xec\xec\
\x8e\xf8\xa1\xdd\x38\xdd\xad\xda\x9d\xad\xbb\x37\xd6\xde\xa0\xdc\
\xb4\x58\x7f\x8d\x79\xdc\x4d\x1e\xe0\xa3\xc4\xe7\x61\x8e\xb2\x2a\
\x5a\xea\xca\x68\xea\x55\xd6\x29\xe6\x40\xb2\x37\xba\xf7\x5b\xdc\
\x7c\x23\xe9\x5d\xd3\xf1\xb3\xe1\x87\xc4\x4f\x8e\x9b\xea\xbf\x6f\
\xe5\x77\xb7\x41\x7c\x60\xe8\x2e\x95\xde\x39\x4d\xa7\x55\x91\xae\
\xda\xd9\x2d\xd3\xd5\x7d\x53\xb4\xf6\x2e\xe1\xaf\xdb\x55\xb9\x8c\
\x56\x0b\x2d\x59\xb7\xeb\x32\xd8\x29\xa4\xa3\x96\xaa\x86\x8e\xa6\
\x4a\x66\x46\x96\x08\x5c\xb4\x6b\xee\xbd\xd6\x88\xff\x00\x37\x3f\
\xe1\x22\xff\x00\xcc\x8b\xe4\x9f\xcc\xff\x00\x97\x7f\x22\xf6\x2f\
\x76\x7c\x21\xc5\x6c\x9e\xfd\xf9\x3f\xdf\xbd\xd5\xb3\xb1\x7b\xb3\
\xb2\x3b\xe2\x87\x74\xe3\x76\xb7\x6a\x76\xb6\xec\xdf\x5b\x7a\x83\
\x72\xd1\x61\xfe\x35\xe7\x71\x34\x7b\x82\x8f\x13\x9d\x86\x3a\xc8\
\xa9\x6b\xab\x29\xa3\xa9\x57\x58\xa7\x99\x02\xc8\xde\xeb\xdd\x16\
\x0f\xfa\x02\xb3\xf9\xa6\x7f\xcf\xfc\xf8\x03\xff\x00\xa3\x4f\xe4\
\x4f\xff\x00\x72\xb7\xbf\x75\xee\xbe\x8a\xff\x00\x08\xfa\x57\x74\
\xfc\x6c\xf8\x61\xf1\x13\xe3\xa6\xfa\xaf\xdb\xf9\x5d\xed\xd0\x5f\
\x18\x3a\x0b\xa5\x77\x8e\x53\x69\xd5\x64\x6b\xb6\xb6\x4b\x74\xf5\
\x5f\x54\xed\x3d\x8b\xb8\x6b\xf6\xd5\x6e\x63\x15\x82\xcb\x56\x6d\
\xfa\xcc\xb6\x0a\x69\x28\xe5\xaa\xa1\xa3\xa9\x92\x99\x91\xa5\x82\
\x17\x2d\x1a\xfb\xaf\x74\x67\xfd\xfb\xaf\x75\xf1\x0d\xfe\x6c\x1f\
\xf6\xf4\xcf\xe6\x57\xff\x00\x8b\xfd\xf3\x23\xff\x00\x82\x27\xb1\
\xbd\xfb\xaf\x75\x73\xbf\x1e\xff\x00\xe1\x22\xff\x00\xcc\x8b\xe4\
\x9f\x41\xf4\x7f\xc8\xbd\x8b\xdd\x9f\x08\x71\x5b\x27\xbf\x7a\x83\
\xad\x3b\xab\x67\x62\xf7\x67\x64\x77\xc5\x0e\xe9\xc6\xed\x6e\xd4\
\xd9\x78\x5d\xf5\xb7\xa8\x37\x2d\x16\x1f\xe3\x5e\x77\x13\x47\xb8\
\x28\xf1\x39\xd8\x63\xac\x8a\x96\xba\xb2\x9a\x3a\x95\x75\x8a\x79\
\x90\x2c\x8d\xee\xbd\xd7\xd5\x57\xdf\xba\xf7\x5a\x82\xff\x00\xd0\
\x6a\x7f\xca\xcf\xfe\x7c\x1f\xcf\xef\xfd\x15\x9f\x1d\xbf\xfb\xaa\
\x7d\xfb\xaf\x75\xb7\xd7\xbf\x75\xee\xbe\x21\xdf\xca\x77\xfe\xde\
\x9b\xfc\xb4\xff\x00\xf1\x7f\xfe\x1b\xff\x00\xf0\x45\x75\xcf\xbf\
\x75\xee\xb7\x7a\xff\x00\x85\x95\xc7\x14\x9f\xf0\xdc\x5e\x48\xc4\
\x96\xff\x00\x66\xfb\x4d\xc9\x00\x5f\xfd\x95\xdb\xfd\x3e\xb7\xb7\
\xb2\xcd\xc5\xc2\x78\x35\x07\xcf\xfc\x9d\x1f\x6c\x6a\x18\xdc\x92\
\x2b\x4d\x3f\xf3\xf7\x5a\x46\x53\x53\xbb\x12\x21\x82\xff\x00\x4f\
\xd1\x10\xe3\xe9\x6e\x42\xdc\xdb\xd9\x4c\x92\x0d\x35\x22\x9e\x5c\
\x7a\x12\x08\x8b\x92\x52\x2f\xe5\xd6\xe3\x9f\xca\xdf\x35\xd7\x7f\
\x26\x7e\x19\x6c\xae\x9f\xde\xbb\x4b\x03\xbd\x33\x1d\x5d\x89\xa0\
\xc6\xe4\xf1\x3b\xa3\x0b\x83\xdc\x34\xc5\x1b\x77\x6f\xa4\xdb\xee\
\x94\x19\x1a\x78\xe9\xe4\x34\xd8\x3d\xbf\x1e\x83\x26\xa6\x8d\x54\
\x58\x96\x17\x2f\xdb\xcb\x34\x8d\x6e\xb6\x63\xc4\x72\x08\x65\xf2\
\xc0\xc7\x1a\x81\x4a\x7a\x0e\x84\x36\xa9\xb6\x49\xb5\xde\xa6\xf2\
\xeb\x12\x42\x50\xac\x94\xee\x1a\xd8\xd4\x02\xa5\x58\xd6\xa0\x11\
\x52\x29\x9f\x2e\x8b\x7f\xcc\x1f\xe5\xa1\xd2\x7b\x27\x76\x64\x1e\
\x2d\xa3\xb1\x36\x73\x67\x33\x12\x36\x2a\x8f\x66\xee\x5a\xea\xea\
\x8a\x28\xd2\x83\x1d\x5d\x3c\x35\x1b\x42\x97\x73\xe1\x66\xc3\x40\
\xd0\xd4\x5f\x9a\x64\x81\x19\xec\x84\x86\x8c\xb8\xd7\xf7\x0d\x94\
\xb0\x26\xbb\x75\x49\xbc\xe8\x4f\xf9\x08\x1d\x00\x6d\xf7\x66\x2c\
\xc9\x1d\xc3\x3c\x6a\x4d\x0b\x00\x2a\x2b\x83\x9a\xff\x00\x84\xf4\
\x52\x36\x07\xc1\xce\xb8\xd8\x2e\x32\x3b\xdf\x05\x47\xbd\x53\x23\
\x15\x41\xc3\xc9\x97\xa1\xce\xe3\x29\x1e\x11\x51\x2b\x99\xa2\xa7\
\x93\x31\x91\xc7\xd5\xb4\x74\x95\x30\xa5\xec\xf6\x2a\x18\x35\xcd\
\xfd\xea\xcb\x97\xac\x62\x77\x32\xaa\xca\x47\xad\x45\x32\x7f\xa4\
\x7e\xcf\xcb\xa5\x32\x6e\x72\x49\xdb\x1b\x69\x03\xfd\x5c\x69\xd0\
\xf5\x45\xd5\xfd\x43\x42\x7c\x74\xdd\x67\xb0\x69\xe9\x74\x78\xc5\
\x37\xf7\x4f\x01\x21\xd2\xbf\xd9\x69\x9b\x1e\xf2\x30\x2d\x73\x72\
\x49\xe7\xd9\xa8\xdb\x2c\x54\x62\xca\x1f\xf7\x95\xff\x00\x37\x49\
\xbe\xaa\x5c\x9f\xa8\x6a\xff\x00\xa6\x3f\xe7\xe9\x1f\xbc\xfe\x3d\
\x74\xb6\xef\xc7\x64\x20\x8f\x60\x6d\xac\x1e\x4a\xa6\x16\x4a\x5c\
\xbe\x1a\x9a\x7a\x09\x28\xa7\x01\xfc\x35\x2d\x45\x88\x9b\x11\x14\
\xeb\x19\x92\xec\x9a\x8e\xbb\x00\x43\x58\x59\x15\xd7\x2f\xed\x97\
\x51\xba\xb5\x92\x2b\x1f\x30\x29\x4f\xf7\x92\x3a\x76\x2d\xd2\x78\
\x8a\x91\x70\xc5\x6b\xc0\xe7\xfc\x20\xf4\xcb\xd2\xbf\xcb\x2a\x1d\
\xf7\x9f\xa4\x5a\x15\xcc\xef\xdc\x6b\xe4\xe6\x6a\xba\x2c\x36\xd8\
\xdc\x34\xf4\xd4\x94\x3e\x7a\x50\xd4\xf5\x59\x8a\x5d\xdb\x4f\x1d\
\x29\xa0\x86\xaa\x3f\x23\x3b\xa3\xfa\xd6\xfc\x91\x72\x11\xc9\xd6\
\x51\x6b\x77\x93\x52\xe7\x00\x35\x7e\x43\x0f\x53\xd2\xd7\xdf\x5c\
\x85\x54\x28\xae\x68\x2a\x59\x40\xfb\x72\x29\xd1\xd9\xed\x1f\xe5\
\xe5\xf1\x37\xe3\x6f\x4b\xef\x2e\xdf\xec\xcd\x93\x41\x4b\xfd\xc7\
\xdb\x55\x75\xf3\xd1\xe5\xf3\xdb\xda\x3a\xb9\xf3\xef\x12\x52\xe2\
\x71\x22\x8e\xab\x7b\x57\x62\xe5\xa9\xaf\xcc\x4b\x1c\x31\x2b\x2c\
\x88\xe5\xc1\xd0\x57\x8f\x64\x17\x16\xbb\x5d\xbc\xf2\xc2\x96\x2e\
\xce\x9c\x49\xd4\x05\x07\xc8\xb1\xf9\x01\x51\x9a\xf4\x22\x87\x6d\
\xdc\x1b\x6d\x5d\xda\xe7\x76\x84\x5b\x38\xa2\xaa\x51\x89\x63\x85\
\x1a\x80\x5a\x67\x8d\x09\xa0\x07\x8f\x5a\x8e\xf6\x55\x5c\x15\xd9\
\xb5\xab\xa5\x68\xde\x26\xa2\x8a\x35\x68\x8a\xb2\xde\x32\xda\x85\
\xd4\x01\xc1\x6f\x69\x36\xf5\x64\x83\x4b\xa1\x06\xbd\x14\xee\x0c\
\x24\x6d\x48\xfa\x85\x38\xf5\xf4\x3d\xff\x00\x84\x7a\xff\x00\xdb\
\xb4\x3b\xc7\xf1\xff\x00\x39\xd1\xd9\x9f\xfb\xe0\x7e\x32\xfb\x11\
\x59\x7f\x64\xdf\xe9\xbf\xc8\x3a\x06\xee\x9f\xee\x42\x7f\xa4\x1f\
\xe1\x3d\x6c\x25\xf3\x73\xa5\x77\x4f\xc9\x3f\x86\x1f\x2e\xfe\x3a\
\x6c\x5a\xfd\xbf\x8a\xde\xdd\xfb\xf1\x83\xbf\x7a\x57\x67\x65\x37\
\x65\x56\x46\x87\x6b\x63\x77\x4f\x6a\x75\x4e\xec\xd8\xbb\x7a\xbf\
\x72\xd6\xe1\xf1\x59\xdc\xb5\x1e\xdf\xa3\xcb\x67\x61\x92\xb2\x5a\
\x5a\x1a\xca\x98\xe9\x95\xda\x28\x26\x70\xb1\xb2\xce\x8b\xba\xf9\
\xa4\xfc\x84\xff\x00\x84\x8b\xff\x00\x32\x2f\x8d\x9d\x07\xde\x1f\
\x22\xf7\xd7\x76\x7c\x21\xca\xec\x9e\x82\xea\x0e\xcb\xee\xad\xe3\
\x8b\xda\x7d\x91\xdf\x15\xdb\xa7\x25\xb5\xba\xaf\x65\xe6\xb7\xd6\
\xe1\xa0\xdb\x54\x59\x8f\x8d\x78\x2c\x4d\x66\xe0\xac\xc4\xe0\xa6\
\x8e\x8e\x2a\xaa\xea\x3a\x69\x2a\x59\x16\x59\xe1\x42\xd2\x2f\xba\
\xf7\x5a\xb2\x7b\xf7\x5e\xe8\xff\x00\x7f\x29\xff\x00\xfb\x7a\x67\
\xf2\xd4\xff\x00\xc5\xfe\xf8\x6f\xff\x00\xc1\x13\xd7\x3e\xfd\xd7\
\xba\xfa\x7b\x7f\xc2\xa2\xff\x00\xed\xc5\x5f\x39\x7f\xf2\xd9\xbf\
\xf8\x30\xbe\x3e\xfb\xf7\x5e\xeb\xe6\x91\xfc\x9a\x3e\x6a\xf5\x67\
\xf2\xef\xfe\x64\xbf\x1c\x3e\x62\x77\x56\x03\xb0\x37\x47\x59\x74\
\xff\x00\xfa\x5f\xfe\xf2\xe0\xba\xbb\x15\xb7\x73\x5b\xee\xbb\xfd\
\x20\x74\x37\x68\xf5\x76\x1b\xf8\x16\x33\x76\x6e\xad\x93\xb7\xea\
\x7e\xdb\x70\x6f\x6a\x49\xaa\xbe\xe3\x29\x4b\xa2\x8e\x39\x5d\x3c\
\x92\x2a\x45\x27\xba\xf7\x5b\x9d\x7c\xa3\xfe\x75\x3f\x16\x7f\xe1\
\x44\x3d\x15\xbe\x7f\x93\xb7\xc2\xad\x83\xdf\xfd\x61\xf2\x67\xe5\
\xff\x00\xf7\x67\xfd\x1a\x6f\x9f\x94\x7b\x5b\xae\xb6\x57\x45\x60\
\xff\x00\xd9\x7f\xde\x3b\x7f\xe5\x1e\xf2\xfe\xfc\xee\x6e\xa7\xed\
\x4e\xec\xec\x0c\x67\xf1\x3d\x81\xd2\x59\x5a\x3c\x67\xd8\x6d\x8c\
\x9f\x9b\x31\x51\x49\x14\xff\x00\x6f\x4d\x24\xd5\x70\x7b\xaf\x74\
\x40\x7e\x2e\x7f\x25\x6f\x94\xdf\xf0\x9d\xee\xf5\xd8\xdf\xce\x27\
\xe6\xae\xfe\xe8\x0e\xcf\xf8\xcd\xf1\x03\xfb\xcd\xfe\x92\xf6\x37\
\xc5\xcd\xd3\xd8\xbb\xd7\xbd\x73\x9f\xec\xc0\x6c\xed\xc1\xf1\x73\
\x66\xff\x00\x71\xb6\xcf\x6c\x75\x5f\x49\xf5\xfe\x4f\xf8\x66\xff\
\x00\xee\xdc\x55\x66\x4f\xef\xf7\x3e\x33\xc3\x87\xa7\xab\x96\x0f\
\xb8\xa9\x8e\x1a\x49\xfd\xd7\xba\x5f\xff\x00\x39\x7f\xf8\x53\xf7\
\xc0\x6f\xe6\x21\xfc\xb6\xbe\x47\xfc\x3b\xe9\x5e\xa2\xf9\x7f\xb5\
\xfb\x37\xb8\x3f\xd1\x07\xf7\x6b\x3b\xda\x3b\x07\xa6\x30\xbb\x12\
\x87\xfd\x1f\xf7\xcf\x57\x76\x8e\x67\xf8\xee\x4f\x69\xf7\xfe\xf6\
\xdc\x14\xdf\x73\xb7\xf6\x4d\x5c\x34\xbf\x6f\x8b\xaa\xd7\x59\x24\
\x48\xfe\x38\xd9\xe5\x8f\xdd\x7b\xad\x61\x3f\x93\x47\xcd\x5e\xac\
\xfe\x5d\xff\x00\xcc\x97\xe3\x87\xcc\x4e\xea\xc0\x76\x06\xe8\xeb\
\x2e\x9f\xff\x00\x4b\xff\x00\xde\x5c\x17\x57\x62\xb6\xee\x6b\x7d\
\xd7\x7f\xa4\x0e\x86\xed\x1e\xae\xc3\x7f\x02\xc6\x6e\xcd\xd5\xb2\
\x76\xfd\x4f\xdb\x6e\x0d\xed\x49\x35\x57\xdc\x65\x29\x74\x51\xc7\
\x2b\xa7\x92\x45\x48\xa4\xf7\x5e\xeb\x67\xbf\xe7\x2f\xff\x00\x0a\
\x7e\xf8\x0d\xfc\xc4\x3f\x96\xd7\xc8\xff\x00\x87\x7d\x2b\xd4\x5f\
\x2f\xf6\xbf\x66\xf7\x07\xfa\x20\xfe\xed\x67\x7b\x47\x60\xf4\xc6\
\x17\x62\x50\xff\x00\xa3\xfe\xf9\xea\xee\xd1\xcc\xff\x00\x1d\xc9\
\xed\x3e\xff\x00\xde\xdb\x82\x9b\xee\x76\xfe\xc9\xab\x86\x97\xed\
\xf1\x75\x5a\xeb\x24\x89\x1f\xc7\x1b\x3c\xb1\xfb\xaf\x75\xa8\x2f\
\xc0\xbf\x85\x5d\xa7\xfc\xc4\x3e\x58\x75\x4f\xc3\xbe\x95\xcf\xf5\
\xfe\xd7\xec\xde\xe0\xfe\xfc\xff\x00\x76\xb3\xbd\xa3\x95\xdc\x58\
\x5d\x89\x43\xfe\x8f\xfa\xdb\x78\xf6\x8e\x67\xf8\xee\x4f\x69\xed\
\x5d\xed\xb8\x29\xbe\xe7\x6f\xec\x9a\xb8\x69\x7e\xdf\x17\x55\xae\
\xb2\x48\x91\xfc\x71\xb3\xcb\x1f\xba\xf7\x56\xfb\xf3\xd3\xfe\x13\
\x03\xf3\xe7\xf9\x77\xfc\x4f\xed\x6f\x98\x9d\xd5\xdb\xbf\x10\x37\
\x47\x59\x74\xff\x00\xf7\x1b\xfb\xcb\x82\xea\xed\xfd\xdc\xf9\xad\
\xf7\x5d\xfe\x90\x3b\x27\x67\x75\x76\x1b\xf8\x16\x33\x76\x74\x06\
\xc9\xdb\xf5\x3f\x6d\xb8\x37\xb5\x24\xd5\x5f\x71\x94\xa5\xd1\x47\
\x1c\xae\x9e\x49\x15\x22\x93\xdd\x7b\xad\x71\x3d\xfb\xaf\x75\xb7\
\xd7\xfc\x22\xb3\xfe\xde\x99\xdf\x9f\xf8\xa0\x3d\xa7\xff\x00\xc1\
\x13\xf1\x5b\xdf\xba\xf7\x5f\x4f\x85\xfd\x43\xdf\xba\xf7\x59\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd3\xdf\xe3\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\x85\xbf\x51\xff\
\x00\x7d\xf4\xe3\xdf\xba\xf7\x5f\x20\x9f\xf8\x54\x5f\xfd\xbf\x57\
\xe7\x2f\xfe\x5b\x37\xff\x00\x01\xef\xc7\xdf\x7e\xeb\xdd\x50\x1f\
\xbf\x75\xee\xbe\xde\x5f\xca\x7f\xfe\xdd\x67\xfc\xb5\x3f\xf1\x40\
\x7e\x1b\xff\x00\xf0\x3b\x75\xcf\xbf\x75\xee\xa9\x8b\xe4\x27\xfc\
\x2b\xa3\xf9\x6e\xfc\x6c\xef\xce\xf0\xf8\xe9\xbe\xba\x4f\xe6\xf6\
\x57\x7b\x74\x17\x6f\xf6\x5f\x4a\xef\x1c\xa6\xd3\xeb\x7e\x87\xae\
\xda\xd9\x2d\xd3\xd5\x7b\xd3\x35\xb1\x77\x0d\x7e\xda\xad\xcc\x7c\
\x94\xc1\x65\xab\x36\xfd\x66\x5b\x05\x34\x94\x72\xd5\x50\xd1\xd4\
\xc9\x4c\xc8\xd2\xc1\x0b\x96\x8d\x7d\xd7\xba\xd8\xf3\xe3\xdf\x75\
\x6d\x6f\x92\x7d\x07\xd1\xff\x00\x22\xf6\x2d\x06\xe0\xc5\x6c\x9e\
\xfd\xea\x0e\xb4\xee\xad\x9d\x8b\xdd\x94\xb8\xea\x1d\xd3\x8d\xda\
\xdd\xa9\xb2\xf0\xbb\xeb\x6f\x50\x6e\x5a\x2c\x3e\x57\x3b\x89\xa3\
\xdc\x14\x78\x9c\xec\x31\xd6\x45\x4b\x5d\x59\x4d\x1d\x4a\xba\xc5\
\x3c\xc8\x16\x46\xf7\x5e\xeb\x5c\x3f\x90\x9f\xf0\xae\x8f\xe5\xbb\
\xf1\xb3\xbf\x3b\xc3\xe3\xa6\xfa\xe9\x3f\x9b\xd9\x5d\xed\xd0\x5d\
\xbf\xd9\x7d\x2b\xbc\x72\x9b\x4f\xad\xfa\x1e\xbb\x6b\x64\xb7\x4f\
\x55\xef\x4c\xd6\xc5\xdc\x35\xfb\x6a\xb7\x31\xf2\x53\x05\x96\xac\
\xdb\xf5\x99\x6c\x14\xd2\x51\xcb\x55\x43\x47\x53\x25\x33\x23\x4b\
\x04\x2e\x5a\x35\xf7\x5e\xe8\x20\xff\x00\xa0\xd4\xff\x00\x95\x9f\
\xfc\xf8\x3f\x9f\xdf\xfa\x2b\x3e\x3b\x7f\xf7\x54\xfb\xf7\x5e\xeb\
\x69\xbf\x8f\x7d\xd5\xb5\xbe\x49\xf4\x1f\x47\xfc\x8b\xd8\xb4\x1b\
\x83\x15\xb2\x7b\xf7\xa8\x3a\xd3\xba\xb6\x76\x2f\x76\x52\xe3\xa8\
\x77\x4e\x37\x6b\x76\xa6\xcb\xc2\xef\xad\xbd\x41\xb9\x68\xb0\xf9\
\x5c\xee\x26\x8f\x70\x51\xe2\x73\xb0\xc7\x59\x15\x2d\x75\x65\x34\
\x75\x2a\xeb\x14\xf3\x20\x59\x1b\xdd\x7b\xa1\x7f\xdf\xba\xf7\x5f\
\x10\xdf\xe6\xc1\xff\x00\x6f\x4c\xfe\x65\x7f\xf8\xbf\xdf\x32\x3f\
\xf8\x22\x7b\x1b\xdf\xba\xf7\x5b\xac\xfc\x23\xff\x00\x85\x74\x7f\
\x2d\xdf\x8d\x9f\x0c\x3e\x22\x7c\x74\xdf\x5d\x27\xf3\x7b\x2b\xbd\
\xba\x0b\xe3\x07\x41\x74\xae\xf1\xca\x6d\x3e\xb7\xe8\x7a\xed\xad\
\x92\xdd\x3d\x57\xd5\x3b\x4f\x62\xee\x1a\xfd\xb5\x5b\x98\xf9\x29\
\x82\xcb\x56\x6d\xfa\xcc\xb6\x0a\x69\x28\xe5\xaa\xa1\xa3\xa9\x92\
\x99\x91\xa5\x82\x17\x2d\x1a\xfb\xaf\x74\x67\xff\x00\xe8\x35\x3f\
\xe5\x67\xff\x00\x3e\x0f\xe7\xf7\xfe\x8a\xcf\x8e\xdf\xfd\xd5\x3e\
\xfd\xd7\xba\xa0\x3f\xfa\x02\xb3\xf9\xa6\x7f\xcf\xfc\xf8\x03\xff\
\x00\xa3\x4f\xe4\x4f\xff\x00\x72\xb7\xbf\x75\xee\xbe\x9e\xde\xfd\
\xd7\xba\xf9\xd4\xfc\x21\xff\x00\x84\x8b\xff\x00\x32\x2f\x8d\x9f\
\x34\x7e\x21\xfc\x8b\xdf\x5d\xd9\xf0\x87\x2b\xb2\x7a\x0b\xe5\x07\
\x40\xf7\x56\xf1\xc5\xed\x3e\xc8\xef\x8a\xed\xd3\x92\xda\xdd\x57\
\xda\xdb\x4f\x7d\x6e\x1a\x0d\xb5\x45\x98\xf8\xd7\x82\xc4\xd6\x6e\
\x0a\xcc\x4e\x0a\x68\xe8\xe2\xaa\xae\xa3\xa6\x92\xa5\x91\x65\x9e\
\x14\x2d\x22\xfb\xaf\x74\x7e\xff\x00\xe1\x62\x54\xd0\xd4\x7f\xc3\
\x76\x79\x50\x39\x4f\xf6\x6e\x0a\x5f\xf1\x7f\xf6\x58\xef\xc7\xd2\
\xc6\xc3\xd9\x0e\xf6\xec\x9f\x4d\xa4\xd3\xe2\xff\x00\x9f\x7a\x13\
\xf2\xe0\x52\x6e\xcb\x0a\xd3\x47\xfc\xfd\xd6\x95\xb4\xd4\x4a\xab\
\xaf\x44\x34\xaa\x4d\x95\x9a\x36\x5d\x76\x00\xfa\x7c\x71\xc8\xcd\
\x60\x47\x3f\x41\xc7\x3e\xc8\x1b\x5b\x2d\x5a\x4a\x0f\x99\x3d\x0c\
\x51\xa2\xae\x98\xd6\xbe\x67\xfd\x58\xea\xeb\x3f\x94\x57\xc8\x2d\
\xcb\xd2\xd9\x6e\xed\x87\x07\x43\x95\xca\xfd\xce\xd0\xda\x95\x58\
\xf9\xa5\xc3\x53\x65\x36\xc6\x2a\xbe\x8b\x74\xd6\x53\x3b\x57\x3d\
\x65\x6e\x3c\xd2\xc9\x5b\x43\xb8\xab\x12\x0b\x07\x69\x25\xd5\xf4\
\x00\xdc\x55\xc9\xd0\x2c\x97\x33\x10\x19\x82\xa7\xc5\xe4\x0d\x69\
\x83\xf3\xcf\xec\xe8\x8b\x98\x9a\x53\x66\xb0\x89\x00\x47\x71\x55\
\xae\x48\x19\x1c\x3d\x3a\xb7\x2e\xa3\xd9\x99\x4e\xee\xdc\x3b\x8b\
\xbc\x3e\x4d\xe6\xf7\x1c\x3d\x45\x83\x86\x4a\xfd\xc5\xbc\x72\x15\
\xf5\x18\xd4\xac\xcc\xee\x0a\xf7\xda\xf8\x4c\x56\xd2\x4f\xb3\xaa\
\x81\x92\x3c\xc5\x28\x49\xa1\xa3\x8e\x28\xa0\x82\x8f\x4b\x30\x0a\
\xa8\xc3\xdb\x99\x84\x60\x47\x11\x1e\x37\xa7\xd9\xc7\xa0\x78\x0b\
\x18\xd1\x1f\xc5\xd1\x3d\xde\xbb\xca\xab\x7e\x6f\x1a\xe6\xc3\x45\
\x0d\x06\x1d\xab\xeb\xce\xdd\xdb\xf4\xb0\x8a\x1c\x76\x0f\x09\x14\
\x6b\x16\x37\x1f\x4d\x48\x6a\x2a\x52\x99\xd3\x1b\x4b\x17\x95\xcc\
\x92\x4b\x3c\xb1\x99\x25\x96\x49\x19\x9d\x9c\x44\x31\x0a\x57\xb8\
\xf1\xff\x00\x0f\x4f\x56\x80\x00\x4d\x7c\xfa\x43\x65\x9a\xb7\x15\
\x35\x65\x34\xd2\x45\xf7\x14\x35\x13\xc1\x3f\x8d\xd2\x64\xd7\x49\
\x31\x8e\xa0\x2b\xa1\x21\x97\xd0\x6c\x78\xbf\xbb\x54\xfa\xf5\xaa\
\x93\xe7\xd3\x7c\x79\x6a\x85\x68\xa5\x69\x3f\x62\x75\x4d\x06\xdf\
\x49\x1d\x43\x05\x36\x3c\x29\xb7\x17\xbf\x26\xde\xdc\x56\x3f\x0d\
\x7a\xf5\x7a\xb2\x7f\xe5\xed\xdd\x19\x2d\xab\xd8\x54\x7b\x1b\x28\
\x98\x58\xf6\x86\xe9\x97\x29\x0a\x57\xb6\x33\x1d\xfc\x66\x9f\x72\
\x65\x7f\x81\x53\x63\x23\x93\x28\x66\x87\x26\x98\xba\xda\xaa\x18\
\xa9\x95\x2d\x2c\x5f\x73\x50\xa3\x48\x27\x52\x79\xa3\x23\x8f\x0e\
\x92\xdd\x23\x34\x65\x81\xe1\xd1\x64\xff\x00\x85\x02\xf6\x73\x0d\
\x89\x07\x5d\x6d\x2d\xd3\xb9\x62\x92\xbb\x3b\xb0\x1f\x7b\xed\xcc\
\x42\xe3\x61\xdb\x15\x34\xad\x06\xf5\xca\x86\xcd\x4c\x29\x93\x29\
\x2d\x43\x54\x41\x8a\x90\xaa\xcc\x69\xcb\xac\x20\x8d\x61\x87\xb0\
\x86\xfd\x6d\x1c\x4a\xf7\x4b\x10\xee\x60\x19\x80\x1f\x3c\x1f\x3f\
\x21\xfc\xba\x39\xd9\x2f\x77\x19\xad\xd6\xc1\xee\x5c\xd9\xa9\x2c\
\xaa\x58\xd0\x1f\x50\x38\x53\x27\xf9\xf5\xa8\x16\xe2\x86\x48\x8c\
\x51\xba\x93\x27\x83\x52\x85\xf5\x70\xd3\x30\x3f\x4e\x3e\x83\xd8\
\x5e\x36\x0f\x52\x3a\x3b\x64\x74\x8f\x4b\x0e\xee\xbe\x8b\x9f\xf0\
\x8f\x75\x74\xfe\x5a\x1d\xe2\x1d\x59\x0f\xfb\x3d\x1d\x96\x40\x61\
\x62\x47\xfa\x02\xf8\xcb\xcf\xfa\xd7\x1e\xce\x2c\xff\x00\xb2\x6f\
\xf4\xdf\xe4\x1d\x06\x37\x55\x2b\x70\x95\x1f\x80\x7f\x84\xf5\xb2\
\x87\xc8\x4e\xea\xda\xdf\x1b\x3a\x0f\xbc\x3e\x45\xef\xaa\x0d\xc1\
\x95\xd9\x3d\x05\xd4\x1d\x97\xdd\x5b\xc7\x17\xb4\xe9\x71\xd5\xdb\
\xa7\x25\xb5\xba\xaf\x65\xe6\xb7\xd6\xe1\xa0\xdb\x54\x59\x8c\xae\
\x0b\x13\x59\xb8\x2b\x31\x38\x29\xa3\xa3\x8a\xaa\xba\x8e\x9a\x4a\
\x96\x45\x96\x78\x50\xb4\x8a\xaf\xa2\xce\xb5\x25\xed\x8f\xf8\x53\
\xf7\xc0\x6f\xe6\x4f\xd5\x9d\x97\xfc\xba\x7a\x33\xa8\xbe\x5f\xed\
\x4e\xec\xf9\xf5\xd7\xfb\xcb\xe1\x57\x4e\xee\x8e\xd8\xd8\x3d\x31\
\x82\xea\xcd\xb7\xda\x7f\x29\xf6\xee\x4b\xa3\x3a\xfb\x3f\xd9\x79\
\xbd\x9f\xdf\xfb\xef\x76\xe1\xfa\xff\x00\x0f\xbb\x77\xdd\x25\x46\
\x66\xab\x17\x83\xcc\xe4\x69\xf1\xd1\xcd\x25\x35\x0d\x5c\xca\x94\
\xf2\x7b\xaf\x75\xaf\x1f\xc8\x4f\xf8\x48\xbf\xf3\x22\xf8\xd9\xd0\
\x7d\xe1\xf2\x2f\x7d\x77\x67\xc2\x1c\xae\xc9\xe8\x2e\xa0\xec\xbe\
\xea\xde\x38\xbd\xa7\xd9\x1d\xf1\x5d\xba\x72\x5b\x5b\xaa\xf6\x5e\
\x6b\x7d\x6e\x1a\x0d\xb5\x45\x98\xf8\xd7\x82\xc4\xd6\x6e\x0a\xcc\
\x4e\x0a\x68\xe8\xe2\xaa\xae\xa3\xa6\x92\xa5\x91\x65\x9e\x14\x2d\
\x22\xfb\xaf\x75\x4c\x5f\xca\x7f\xfe\xde\x99\xfc\xb5\x3f\xf1\x7f\
\xbe\x1b\xff\x00\xf0\x44\xf5\xcf\xbf\x75\xee\xbe\xb6\xbf\xce\x5f\
\xe1\x57\x69\xff\x00\x31\x0f\xe5\xb5\xf2\x3f\xe1\xdf\x4a\xe7\xfa\
\xff\x00\x6b\xf6\x6f\x70\x7f\xa2\x0f\xee\xd6\x77\xb4\x72\xbb\x8b\
\x0b\xb1\x28\x7f\xd1\xff\x00\x7c\xf5\x77\x68\xe6\x7f\x8e\xe4\xf6\
\x9e\xd5\xde\xdb\x82\x9b\xee\x76\xfe\xc9\xab\x86\x97\xed\xf1\x75\
\x5a\xeb\x24\x89\x1f\xc7\x1b\x3c\xb1\xfb\xaf\x75\xa2\x37\xfd\x01\
\x59\xfc\xd3\x3f\xe7\xfe\x7c\x01\xff\x00\xd1\xa7\xf2\x27\xff\x00\
\xb9\x5b\xdf\xba\xf7\x56\x7d\xfc\x9a\x3f\xe1\x30\x3f\x3e\x7f\x97\
\x7f\xf3\x25\xf8\xe1\xf3\x13\xba\xbb\x77\xe2\x06\xe8\xeb\x2e\x9f\
\xff\x00\x4b\xff\x00\xde\x5c\x17\x57\x6f\xee\xe7\xcd\x6f\xba\xef\
\xf4\x81\xd0\xdd\xa3\xd5\xd8\x6f\xe0\x58\xcd\xd9\xd0\x1b\x27\x6f\
\xd4\xfd\xb6\xe0\xde\xd4\x93\x55\x7d\xc6\x52\x97\x45\x1c\x72\xba\
\x79\x24\x54\x8a\x4f\x75\xee\xae\xf3\xfe\x15\x17\xff\x00\x6e\x2a\
\xf9\xcb\xff\x00\x96\xcd\xff\x00\xc1\x85\xf1\xf7\xdf\xba\xf7\x5f\
\x2c\x9f\x81\x7f\x0a\xbb\x4f\xf9\x88\x7c\xb0\xea\x9f\x87\x7d\x2b\
\x9f\xeb\xfd\xaf\xd9\xbd\xc1\xfd\xf9\xfe\xed\x67\x7b\x47\x2b\xb8\
\xb0\xbb\x12\x87\xfd\x1f\xf5\xb6\xf1\xed\x1c\xcf\xf1\xdc\x9e\xd3\
\xda\xbb\xdb\x70\x53\x7d\xce\xdf\xd9\x35\x70\xd2\xfd\xbe\x2e\xab\
\x5d\x64\x91\x23\xf8\xe3\x67\x96\x3f\x75\xee\xad\xf7\xe7\xa7\xfc\
\x26\x07\xe7\xcf\xf2\xef\xf8\x9f\xda\xdf\x31\x3b\xab\xb7\x7e\x20\
\x6e\x8e\xb2\xe9\xff\x00\xee\x37\xf7\x97\x05\xd5\xdb\xfb\xb9\xf3\
\x5b\xee\xbb\xfd\x20\x76\x4e\xce\xea\xec\x37\xf0\x2c\x66\xec\xe8\
\x0d\x93\xb7\xea\x7e\xdb\x70\x6f\x6a\x49\xaa\xbe\xe3\x29\x4b\xa2\
\x8e\x39\x5d\x3c\x92\x2a\x45\x27\xba\xf7\x55\x05\xf0\x2f\xe1\x57\
\x69\xff\x00\x31\x0f\x96\x1d\x53\xf0\xef\xa5\x73\xfd\x7f\xb5\xfb\
\x37\xb8\x3f\xbf\x3f\xdd\xac\xef\x68\xe5\x77\x16\x17\x62\x50\xff\
\x00\xa3\xfe\xb6\xde\x3d\xa3\x99\xfe\x3b\x93\xda\x7b\x57\x7b\x6e\
\x0a\x6f\xb9\xdb\xfb\x26\xae\x1a\x5f\xb7\xc5\xd5\x6b\xac\x92\x24\
\x7f\x1c\x6c\xf2\xc7\xee\xbd\xd6\xef\x5f\xc9\xa3\xfe\x13\x03\xf3\
\xe7\xf9\x77\xff\x00\x32\x5f\x8e\x1f\x31\x3b\xab\xb7\x7e\x20\x6e\
\x8e\xb2\xe9\xff\x00\xf4\xbf\xfd\xe5\xc1\x75\x76\xfe\xee\x7c\xd6\
\xfb\xae\xff\x00\x48\x1d\x0d\xda\x3d\x5d\x86\xfe\x05\x8c\xdd\x9d\
\x01\xb2\x76\xfd\x4f\xdb\x6e\x0d\xed\x49\x35\x57\xdc\x65\x29\x74\
\x51\xc7\x2b\xa7\x92\x45\x48\xa4\xf7\x5e\xeb\x67\xbf\xe7\x2f\xf0\
\xab\xb4\xff\x00\x98\x87\xf2\xda\xf9\x1f\xf0\xef\xa5\x73\xfd\x7f\
\xb5\xfb\x37\xb8\x3f\xd1\x07\xf7\x6b\x3b\xda\x39\x5d\xc5\x85\xd8\
\x94\x3f\xe8\xff\x00\xbe\x7a\xbb\xb4\x73\x3f\xc7\x72\x7b\x4f\x6a\
\xef\x6d\xc1\x4d\xf7\x3b\x7f\x64\xd5\xc3\x4b\xf6\xf8\xba\xad\x75\
\x92\x44\x8f\xe3\x8d\x9e\x58\xfd\xd7\xba\xd1\x1b\xfe\x80\xac\xfe\
\x69\x9f\xf3\xff\x00\x3e\x00\xff\x00\xe8\xd3\xf9\x13\xff\x00\xdc\
\xad\xef\xdd\x7b\xab\xdc\xff\x00\x84\xf5\xff\x00\xc2\x7a\xfe\x67\
\xff\x00\x29\xbf\x99\xfd\x9b\xf2\x2f\xe4\x5f\x66\xfc\x60\xde\x9b\
\x27\x7a\x7c\x60\xde\x9d\x2b\x8b\xc5\xf4\xae\xf4\xed\x6d\xc7\xba\
\x69\xf7\x4e\xe3\xed\x6e\x95\xdf\x54\x55\xf5\xf4\x5b\xeb\xa5\x7a\
\xe3\x13\x16\xdf\x8b\x13\xd7\x15\xd1\xcb\x2c\x75\xd2\xd4\xad\x4c\
\xb0\x2a\xc0\xc8\xd2\x49\x17\xba\xf7\x5b\x8d\x8f\xa8\xff\x00\x5c\
\x7f\xbd\xfb\xf7\x5e\xeb\x3f\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xeb\xff\xd4\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\x1f\xdf\xba\xf7\x5f\x20\xbf\xf8\x54\x5f\xfd\xbf\x57\
\xe7\x2f\xfe\x5b\x37\xff\x00\x01\xef\xc7\xdf\x7e\xeb\xdd\x50\x1f\
\xbf\x75\xee\xbe\x8a\xff\x00\x08\xff\x00\xe1\x5d\x1f\xcb\x77\xe3\
\x67\xc3\x0f\x88\x9f\x1d\x37\xd7\x49\xfc\xde\xca\xef\x6e\x82\xf8\
\xc1\xd0\x5d\x2b\xbc\x72\x9b\x4f\xad\xfa\x1e\xbb\x6b\x64\xb7\x4f\
\x55\xf5\x4e\xd3\xd8\xbb\x86\xbf\x6d\x56\xe6\x3e\x4a\x60\xb2\xd5\
\x9b\x7e\xb3\x2d\x82\x9a\x4a\x39\x6a\xa8\x68\xea\x64\xa6\x64\x69\
\x60\x85\xcb\x46\xbe\xeb\xdd\x68\x8f\xf3\x73\xba\xb6\xb7\xc9\x3f\
\x99\xff\x00\x2e\xfe\x45\xec\x5a\x0d\xc1\x8a\xd9\x3d\xfb\xf2\x7f\
\xbf\x7b\xab\x67\x62\xf7\x65\x2e\x3a\x87\x74\xe3\x76\xb7\x6a\x76\
\xb6\xec\xdf\x5b\x7a\x83\x72\xd1\x61\xf2\xb9\xdc\x4d\x1e\xe0\xa3\
\xc4\xe7\x61\x8e\xb2\x2a\x5a\xea\xca\x68\xea\x55\xd6\x29\xe6\x40\
\xb2\x37\xba\xf7\x5f\x65\x3f\xe5\x3f\xff\x00\x6e\xb3\xfe\x5a\x9f\
\xf8\xa0\x3f\x0d\xff\x00\xf8\x1d\xba\xe7\xdf\xba\xf7\x5a\x53\x7c\
\xdc\xff\x00\x84\x8b\xff\x00\x32\x2f\x92\x7f\x33\xfe\x5d\xfc\x8b\
\xd8\xbd\xd9\xf0\x87\x15\xb2\x7b\xf7\xe4\xff\x00\x7e\xf7\x56\xce\
\xc5\xee\xce\xc8\xef\x8a\x1d\xd3\x8d\xda\xdd\xa9\xda\xdb\xb3\x7d\
\x6d\xea\x0d\xcb\x45\x87\xf8\xd7\x9d\xc4\xd1\xee\x0a\x3c\x4e\x76\
\x18\xeb\x22\xa5\xae\xac\xa6\x8e\xa5\x5d\x62\x9e\x64\x0b\x23\x7b\
\xaf\x74\x58\x3f\xe8\x0a\xcf\xe6\x99\xff\x00\x3f\xf3\xe0\x0f\xfe\
\x8d\x3f\x91\x3f\xfd\xca\xde\xfd\xd7\xba\xbb\xde\xa7\xff\x00\x85\
\x3f\x7c\x06\xfe\x5b\x1d\x59\xd6\x9f\xcb\xa7\xbc\xfa\x8b\xe5\xfe\
\xeb\xee\xcf\x80\xbd\x7f\xb3\x7e\x15\x77\x16\xe8\xea\x7d\x83\xd3\
\x19\xde\xac\xdc\x9d\xa7\xf1\x63\x6e\xe3\x7a\x33\xb0\x73\xfd\x69\
\x9b\xde\x1d\xff\x00\xb1\x37\x6e\x63\xaf\xf3\x1b\xb7\x62\x55\xd4\
\x61\xaa\xb2\x98\x3c\x36\x46\xa3\x1d\x24\x32\x54\xd0\xd2\x4c\xcf\
\x4f\x1f\xba\xf7\x4b\xff\x00\xfa\x0d\x4f\xf9\x59\xff\x00\xcf\x83\
\xf9\xfd\xff\x00\xa2\xb3\xe3\xb7\xff\x00\x75\x4f\xbf\x75\xee\xa9\
\x0b\xb6\x3f\xe1\x30\x3f\x3e\x7f\x99\x3f\x69\xf6\x5f\xf3\x16\xe8\
\xce\xdd\xf8\x81\xb5\x3a\x4f\xe7\xd7\x60\x6f\x2f\x9a\xbd\x3b\xb5\
\xfb\x63\x7f\x77\x3e\x0b\xb4\xf6\xdf\x56\x7c\xa7\xdc\x59\x2e\xf3\
\xeb\xec\x07\x65\xe1\x36\x7f\x40\x6f\xbd\xa5\x87\xec\x0c\x3e\xd2\
\xdf\x74\x94\xf9\x9a\x5c\x5e\x73\x33\x8e\xa7\xc8\xc7\x34\x74\xd5\
\xd5\x70\xaa\x54\x49\xee\xbd\xd6\xa4\xbf\x21\x3a\x57\x74\xfc\x6c\
\xef\xce\xf0\xf8\xe9\xbe\xab\xf6\xfe\x57\x7b\x74\x17\x6f\xf6\x5f\
\x4a\xef\x1c\xa6\xd3\xaa\xc8\xd7\x6d\x6c\x96\xe9\xea\xbd\xe9\x9a\
\xd8\xbb\x86\xbf\x6d\x56\xe6\x31\x58\x2c\xb5\x66\xdf\xac\xcb\x60\
\xa6\x92\x8e\x5a\xaa\x1a\x3a\x99\x29\x99\x1a\x58\x21\x72\xd1\xaf\
\xba\xf7\x5b\x4d\xff\x00\xd0\x15\x9f\xcd\x33\xfe\x7f\xe7\xc0\x1f\
\xfd\x1a\x7f\x22\x7f\xfb\x95\xbd\xfb\xaf\x75\x7f\x9f\xf4\x1a\x9f\
\xf2\xb3\xff\x00\x9f\x07\xf3\xfb\xff\x00\x45\x67\xc7\x6f\xfe\xea\
\x9f\x7e\xeb\xdd\x7b\xfe\x83\x53\xfe\x56\x7f\xf3\xe0\xfe\x7f\x7f\
\xe8\xac\xf8\xed\xff\x00\xdd\x53\xef\xdd\x7b\xa1\x83\xe3\xcf\xfc\
\x2b\xa3\xf9\x6e\xfc\x93\xef\xee\x8e\xf8\xe9\xb1\x7a\x4f\xe6\xf6\
\x2b\x7b\x77\xef\x70\x75\x9f\x4a\xec\xec\xa6\xec\xeb\x7e\x87\xa1\
\xda\xd8\xdd\xd3\xda\x9b\xd3\x09\xb1\x76\xf5\x7e\xe5\xad\xc3\xfc\
\x94\xce\xe5\xa8\xf6\xfd\x1e\x5b\x3b\x0c\x95\x92\xd2\xd0\xd6\x54\
\xc7\x4c\xae\xd1\x41\x33\x85\x8d\xbd\xd7\xba\x24\xff\x00\xf0\xb2\
\x4c\x8d\x6d\x0c\xff\x00\xcb\x75\x69\x20\x13\x89\x9b\xe5\xeb\x54\
\x06\x8d\xdd\x52\x18\x9f\xe2\xd0\x69\x1d\x96\x48\xc4\x68\x04\xbc\
\xb1\x36\x03\xd9\x5e\xe3\x6e\x93\xb5\xb8\x6a\xe2\xbf\xce\x9d\x1e\
\x6c\xb3\x98\x7e\xa4\x0f\x3d\x3f\xf3\xf7\xf9\xfa\xd2\x03\xfb\xd9\
\xb8\x2b\xea\x56\x18\x56\x99\x8c\x92\xf8\x69\xa1\xa6\xa6\x3a\x9d\
\xa5\x90\x24\x69\x1c\x2a\xcc\x0b\xb9\xb0\x00\x0b\x9e\x07\xb2\xe3\
\x65\x0c\x8d\xa4\xea\x39\xa0\x1f\xf1\x43\xa3\xe5\xbe\x99\x01\xd2\
\x14\x13\xf6\xff\x00\x9f\xad\x8c\x3e\x20\xf4\x9e\xe2\xc5\x6d\xdd\
\xaf\xd7\xfb\x1f\x05\xf7\x5d\x8d\xbd\x76\xfd\x13\xee\x98\xe8\x96\
\x09\xeb\x33\x35\xd8\xba\x5c\x8e\xe8\xab\xa6\x96\xac\x41\x1e\xaa\
\x4c\x5b\x34\xe5\x15\x40\x50\x22\x40\x75\x15\x56\xf7\x24\xed\xbb\
\x7d\xb6\xd1\x60\x9e\x1c\x41\x64\x2a\x35\x1e\x24\x9a\xd7\x3f\x61\
\x27\xa2\x0b\xcb\xc9\xae\x98\x99\x5e\xaa\x0e\x3a\xbb\x2f\xe6\x0b\
\x92\xda\x9d\x13\xd0\xdd\x49\xf1\x97\x63\xd5\x52\x63\xea\x56\xa6\
\x2a\xbe\xc1\x82\x88\xac\xb5\xb9\x07\xdb\xb8\xdc\x66\x62\x29\x33\
\x79\x25\x5a\x59\x6a\x7f\x89\xee\x0d\xe1\xf7\xe8\x1e\x10\x1e\x40\
\x19\x44\x61\x34\x96\xad\xff\x00\x5a\x66\x99\xf2\x7f\xcf\xd1\x6a\
\x65\x9a\x43\xc3\xaa\x56\x6a\xac\x96\x2b\x27\x53\xe5\xf3\xd0\x56\
\x95\x86\x58\x93\x53\x43\x53\x14\x32\x40\x8e\x84\x85\x90\x3c\x6d\
\x25\x34\xe8\x58\x7d\x7d\x56\x36\xfa\x7b\x33\x91\x1e\x37\x68\xe4\
\x52\x1c\x52\xa0\xfc\xc5\x47\xf2\xea\xd1\x4b\x1c\xc8\x24\x89\xaa\
\x95\x39\xfb\x09\x07\xf9\x8e\xa5\x2c\xf5\x19\x79\x9a\x9d\xa6\x92\
\x7a\xec\x93\xc9\x1a\x99\x64\x67\x9a\x7a\x9a\xa6\x2a\x59\x99\x8b\
\xbb\x49\x24\xb2\x02\x4f\x24\x93\x7f\x7e\x44\x69\x1d\x51\x47\x71\
\x20\x0f\xcf\xab\x3b\x04\x47\x90\xfc\x2a\x09\x3f\x97\x4d\xd5\xf0\
\x64\x30\xef\x36\x1b\x22\xb2\x45\x5b\x4a\x51\xe2\xd5\xc8\x02\x48\
\x52\xb2\x8f\xd5\xc7\xd6\x29\x17\xf0\x38\xe3\xdb\xb3\x42\xf6\xee\
\x62\x95\x69\x25\x01\xfd\xa2\xa3\xa6\xe0\xb8\x86\xe6\x25\x96\x23\
\x50\x49\x1f\x98\x24\x1f\xf0\x74\xef\xb5\xf7\xce\xe7\xda\x59\x0c\
\x6e\x7b\x6f\x65\xea\xf1\x99\x7c\x45\x65\x1d\x7d\x15\x44\x2f\xe8\
\x8f\x21\x8a\xaf\xa7\xc8\x52\xbc\x90\xb5\xe2\x9a\x28\xb2\x34\x31\
\xb9\x46\x52\xac\x50\x5c\x11\xee\xc0\x56\x2c\x9f\x2e\x9e\x20\x32\
\x95\x22\xa0\xf4\x0c\xfc\xc6\xdd\x1b\x93\xb8\xba\xc3\x7f\xee\x8d\
\xe1\x90\x9f\x70\xee\xa7\x8f\x17\x95\x9a\xba\xa1\x9d\xe5\x12\x61\
\x6b\xa8\xa1\x73\x4e\x84\xba\x53\xc3\x15\x0c\x72\x81\x1c\x61\x23\
\x55\x62\x14\x28\x36\xf6\x4f\xbe\x42\xad\xb3\x5d\xf6\xe4\x0d\x5f\
\x98\x20\xd7\xf6\x74\xb7\x6a\xa4\x57\x96\xe8\x95\x00\x9a\x7e\xdf\
\x2f\xdb\xd5\x0b\xee\x88\xa5\x8e\xb6\x11\x32\x34\x6d\xf6\xa0\x84\
\x61\xf5\x06\x49\x00\x27\xeb\x60\x4f\xf8\xfb\x8d\x6d\x98\x32\xb1\
\x07\x15\xe8\x55\x72\xa5\x59\x6a\x29\x8e\xbe\x8a\x3f\xf0\x90\x32\
\x7f\xe1\xb5\xbb\xc7\xfc\x3e\x72\xf6\x50\x1f\xeb\x7f\xa0\x2f\x8c\
\xc7\xfd\xec\xfb\x3d\xb2\xfe\xc9\xbf\xd3\x7f\x90\x74\x10\xde\xbf\
\xdc\xa8\xff\x00\xe6\x98\xff\x00\x0b\x75\xb0\x37\xcd\xce\x95\xdd\
\x3f\x24\xfe\x18\x7c\xbb\xf8\xe9\xb1\x6b\xf6\xfe\x2b\x7b\x77\xef\
\xc6\x0e\xfd\xe9\x5d\x9d\x94\xdd\x95\x59\x1a\x1d\xad\x8d\xdd\x3d\
\xa9\xd5\x3b\xb3\x62\xed\xea\xfd\xcb\x5b\x87\xc5\x67\x72\xd4\x7b\
\x7e\x8f\x2d\x9d\x86\x4a\xc9\x69\x68\x6b\x2a\x63\xa6\x57\x68\xa0\
\x99\xc2\xc6\xcb\x3a\x28\xeb\x44\x7f\x84\x7f\xf0\x91\x7f\xe6\x45\
\xf1\xb3\xe6\x7f\xc4\x4f\x91\x7b\xeb\xbb\x3e\x10\xe5\x76\x4f\x41\
\x7c\x9f\xe8\x2e\xea\xde\x38\xbd\xa7\xd9\x1d\xf1\x5d\xba\x72\x5b\
\x5b\xaa\xfb\x5b\x69\xef\xad\xc3\x41\xb6\xa8\xb3\x1f\x1a\xf0\x58\
\x9a\xcd\xc1\x59\x89\xc1\x4d\x1d\x1c\x55\x55\xd4\x74\xd2\x54\xb2\
\x2c\xb3\xc2\x85\xa4\x5f\x75\xee\xb7\x59\xfe\x6c\x1f\xf6\xeb\x3f\
\xe6\x57\xff\x00\x8a\x03\xf3\x23\xff\x00\x81\xdb\xb1\xbd\xfb\xaf\
\x75\xf1\xac\xf8\x47\xdd\x5b\x5b\xe3\x67\xcc\xff\x00\x88\x9f\x22\
\xf7\xd5\x06\xe0\xca\xec\x9e\x82\xf9\x3f\xd0\x5d\xd5\xbc\x71\x7b\
\x4e\x97\x1d\x5d\xba\x72\x5b\x5b\xaa\xfb\x5b\x69\xef\xad\xc3\x41\
\xb6\xa8\xb3\x19\x5c\x16\x26\xb3\x70\x56\x62\x70\x53\x47\x47\x15\
\x55\x75\x1d\x34\x95\x2c\x8b\x2c\xf0\xa1\x69\x17\xdd\x7b\xaf\xa8\
\xb7\xc0\xbf\xf8\x53\xf7\xc0\x6f\xe6\x21\xf2\xc3\xaa\x7e\x1d\xf4\
\xaf\x51\x7c\xbf\xda\xfd\x9b\xdc\x1f\xdf\x9f\xee\xd6\x77\xb4\x76\
\x0f\x4c\x61\x76\x25\x0f\xfa\x3f\xeb\x6d\xe3\xda\x39\x9f\xe3\xb9\
\x3d\xa7\xdf\xfb\xdb\x70\x53\x7d\xce\xdf\xd9\x35\x70\xd2\xfd\xbe\
\x2e\xab\x5d\x64\x91\x23\xf8\xe3\x67\x96\x3f\x75\xee\xad\xf7\xe7\
\xa7\xcd\x5e\xac\xfe\x5d\xff\x00\x13\xfb\x5b\xe6\x27\x75\x60\x3b\
\x03\x74\x75\x97\x4f\xff\x00\x71\xbf\xbc\xb8\x2e\xae\xc5\x6d\xdc\
\xd6\xfb\xae\xff\x00\x48\x1d\x93\xb3\xba\xbb\x0d\xfc\x0b\x19\xbb\
\x37\x56\xc9\xdb\xf5\x3f\x6d\xb8\x37\xb5\x24\xd5\x5f\x71\x94\xa5\
\xd1\x47\x1c\xae\x9e\x49\x15\x22\x93\xdd\x7b\xaa\x82\xf8\x17\xff\
\x00\x0a\x7e\xf8\x0d\xfc\xc4\x3e\x58\x75\x4f\xc3\xbe\x95\xea\x2f\
\x97\xfb\x5f\xb3\x7b\x83\xfb\xf3\xfd\xda\xce\xf6\x8e\xc1\xe9\x8c\
\x2e\xc4\xa1\xff\x00\x47\xfd\x6d\xbc\x7b\x47\x33\xfc\x77\x27\xb4\
\xfb\xff\x00\x7b\x6e\x0a\x6f\xb9\xdb\xfb\x26\xae\x1a\x5f\xb7\xc5\
\xd5\x6b\xac\x92\x24\x7f\x1c\x6c\xf2\xc7\xee\xbd\xd2\xff\x00\xfe\
\x15\x17\xff\x00\x6e\x2a\xf9\xcb\xff\x00\x96\xcd\xff\x00\xc1\x85\
\xf1\xf7\xdf\xba\xf7\x5a\x03\xff\x00\xc2\x5d\x3f\xed\xfa\xbf\x06\
\xbf\xf2\xe6\x7f\xf8\x0f\x7e\x41\x7b\xf7\x5e\xeb\x7f\x8f\xf8\x54\
\x5f\xfd\xb8\xab\xe7\x2f\xfe\x5b\x37\xff\x00\x06\x17\xc7\xdf\x7e\
\xeb\xdd\x7c\xd2\x3f\x93\x47\xcd\x5e\xac\xfe\x5d\xff\x00\xcc\x97\
\xe3\x87\xcc\x4e\xea\xc0\x76\x06\xe8\xeb\x2e\x9f\xff\x00\x4b\xff\
\x00\xde\x5c\x17\x57\x62\xb6\xee\x6b\x7d\xd7\x7f\xa4\x0e\x86\xed\
\x1e\xae\xc3\x7f\x02\xc6\x6e\xcd\xd5\xb2\x76\xfd\x4f\xdb\x6e\x0d\
\xed\x49\x35\x57\xdc\x65\x29\x74\x51\xc7\x2b\xa7\x92\x45\x48\xa4\
\xf7\x5e\xeb\xe8\xf1\xf0\x2f\xfe\x14\xfd\xf0\x1b\xf9\x88\x7c\xb0\
\xea\x9f\x87\x7d\x2b\xd4\x5f\x2f\xf6\xbf\x66\xf7\x07\xf7\xe7\xfb\
\xb5\x9d\xed\x1d\x83\xd3\x18\x5d\x89\x43\xfe\x8f\xfa\xdb\x78\xf6\
\x8e\x67\xf8\xee\x4f\x69\xf7\xfe\xf6\xdc\x14\xdf\x73\xb7\xf6\x4d\
\x5c\x34\xbf\x6f\x8b\xaa\xd7\x59\x24\x48\xfe\x38\xd9\xe5\x8f\xdd\
\x7b\xab\x7d\xf9\xe9\xf3\x57\xab\x3f\x97\x7f\xc4\xfe\xd6\xf9\x89\
\xdd\x58\x0e\xc0\xdd\x1d\x65\xd3\xff\x00\xdc\x6f\xef\x2e\x0b\xab\
\xb1\x5b\x77\x35\xbe\xeb\xbf\xd2\x07\x64\xec\xee\xae\xc3\x7f\x02\
\xc6\x6e\xcd\xd5\xb2\x76\xfd\x4f\xdb\x6e\x0d\xed\x49\x35\x57\xdc\
\x65\x29\x74\x51\xc7\x2b\xa7\x92\x45\x48\xa4\xf7\x5e\xea\xa0\xbe\
\x05\xff\x00\xc2\x9f\xbe\x03\x7f\x31\x0f\x96\x1d\x53\xf0\xef\xa5\
\x7a\x8b\xe5\xfe\xd7\xec\xde\xe0\xfe\xfc\xff\x00\x76\xb3\xbd\xa3\
\xb0\x7a\x63\x0b\xb1\x28\x7f\xd1\xff\x00\x5b\x6f\x1e\xd1\xcc\xff\
\x00\x1d\xc9\xed\x3e\xff\x00\xde\xdb\x82\x9b\xee\x76\xfe\xc9\xab\
\x86\x97\xed\xf1\x75\x5a\xeb\x24\x89\x1f\xc7\x1b\x3c\xb1\xfb\xaf\
\x75\xb1\xdf\xbf\x75\xee\xb9\x2f\xea\x1f\xef\xbe\x9c\xfb\xf7\x5e\
\xeb\x37\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd5\
\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\x17\xfd\x27\xfd\x87\xfb\
\xd8\xf7\xee\xbd\xd6\x1f\x7e\xeb\xdd\x68\x8f\xfc\xe5\xff\x00\xe1\
\x30\x3f\x3e\x7f\x98\x87\xf3\x25\xf9\x1f\xf3\x13\xa5\x7b\x77\xe2\
\x06\xd7\xeb\x2e\xe0\xff\x00\x44\x1f\xdd\xac\x17\x68\xef\xee\xe7\
\xc2\xef\xba\x1f\xf4\x7f\xd0\xdd\x5d\xd5\xd9\x9f\xe3\xb8\xcd\xa7\
\xd0\x1b\xdb\x6f\xd3\x7d\xce\xe0\xd9\x35\x73\x52\xfd\xbe\x52\xab\
\x5d\x1c\x91\x3b\xf8\xe4\x67\x8a\x3f\x75\xee\xab\x07\xfe\x80\xac\
\xfe\x69\x9f\xf3\xff\x00\x3e\x00\xff\x00\xe8\xd3\xf9\x13\xff\x00\
\xdc\xad\xef\xdd\x7b\xad\x59\x3e\x42\x74\xae\xe9\xf8\xd9\xdf\x9d\
\xe1\xf1\xd3\x7d\x57\xed\xfc\xae\xf6\xe8\x2e\xdf\xec\xbe\x95\xde\
\x39\x4d\xa7\x55\x91\xae\xda\xd9\x2d\xd3\xd5\x7b\xd3\x35\xb1\x77\
\x0d\x7e\xda\xad\xcc\x62\xb0\x59\x6a\xcd\xbf\x59\x96\xc1\x4d\x25\
\x1c\xb5\x54\x34\x75\x32\x53\x32\x34\xb0\x42\xe5\xa3\x5f\x75\xee\
\xb6\x3c\xf8\xf7\xff\x00\x09\x17\xfe\x64\x5f\x24\xfa\x0f\xa3\xfe\
\x45\xec\x5e\xec\xf8\x43\x8a\xd9\x3d\xfb\xd4\x1d\x69\xdd\x5b\x3b\
\x17\xbb\x3b\x23\xbe\x28\x77\x4e\x37\x6b\x76\xa6\xcb\xc2\xef\xad\
\xbd\x41\xb9\x68\xb0\xff\x00\x1a\xf3\xb8\x9a\x3d\xc1\x47\x89\xce\
\xc3\x1d\x64\x54\xb5\xd5\x94\xd1\xd4\xab\xac\x53\xcc\x81\x64\x6f\
\x75\xee\xbe\x96\xdf\x08\xfa\x57\x74\xfc\x6c\xf8\x61\xf1\x13\xe3\
\xa6\xfa\xaf\xdb\xf9\x5d\xed\xd0\x5f\x18\x3a\x0b\xa5\x77\x8e\x53\
\x69\xd5\x64\x6b\xb6\xb6\x4b\x74\xf5\x5f\x54\xed\x3d\x8b\xb8\x6b\
\xf6\xd5\x6e\x63\x15\x82\xcb\x56\x6d\xfa\xcc\xb6\x0a\x69\x28\xe5\
\xaa\xa1\xa3\xa9\x92\x99\x91\xa5\x82\x17\x2d\x1a\xfb\xaf\x75\x40\
\x7f\x21\x3f\xe1\x5d\x1f\xcb\x77\xe3\x67\x7e\x77\x87\xc7\x4d\xf5\
\xd2\x7f\x37\xb2\xbb\xdb\xa0\xbb\x7f\xb2\xfa\x57\x78\xe5\x36\x9f\
\x5b\xf4\x3d\x76\xd6\xc9\x6e\x9e\xab\xde\x99\xad\x8b\xb8\x6b\xf6\
\xd5\x6e\x63\xe4\xa6\x0b\x2d\x59\xb7\xeb\x32\xd8\x29\xa4\xa3\x96\
\xaa\x86\x8e\xa6\x4a\x66\x46\x96\x08\x5c\xb4\x6b\xee\xbd\xd0\x41\
\xff\x00\x41\xa9\xff\x00\x2b\x3f\xf9\xf0\x7f\x3f\xbf\xf4\x56\x7c\
\x76\xff\x00\xee\xa9\xf7\xee\xbd\xd7\xce\xa3\xe6\xe7\x75\x6d\x6f\
\x92\x7f\x33\xfe\x5d\xfc\x8b\xd8\xb4\x1b\x83\x15\xb2\x7b\xf7\xe4\
\xff\x00\x7e\xf7\x56\xce\xc5\xee\xca\x5c\x75\x0e\xe9\xc6\xed\x6e\
\xd4\xed\x6d\xd9\xbe\xb6\xf5\x06\xe5\xa2\xc3\xe5\x73\xb8\x9a\x3d\
\xc1\x47\x89\xce\xc3\x1d\x64\x54\xb5\xd5\x94\xd1\xd4\xab\xac\x53\
\xcc\x81\x64\x6f\x75\xee\xaf\xf3\xe3\xdf\xfc\x24\x5f\xf9\x91\x7c\
\x93\xe8\x3e\x8f\xf9\x17\xb1\x7b\xb3\xe1\x0e\x2b\x64\xf7\xef\x50\
\x75\xa7\x75\x6c\xec\x5e\xec\xec\x8e\xf8\xa1\xdd\x38\xdd\xad\xda\
\x9b\x2f\x0b\xbe\xb6\xf5\x06\xe5\xa2\xc3\xfc\x6b\xce\xe2\x68\xf7\
\x05\x1e\x27\x3b\x0c\x75\x91\x52\xd7\x56\x53\x47\x52\xae\xb1\x4f\
\x32\x05\x91\xbd\xd7\xba\xd8\x73\xa9\xff\x00\xe1\x4f\xdf\x01\xbf\
\x96\xc7\x56\x75\xa7\xf2\xe9\xef\x3e\xa2\xf9\x7f\xba\xfb\xb3\xe0\
\x2f\x5f\xec\xdf\x85\x5d\xc5\xba\x3a\x9f\x60\xf4\xc6\x77\xab\x37\
\x27\x69\xfc\x58\xdb\xb8\xde\x8c\xec\x1c\xff\x00\x5a\x66\xf7\x87\
\x7f\xec\x4d\xdb\x98\xeb\xfc\xc6\xed\xd8\x95\x75\x18\x6a\xac\xa6\
\x0f\x0d\x91\xa8\xc7\x49\x0c\x95\x34\x34\x93\x33\xd3\xc7\xee\xbd\
\xd7\xcf\x9f\xe6\xe7\x75\x6d\x6f\x92\x7f\x33\xfe\x5d\xfc\x8b\xd8\
\xb4\x1b\x83\x15\xb2\x7b\xf7\xe4\xff\x00\x7e\xf7\x56\xce\xc5\xee\
\xca\x5c\x75\x0e\xe9\xc6\xed\x6e\xd4\xed\x6d\xd9\xbe\xb6\xf5\x06\
\xe5\xa2\xc3\xe5\x73\xb8\x9a\x3d\xc1\x47\x89\xce\xc3\x1d\x64\x54\
\xb5\xd5\x94\xd1\xd4\xab\xac\x53\xcc\x81\x64\x6f\x75\xee\xbe\x8a\
\xff\x00\xf4\x1a\x9f\xf2\xb3\xff\x00\x9f\x07\xf3\xfb\xff\x00\x45\
\x67\xc7\x6f\xfe\xea\x9f\x7e\xeb\xdd\x50\x1f\xfd\x01\x59\xfc\xd3\
\x3f\xe7\xfe\x7c\x01\xff\x00\xd1\xa7\xf2\x27\xff\x00\xb9\x5b\xdf\
\xba\xf7\x5a\x82\xfb\xf7\x5e\xe8\xff\x00\xff\x00\x29\xdf\xfb\x7a\
\x6f\xf2\xd3\xff\x00\xc5\xff\x00\xf8\x6f\xff\x00\xc1\x15\xd7\x3e\
\xfd\xd7\xba\xdd\xc7\xfe\x16\x68\xb5\xcc\xbf\xcb\x8b\xec\xb5\x01\
\xa7\xe6\x08\xa8\x64\xb2\xb0\x8c\x8f\x8b\x9e\x93\x20\xf5\x88\x98\
\x02\x58\x5f\x49\xb0\xbf\xd0\x7b\x43\x78\x48\x11\xd3\xe7\xfe\x4e\
\x8d\xf6\xa0\x0f\x8e\x69\xfc\x3f\xe5\xeb\x4c\x7e\x9e\xda\x4b\x96\
\xdc\xd2\x57\x55\xa5\x3c\x90\xed\xaa\x24\xdc\x49\x0c\xae\x3c\x55\
\x55\x78\xdc\x85\x0c\xd0\x51\x3c\x5e\x26\x5a\xaf\xb9\x50\xe3\xc2\
\x4a\xf9\x00\x23\x50\xf7\x5d\xba\x31\x24\xe5\x98\x61\x06\xaf\xd8\
\x47\x46\xb7\x01\xa3\x45\xc8\xab\x1a\x7e\xde\xb7\x42\xfe\x52\x9b\
\x1a\x93\x3b\xf2\x02\x6c\x96\x4a\x94\x64\x13\x60\x75\x8e\x52\xb6\
\x19\xaa\x5b\xcd\xe2\xcb\x64\xa5\xc4\xed\xa8\xe6\x93\x5c\x64\x4f\
\x34\xd8\xfc\x8d\x60\xe7\x4d\xee\x5b\xf1\x6f\x63\xfd\xd7\x54\x56\
\xf1\xa0\x39\x24\x57\xf2\x1f\xe7\xe8\x30\xf2\x96\xd4\x01\xc5\x7a\
\x0a\x3e\x59\x6e\x0a\xee\xd4\xf9\xd1\xf2\x1a\x93\x70\x56\x3d\x66\
\xc3\xeb\xbc\xd6\x1f\x0d\x49\x1d\x74\xc6\x8f\x19\x45\x56\x9b\x4f\
\x03\x80\xaa\xa5\x82\x59\x24\xf1\x16\x9f\x2d\x84\x66\x7d\x2c\xba\
\xa4\x82\xe7\x9f\x49\x55\xcb\xf6\x71\xcc\xe6\x49\x50\x78\x0a\xb9\
\xad\x00\xcd\x42\xff\x00\xab\xe5\xd1\x3e\xf7\x7b\x25\xad\x94\x51\
\xdb\xb1\x17\x0e\xd8\xa0\xa9\xa0\xc9\xff\x00\x27\xed\xe8\x9b\x6f\
\xec\x4d\x75\x6e\xe9\xcf\xee\x3a\x09\xf1\x19\x0c\x14\x95\x98\xda\
\x4c\x5b\x60\xea\xd3\x20\xed\x1c\xf8\xbb\x36\xb8\xa9\x0c\xf1\x08\
\xa2\x7c\x69\x5b\xa9\x1a\x48\xb7\x3c\xd9\x66\xe5\x04\x8d\x73\x75\
\x72\xba\x5a\x32\xcb\x4d\x26\xbf\x87\xe5\x5e\x14\xa7\x56\xd8\xee\
\xa2\x16\x96\xd6\x8e\x58\x4e\x11\x89\xd4\x29\xf8\xbd\x4d\x2b\xc7\
\xa5\x47\x5e\xf5\xde\x5b\x2d\x3e\x37\x70\x1a\x69\x69\xe0\xa7\xab\
\x82\xae\x86\xaa\x67\x31\xd2\xcd\x1c\x0b\x5f\x23\xb4\x91\xb4\x33\
\x2c\xd0\x7d\xed\x1c\x28\xdc\x5f\x4b\x9d\x36\xbe\xa0\xfe\xd3\xb6\
\x4d\x70\xf1\x5d\x14\xa4\x41\x81\x52\x78\x62\xbc\x70\x71\x50\x07\
\xe7\xd5\x77\x9d\xe2\x0b\x64\x9e\xd0\x49\x59\x0a\x90\x40\xe2\x09\
\xd3\xf3\x14\xc1\x27\xf2\xe9\x45\xb9\xf6\x2e\x4b\x2b\xb9\xb3\x72\
\xe4\xe7\xda\xd1\xbd\x76\xdd\xfb\x7c\x3a\x43\x5f\x25\x2d\x74\xd9\
\xea\x43\x01\xc7\x78\x20\xa8\x45\xd5\x24\xb4\xb4\x45\x1c\xaa\x95\
\x65\xd6\x05\xb9\xb1\x8d\xd5\x84\x93\x5e\x5c\x34\xcd\x0d\x1a\x2a\
\x2e\x69\xdc\x29\xa4\x01\x8c\xd0\x7a\x7a\xf4\x4f\x67\xbb\x45\x6f\
\x65\x02\xc2\x26\xaa\xcd\xa9\xaa\x2a\x34\x9f\x8b\x35\xe1\x9a\xfa\
\xf4\x5a\x72\x71\x57\x61\x72\x59\x1c\x4d\x78\x68\x6a\xa8\x2b\x24\
\xa7\x9e\x23\xcf\xac\x2a\x33\x3a\x11\x60\xf1\x4a\x5f\x5a\xb7\xd1\
\x95\x81\x1f\x5f\x64\x3e\x13\xc4\xd2\x47\x20\xc8\x62\x3a\x16\xc5\
\x75\xe3\x45\x14\xd1\x37\x63\x28\x23\xf3\xff\x00\x56\x7e\x7d\x07\
\x3d\x89\x3a\xd5\x75\xe6\xfd\xa3\x90\x86\x0f\xb6\xf3\xc5\x23\x6b\
\x7a\x88\xc6\xc9\x52\x08\xb9\xfa\x89\x6e\x7f\xd8\x7b\x2f\xdd\x93\
\x56\xd7\xb8\x28\x1f\xe8\x2f\xff\x00\x1d\x3d\x2e\xdb\xe5\x61\x7f\
\x66\x4b\x7f\xa2\xaf\xf8\x47\x54\x8d\xbf\x8a\x8c\x9d\x29\x00\x59\
\xa8\x97\x91\xfd\x04\xd2\xde\xfc\xdf\xf3\xee\x1f\xdb\x43\x08\x5c\
\x37\x1d\x5f\xe4\x1d\x0f\x6f\xff\x00\xb4\x4f\xb3\xaf\xa1\xef\xfc\
\x24\x13\xfe\xdd\xad\xde\x1f\xf8\xbc\x9d\x95\xff\x00\xbe\x0f\xe3\
\x3f\xb1\x2d\x97\xf6\x4d\xfe\x9b\xfc\x83\xa0\x4e\xf5\xfe\xe5\x47\
\xff\x00\x34\xc7\xf8\x5b\xad\xa9\x3d\xac\xe8\xa3\xa0\x83\xe4\x27\
\x75\x6d\x6f\x8d\x9d\x07\xde\x1f\x22\xf7\xd5\x06\xe0\xca\xec\x9e\
\x82\xea\x0e\xcb\xee\xad\xe3\x8b\xda\x74\xb8\xea\xed\xd3\x92\xda\
\xdd\x57\xb2\xf3\x5b\xeb\x70\xd0\x6d\xaa\x2c\xc6\x57\x05\x89\xac\
\xdc\x15\x98\x9c\x14\xd1\xd1\xc5\x55\x5d\x47\x4d\x25\x4b\x22\xcb\
\x3c\x28\x5a\x45\xf7\x5e\xeb\x52\x5e\xd8\xff\x00\x85\x3f\x7c\x06\
\xfe\x64\xfd\x59\xd9\x7f\xcb\xa7\xa3\x3a\x8b\xe5\xfe\xd4\xee\xcf\
\x9f\x5d\x7f\xbc\xbe\x15\x74\xee\xe8\xed\x8d\x83\xd3\x18\x2e\xac\
\xdb\x7d\xa7\xf2\x9f\x6e\xe4\xba\x33\xaf\xb3\xfd\x97\x9b\xd9\xfd\
\xff\x00\xbe\xf7\x6e\x1f\xaf\xf0\xfb\xb7\x7d\xd2\x54\x66\x6a\xb1\
\x78\x3c\xce\x46\x9f\x1d\x1c\xd2\x53\x50\xd5\xcc\xa9\x4f\x27\xba\
\xf7\x54\x85\xff\x00\x40\x56\x7f\x34\xcf\xf9\xff\x00\x9f\x00\x7f\
\xf4\x69\xfc\x89\xff\x00\xee\x56\xf7\xee\xbd\xd5\x9f\x7f\x26\x8f\
\xf8\x4c\x0f\xcf\x9f\xe5\xdf\xfc\xc9\x7e\x38\x7c\xc4\xee\xae\xdd\
\xf8\x81\xba\x3a\xcb\xa7\xff\x00\xd2\xff\x00\xf7\x97\x05\xd5\xdb\
\xfb\xb9\xf3\x5b\xee\xbb\xfd\x20\x74\x37\x68\xf5\x76\x1b\xf8\x16\
\x33\x76\x74\x06\xc9\xdb\xf5\x3f\x6d\xb8\x37\xb5\x24\xd5\x5f\x71\
\x94\xa5\xd1\x47\x1c\xae\x9e\x49\x15\x22\x93\xdd\x7b\xab\xbc\xff\
\x00\x85\x45\xff\x00\xdb\x8a\xbe\x72\xff\x00\xe5\xb3\x7f\xf0\x61\
\x7c\x7d\xf7\xee\xbd\xd6\x80\xff\x00\xf0\x97\x4f\xfb\x7e\xaf\xc1\
\xaf\xfc\xb9\x9f\xfe\x03\xdf\x90\x5e\xfd\xd7\xba\xfa\x5b\xff\x00\
\x39\x7f\x85\x5d\xa7\xfc\xc4\x3f\x96\xd7\xc8\xff\x00\x87\x7d\x2b\
\x9f\xeb\xfd\xaf\xd9\xbd\xc1\xfe\x88\x3f\xbb\x59\xde\xd1\xca\xee\
\x2c\x2e\xc4\xa1\xff\x00\x47\xfd\xf3\xd5\xdd\xa3\x99\xfe\x3b\x93\
\xda\x7b\x57\x7b\x6e\x0a\x6f\xb9\xdb\xfb\x26\xae\x1a\x5f\xb7\xc5\
\xd5\x6b\xac\x92\x24\x7f\x1c\x6c\xf2\xc7\xee\xbd\xd6\xb0\x9f\xc9\
\xa3\xfe\x13\x03\xf3\xe7\xf9\x77\xff\x00\x32\x5f\x8e\x1f\x31\x3b\
\xab\xb7\x7e\x20\x6e\x8e\xb2\xe9\xff\x00\xf4\xbf\xfd\xe5\xc1\x75\
\x76\xfe\xee\x7c\xd6\xfb\xae\xff\x00\x48\x1d\x0d\xda\x3d\x5d\x86\
\xfe\x05\x8c\xdd\x9d\x01\xb2\x76\xfd\x4f\xdb\x6e\x0d\xed\x49\x35\
\x57\xdc\x65\x29\x74\x51\xc7\x2b\xa7\x92\x45\x48\xa4\xf7\x5e\xea\
\xef\x3f\xe1\x51\x7f\xf6\xe2\xaf\x9c\xbf\xf9\x6c\xdf\xfc\x18\x5f\
\x1f\x7d\xfb\xaf\x75\xf2\xc9\xf8\x17\xf0\xab\xb4\xff\x00\x98\x87\
\xcb\x0e\xa9\xf8\x77\xd2\xb9\xfe\xbf\xda\xfd\x9b\xdc\x1f\xdf\x9f\
\xee\xd6\x77\xb4\x72\xbb\x8b\x0b\xb1\x28\x7f\xd1\xff\x00\x5b\x6f\
\x1e\xd1\xcc\xff\x00\x1d\xc9\xed\x3d\xab\xbd\xb7\x05\x37\xdc\xed\
\xfd\x93\x57\x0d\x2f\xdb\xe2\xea\xb5\xd6\x49\x12\x3f\x8e\x36\x79\
\x63\xf7\x5e\xeb\x6b\xbf\x8b\x9f\xc9\x5b\xe5\x37\xfc\x27\x7b\xbd\
\x76\x37\xf3\x89\xf9\xab\xbf\xba\x03\xb3\xfe\x33\x7c\x40\xfe\xf3\
\x7f\xa4\xbd\x8d\xf1\x73\x74\xf6\x2e\xf5\xef\x5c\xe7\xfb\x30\x1b\
\x3b\x70\x7c\x5c\xd9\xbf\xdc\x6d\xb3\xdb\x1d\x57\xd2\x7d\x7f\x93\
\xfe\x19\xbf\xfb\xb7\x15\x59\x93\xfb\xfd\xcf\x8c\xf0\xe1\xe9\xea\
\xe5\x83\xee\x2a\x63\x86\x92\x7f\x75\xee\x97\xff\x00\xce\x5f\xfe\
\x14\xfd\xf0\x1b\xf9\x88\x7f\x2d\xaf\x91\xff\x00\x0e\xfa\x57\xa8\
\xbe\x5f\xed\x7e\xcd\xee\x0f\xf4\x41\xfd\xda\xce\xf6\x8e\xc1\xe9\
\x8c\x2e\xc4\xa1\xff\x00\x47\xfd\xf3\xd5\xdd\xa3\x99\xfe\x3b\x93\
\xda\x7d\xff\x00\xbd\xb7\x05\x37\xdc\xed\xfd\x93\x57\x0d\x2f\xdb\
\xe2\xea\xb5\xd6\x49\x12\x3f\x8e\x36\x79\x63\xf7\x5e\xea\x90\xff\
\x00\xe1\x2e\x9f\xf6\xfd\x5f\x83\x5f\xf9\x73\x3f\xfc\x07\xbf\x20\
\xbd\xfb\xaf\x75\xf5\xf4\xf7\xee\xbd\xd7\x6b\xfa\x87\xfa\xff\x00\
\xef\x7c\x7b\xf7\x5e\xeb\x3f\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xeb\xff\xd6\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\x07\
\xfa\x01\xfe\x3e\xfd\xd7\xba\xc5\xef\xdd\x7b\xad\x41\x7f\x9a\x2f\
\xfc\x2a\xcb\xfe\x1b\x63\xe7\x5f\x79\x7c\x2a\xff\x00\x64\x37\xfd\
\x34\x7f\xa1\x7f\xf4\x67\xff\x00\x19\x2f\xfd\x9a\x2f\xf4\x75\xfd\
\xe4\xff\x00\x48\xbd\x3d\xd7\xdd\xb1\xff\x00\x1e\x6f\xfb\x2e\xbb\
\xef\xf8\x3f\xf0\x7f\xef\xdf\xd8\x7f\xc5\xd6\xab\xee\x3e\xd7\xcf\
\xfb\x5e\x5f\x0c\x7e\xeb\xdd\x10\x1f\xfa\x0e\x67\xff\x00\x05\x79\
\xff\x00\xb3\xb1\xff\x00\xea\x91\xef\xdd\x7b\xaf\x7f\xd0\x29\xbf\
\xf0\xe7\xff\x00\xf6\x32\xdf\xf6\x7c\xbf\xd0\x7f\xfc\x38\x7f\xfc\
\xe7\x37\xfa\x15\xff\x00\x65\x77\xfd\x25\xff\x00\xa2\x0f\xf6\x6d\
\x7f\xe3\x3e\xff\x00\xa2\xef\xf4\x8f\xfe\xcc\x57\x5f\xff\x00\xa4\
\x0f\xee\x07\xf7\xff\x00\xf8\x4f\xf1\xbf\xe0\x38\x4f\xe2\xbf\x69\
\xf7\x5f\x61\x47\xe5\xfb\x78\xfd\xd7\xba\xf7\xfd\x05\x65\xff\x00\
\x0d\x81\xff\x00\x62\xd2\xff\x00\x64\x37\xfd\x38\x7f\xc3\x78\x7f\
\xce\x0c\xff\x00\xa6\xaf\xf6\x68\xbf\xd1\xa7\xfa\x5f\xff\x00\x65\
\x2b\xfe\x30\x17\xfa\x51\xff\x00\x47\x1f\xec\xba\xf6\x07\xfa\x3f\
\xfe\xff\x00\xff\x00\x70\x3f\x8b\x7f\x04\xfe\x3d\x9b\xfe\x15\xf7\
\x7f\x6b\xf7\xf5\x9e\x2f\xb8\x93\xdd\x7b\xad\xde\x7e\x27\xf7\x9f\
\xfb\x34\x1f\x16\x7e\x35\x7c\x96\xfe\xeb\xff\x00\x71\xff\x00\xd9\
\x87\xe8\x0e\x9b\xef\x3f\xee\x57\xf1\xbf\xef\x2f\xf7\x3f\xfd\x2d\
\x75\xd6\xdc\xdf\xdf\xdd\x7f\xef\x1f\xf0\x8d\xbf\xfd\xe0\xfe\xef\
\xff\x00\x78\x3e\xd3\xef\xbe\xc2\x8b\xee\xfc\x3e\x5f\xb7\x87\x57\
\x8d\x7d\xd7\xba\xd4\x17\xe5\x87\xfc\x23\x67\xfd\x9a\x0f\x94\xdf\
\x25\x7e\x4b\x7f\xc3\x8d\xff\x00\x71\xff\x00\xd9\x87\xef\xfe\xe4\
\xef\x3f\xee\x57\xfb\x28\x5f\xde\x5f\xee\x7f\xfa\x5a\xec\x5d\xc7\
\xbf\xbf\xba\xff\x00\xde\x3f\xf6\x68\x36\xff\x00\xf7\x83\xfb\xbf\
\xfd\xe0\xfb\x4f\xbe\xfb\x0a\x2f\xbb\xf0\xf9\x7e\xde\x1d\x5e\x35\
\xf7\x5e\xe8\x00\xff\x00\xa0\x19\xbf\xf0\x68\x7f\xfb\x24\xff\x00\
\xfe\xb6\xfe\xfd\xd7\xba\xd2\x1b\xe5\x87\x46\x7f\xb2\xbf\xf2\x9b\
\xe4\xaf\xc6\x9f\xef\x47\xf7\xe3\xfd\x97\x8e\xff\x00\xee\x4e\x8c\
\xfe\xfa\xff\x00\x04\xfe\xed\x7f\x7c\x3f\xd1\x2f\x62\xee\x3d\x83\
\xfd\xe8\xfe\xee\x7f\x17\xdc\x1f\xdd\xff\x00\xef\x07\xf7\x7f\xee\
\xfe\xc7\xef\xeb\x7e\xd3\xcd\xe2\xfb\x89\xb4\xf9\x1b\xdd\x7b\xad\
\xbe\xbe\x27\xff\x00\xc2\xc9\xbf\xd9\x5f\xf8\xb3\xf1\xab\xe3\x4f\
\xfc\x37\x27\xf7\xe3\xfd\x97\x8e\x80\xe9\xbe\x8c\xfe\xfa\xff\x00\
\xb3\x7b\xfd\xda\xfe\xf8\x7f\xa2\x5e\xba\xdb\x9b\x07\xfb\xd1\xfd\
\xdc\xff\x00\x65\x7f\x70\x7f\x77\xff\x00\xbc\x1f\xdd\xff\x00\xbb\
\xfb\x1f\xbf\xad\xfb\x4f\x37\x8b\xee\x26\xd3\xe4\x6f\x75\xee\xb5\
\x05\xf9\x61\xde\x7f\xec\xd0\x7c\xa6\xf9\x2b\xf2\x5b\xfb\xaf\xfd\
\xc7\xff\x00\x66\x1f\xbf\xfb\x93\xbc\xff\x00\xb9\x5f\xc6\xff\x00\
\xbc\xbf\xdc\xff\x00\xf4\xb5\xd8\xbb\x8f\x7f\x7f\x75\xff\x00\xbc\
\x7f\xc2\x36\xff\x00\xf7\x83\xfb\xbf\xfd\xe0\xfb\x4f\xbe\xfb\x0a\
\x2f\xbb\xf0\xf9\x7e\xde\x1d\x5e\x35\xf7\x5e\xeb\x6f\xaf\x89\xff\
\x00\xf0\x8d\x9f\xf6\x68\x3e\x2c\xfc\x6a\xf9\x2d\xff\x00\x0e\x37\
\xfd\xc7\xff\x00\x66\x1f\xa0\x3a\x6f\xbc\xff\x00\xb9\x5f\xec\xa1\
\x7f\x79\x7f\xb9\xff\x00\xe9\x6b\xae\xb6\xe6\xfe\xfe\xeb\xff\x00\
\x78\xff\x00\xd9\xa0\xdb\xff\x00\xde\x0f\xee\xff\x00\xf7\x83\xed\
\x3e\xfb\xec\x28\xbe\xef\xc3\xe5\xfb\x78\x75\x78\xd7\xdd\x7b\xad\
\x21\xbd\xfb\xaf\x75\xbf\xc7\xfd\x07\x33\xff\x00\x82\xbc\xff\x00\
\xd9\xd8\xff\x00\xf5\x48\xf7\xee\xbd\xd6\x80\xfe\xfd\xd7\xba\xfa\
\x3c\x7c\x4d\xff\x00\x84\x6c\xff\x00\xb2\xbf\xf2\x9f\xe3\x47\xc9\
\x6f\xf8\x71\xbf\xef\xc7\xfb\x2f\x1f\x20\x3a\x6b\xbc\xff\x00\xb9\
\x5f\xec\xa1\x7f\x76\xbf\xbe\x1f\xe8\x97\xb1\x76\xe6\xfe\xfe\xeb\
\xff\x00\x78\xff\x00\xd9\xa0\xdc\x1f\xdd\xff\x00\xef\x07\xf7\x7f\
\xed\x3e\xfb\xec\x2b\x7e\xd3\xcd\xe5\xfb\x79\xb4\xf8\xdb\xdd\x7b\
\xa7\x7f\xf8\x58\xaa\x09\x25\xfe\x5c\x8a\xce\xa2\x32\xdf\x2e\x56\
\x64\x64\x57\x12\x40\xcd\xf1\x7c\x4a\x2e\xde\xa4\x3a\x78\xd4\x39\
\x17\xf6\x8a\xec\xd1\xa1\x07\xe1\x35\xaf\xf2\xcf\x47\xbb\x2a\x6b\
\x17\x54\xe2\x34\xff\x00\xcf\xdd\x69\x99\xd5\xd5\x12\x63\x73\xb4\
\x74\x71\x92\x5b\x2d\x9f\xdb\x54\x35\x5e\x35\x27\xfd\xc6\x49\x59\
\x51\x16\x41\x1d\xa3\xf2\x2f\x85\x8c\xd1\xea\xb9\x00\xd8\x7b\xde\
\xd2\xea\x27\xd1\x5c\xb3\x28\xf5\xc1\x26\xbf\xe4\xe8\xd2\xfa\x36\
\xf0\x83\x81\xc1\x49\xfc\xe9\x8e\xb7\x6f\xfe\x4d\x0d\x0c\xfd\x97\
\xdf\xcc\xe5\x4d\x4d\x16\xd0\xd9\x10\x40\x2e\x35\xac\x15\xb9\x2c\
\xa4\xd5\x60\x0e\x08\x56\x96\x96\x2b\xff\x00\xac\x3d\xc8\x9c\xc5\
\x17\x86\xb6\xd8\xf3\x3f\xe4\xe8\x0b\x6e\xe5\xcb\x54\xd7\x03\xf9\
\xf4\xcb\xb4\x3e\x3c\x6d\x9f\x93\x9f\x2f\x3b\xc7\x6a\x6e\x0c\x7e\
\xe9\xa3\xd9\x8b\xd8\x7d\xb7\x9f\xec\xbc\xde\xca\xdc\xb2\xe2\x73\
\x79\xbc\xce\x27\x7b\x66\x71\x9d\x77\xb5\xea\xf2\x18\xc8\xe3\xcc\
\xed\xea\x29\xe9\xeb\x2b\xb2\x0a\xd1\x96\x6a\x91\x86\x11\x96\x11\
\x3b\xab\x11\x5d\xee\x57\x16\xb6\x50\x59\xdb\x39\x8c\xc8\xaa\x49\
\x15\x04\xd0\x03\x4a\xfd\xad\xe5\xd2\x84\xb0\x86\x69\x45\xe4\xa3\
\x58\x50\x40\x07\x2a\xb5\xc1\x39\xf5\xa7\x49\xdd\x83\xf1\x63\x15\
\xda\xbd\xb3\xb8\x2a\x36\x47\x4a\x65\x7a\x83\xad\x76\xfe\xd9\xa1\
\xcd\x50\x62\x32\x5b\xaf\x74\xee\xc8\x77\x0b\xd6\xd1\x6d\xfc\x40\
\xa0\x95\x77\xfe\x7a\x9a\x0c\xb3\x51\xe4\xeb\xea\x6b\x45\x6e\x26\
\x82\x9a\x5a\x33\x68\x2a\x59\x96\xa2\xf2\x05\x39\x6b\x9e\x1a\xeb\
\x71\xb8\xb7\xfa\x80\xf0\xa2\x9a\x86\x66\x61\x50\x74\xe4\x11\x82\
\x09\xc1\x14\xfc\xc7\x49\x0f\x85\xb8\x19\xa0\x82\x15\x49\x53\x83\
\x20\xa3\x71\xc8\xf2\xc6\x38\x74\x64\x71\x1f\x17\xf6\x5c\xcb\x06\
\xcf\xdb\xf9\x25\xa2\x97\xc6\x71\x94\x30\xd0\x1c\x6c\xb3\x53\x3c\
\xb7\x88\x35\x28\xa8\xaa\x96\x2a\xba\x88\xe4\x7d\x76\x63\x26\xb7\
\x1e\xa0\x79\xf7\x23\x47\xce\xf6\x71\x43\xf4\xb6\xf3\x44\xa0\x0a\
\x00\x09\xc7\xf2\x3f\xf1\x7d\x26\x9b\x94\x2f\x9d\x8d\xdd\xd5\xbc\
\xcd\x53\x52\xc4\x71\xff\x00\x30\xa7\xf2\xe8\x0a\xde\xdf\x13\x30\
\x47\x36\x9b\x1b\x1b\xd4\x5d\xa7\xb8\x7b\x1a\x93\xb6\x31\x54\x2d\
\xd8\x95\x1d\x95\xbf\x71\x54\xb9\x1d\xa9\x55\xb4\x21\xcb\xd5\xc1\
\x4f\x84\xc6\xd5\x61\xb6\x2e\xd1\x9d\xf3\x55\xed\x49\x8f\xac\x56\
\x48\x22\xfd\x81\x2c\x35\x7e\x49\x05\x4c\x59\xbc\x73\xfe\xe3\x0f\
\x30\x0b\x08\xe6\x76\x63\x2a\x50\xea\x61\x87\x20\x76\x80\x02\xe3\
\x57\xcf\x81\xa8\xe3\x47\x4f\xd2\x5a\x18\xac\x56\xc2\x32\x08\x50\
\xc4\xae\x73\xc6\xa6\x9f\xe5\xea\xb6\x7e\x54\xf4\x8e\x6b\xa4\x3b\
\xd7\x76\x6c\x8c\xb5\x5e\x4a\xa2\x2f\xe1\x3b\x33\x71\xd1\xc1\x9a\
\x92\x82\xbb\x37\x87\x8f\x73\xec\x9d\xb9\x99\x93\x6f\xe4\x33\x58\
\xea\x96\x83\x3f\x26\xdd\xae\xab\x9e\x88\x57\x3c\x51\xcd\x58\x90\
\x2c\xb2\x6a\x76\x2e\xf2\x9e\xc9\x3d\xd6\xe1\x66\xb7\x37\x5d\xc4\
\x9a\x57\xcf\x80\xe3\xea\x7e\x74\xe9\x54\x86\x28\x04\x71\xdb\x20\
\x11\x81\xc3\xc8\x64\xe3\xfd\x8e\x89\xde\xf0\x85\xa6\xc3\xee\xba\
\x1d\x3a\xb5\x60\x32\x91\x85\x03\x99\x16\x6c\x73\x46\xef\x6b\xda\
\xe1\x65\x23\xfd\x87\xb5\x5b\x85\xb6\xab\x3b\xb5\x1e\x71\x30\xa7\
\xe4\x7a\x7a\xce\x7d\x37\x16\xec\xc7\xb8\x48\xa7\xf9\x8e\xa9\x1f\
\x7f\x48\x86\xb6\x85\xa3\x75\x7f\xf2\x67\x53\xa5\x83\x01\x69\x75\
\x00\x6c\x4d\x8d\x9f\xdc\x1f\xb7\x6a\xf0\x9b\x58\x35\xaf\x52\x65\
\xf3\x02\xe9\x43\x5c\x75\xf4\x42\xff\x00\x84\x81\x1b\xff\x00\x2d\
\x5e\xf0\xe2\xd6\xf9\xcb\xd9\x43\xff\x00\x60\x17\xc6\x63\xff\x00\
\x13\xec\x4b\x65\x4f\x08\xd0\xfe\x2f\xf2\x0e\x81\x5b\xd7\xfb\x95\
\x1f\xfc\xd3\x1f\xe1\x6e\x89\x5f\xc4\xff\x00\xf8\x59\x37\xfb\x34\
\x1f\x29\xbe\x35\x7c\x69\xff\x00\x86\xe4\xfe\xe3\xff\x00\xb3\x0f\
\xdf\xfd\x37\xd1\x9f\xdf\x5f\xf6\x6f\x7f\xbc\xbf\xdc\xff\x00\xf4\
\xb5\xd8\xbb\x73\x60\xff\x00\x7a\x3f\xbb\x9f\xec\xaf\xed\xff\x00\
\xef\x07\xf7\x7f\xfb\xc1\xf7\x7f\x63\xf7\xf4\x5f\x77\xe1\xf1\x7d\
\xc4\x3a\xbc\x8a\xaf\xa2\x8e\xb6\xfa\xf9\x61\xd1\x9f\xec\xd0\x7c\
\x59\xf9\x2b\xf1\xa7\xfb\xd1\xfd\xc7\xff\x00\x66\x1f\xa0\x3b\x93\
\xa3\x3f\xbe\xbf\xc1\x3f\xbc\xbf\xdc\xff\x00\xf4\xb5\xd7\x5b\x8f\
\x60\xff\x00\x7a\x3f\xbb\x9f\xc5\xf6\xff\x00\xf7\x83\xfb\xbf\xfd\
\xe0\xfb\xbf\xb1\xfb\xfa\x2f\xbb\xf0\xf8\xbe\xe2\x1d\x5e\x45\xf7\
\x5e\xeb\x50\x5f\x89\xff\x00\xf0\x8d\x9f\xf6\x57\xfe\x53\x7c\x6a\
\xf9\x2d\xff\x00\x0e\x37\xfd\xf8\xff\x00\x65\xe3\xbf\xfa\x6f\xbc\
\xff\x00\xb9\x5f\xec\xa1\x7f\x76\xbf\xbe\x1f\xe8\x97\xb1\x76\xe6\
\xfe\xfe\xeb\xff\x00\x78\xff\x00\xd9\xa0\xdc\x1f\xdd\xff\x00\xef\
\x07\xf7\x7f\xed\x3e\xfb\xec\x2b\x7e\xd3\xcd\xe5\xfb\x79\xb4\xf8\
\xdb\xdd\x7b\xad\xbe\xbe\x58\x77\x9f\xfb\x2b\xff\x00\x16\x7e\x4a\
\xfc\x96\xfe\xeb\xff\x00\x7e\x3f\xd9\x78\xe8\x0e\xe4\xef\x3f\xee\
\x57\xf1\xbf\xee\xd7\xf7\xc3\xfd\x12\xf5\xd6\xe3\xdf\xdf\xdd\x7f\
\xef\x1f\xf0\x8d\xc1\xfd\xdf\xfe\xf0\x7f\x77\xfe\xd3\xef\xbe\xc2\
\xb7\xed\x3c\xde\x5f\xb7\x9b\x4f\x8d\xbd\xd7\xba\xd2\x1b\xfe\x83\
\x99\xff\x00\xc1\x5e\x7f\xec\xec\x7f\xfa\xa4\x7b\xf7\x5e\xe8\x80\
\xff\x00\x34\x5f\xf8\x55\x97\xfc\x39\x3f\xc1\x4e\xf2\xf8\x55\xfe\
\xc8\x6f\xfa\x17\xff\x00\x4d\x1f\xe8\xcf\xfe\x32\x5f\xfb\x34\x5f\
\xe9\x17\xfb\xb7\xfe\x8e\xbb\x87\xaf\xbb\x63\xfe\x3c\xdf\xf6\x5d\
\x76\x27\xf1\x8f\xe3\x1f\xdc\x4f\xb0\xff\x00\x8b\xad\x2f\xdb\xfd\
\xd7\x9f\xf7\x7c\x5e\x19\x3d\xd7\xba\xa0\x3f\xe5\x75\xf3\x9b\xfe\
\x1b\x63\xe7\x5f\x46\xfc\xd5\xff\x00\x45\xdf\xe9\xa3\xfd\x0b\xff\
\x00\xa4\xcf\xf8\xc6\x9f\xdf\x6f\xf4\x75\xfd\xe4\xff\x00\x48\xbd\
\x3d\xd8\x3d\x4f\xff\x00\x1f\x97\xf7\x47\x7d\xff\x00\x07\xfe\x0f\
\xfd\xfb\xfb\xff\x00\xf8\xb5\x55\x7d\xc7\xda\xf8\x3f\x6b\xcb\xe6\
\x8f\xdd\x7b\xad\xbe\xbf\xe8\x39\x9f\xfc\x15\xe7\xfe\xce\xc7\xff\
\x00\xaa\x47\xbf\x75\xee\xbd\xff\x00\x41\xcc\xff\x00\xe0\xaf\x3f\
\xf6\x76\x3f\xfd\x52\x3d\xfb\xaf\x75\xef\xf8\x7c\xcf\xfa\x09\x3b\
\xfe\xc4\xad\xfe\xca\xef\xfb\x26\x1f\xec\xe7\xff\x00\xdc\xca\xff\
\x00\xa6\xcf\xf6\x62\xbf\xd1\xb7\xfb\x2e\xbf\xf3\x96\x1f\xf3\x26\
\xff\x00\xd1\x1f\x44\xff\x00\x7c\x7f\xbe\x3f\xe8\x27\xf8\x07\xfc\
\x7d\x58\xaf\xe1\xff\x00\xc5\x7e\xfb\xfc\xa7\xed\xbe\xce\xa3\xdd\
\x7b\xaf\x7f\xc3\x19\xff\x00\xd0\x36\x3f\xf6\x3a\x9f\xf6\x68\xbf\
\xd9\xcf\xff\x00\x64\xc3\xfe\xe5\xab\xfd\x09\xff\x00\xb2\xeb\xfe\
\x92\x7f\xd9\x8a\xff\x00\x9c\x4f\xff\x00\x99\xc9\xfe\x97\x3b\xdb\
\xfb\x9d\xfd\xce\xff\x00\x4e\xdf\xc7\xff\x00\xe3\xd5\xca\xff\x00\
\x10\xfe\x15\xf6\x3f\xe4\xdf\x73\xf7\x94\xfe\xeb\xdd\x10\x1f\xe6\
\x8b\xff\x00\x0a\xb2\xff\x00\x87\x27\xf8\x29\xde\x5f\x0a\xbf\xd9\
\x0d\xff\x00\x42\xff\x00\xe9\xa3\xfd\x19\xff\x00\xc6\x4b\xff\x00\
\x66\x8b\xfd\x22\xff\x00\x76\xff\x00\xd1\xd7\x70\xf5\xf7\x6c\x7f\
\xc7\x9b\xfe\xcb\xae\xc4\xfe\x31\xfc\x63\xfb\x89\xf6\x1f\xf1\x75\
\xa5\xfb\x7f\xba\xf3\xfe\xef\x8b\xc3\x27\xba\xf7\x5a\x82\xfb\xf7\
\x5e\xe8\xff\x00\x7f\x2b\xaf\x9c\xdf\xf0\xdb\x1f\x3a\xfa\x37\xe6\
\xaf\xfa\x2e\xff\x00\x4d\x1f\xe8\x5f\xfd\x26\x7f\xc6\x34\xfe\xfb\
\x7f\xa3\xaf\xef\x27\xfa\x45\xe9\xee\xc1\xea\x7f\xf8\xfc\xbf\xba\
\x3b\xef\xf8\x3f\xf0\x7f\xef\xdf\xdf\xff\x00\xc5\xaa\xab\xee\x3e\
\xd7\xc1\xfb\x5e\x5f\x34\x7e\xeb\xdd\x7d\x1d\xff\x00\x92\xb7\xfc\
\x28\xff\x00\xfe\x1e\x07\xe5\x36\xfe\xf8\xd3\xfe\xc9\xaf\xfb\x2f\
\x1f\xdc\x7e\x80\xdd\x3d\xe7\xfd\xf5\xff\x00\x66\x1f\xfd\x2d\x7f\
\x14\xfe\xed\x76\x2f\x55\xec\x1f\xee\xbf\xf7\x73\xfd\x06\x75\x97\
\xd9\x7d\xef\xfa\x4d\xfb\xbf\xbe\xfb\xf9\xbc\x7f\x65\xe2\xfb\x76\
\xf3\x79\x22\xf7\x5e\xeb\x67\xc1\xf5\x1f\xeb\x8f\xf7\xbf\x7e\xeb\
\xdd\x67\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7f\xff\
\xd7\xdf\xe3\xdf\xba\xf7\x5e\xf7\xee\xbd\xd6\x27\x37\x36\xfe\x9f\
\xef\x7e\xfd\xd7\xba\xe1\xef\xdd\x7b\xaf\x90\x5f\xfc\x2a\x2f\xfe\
\xdf\xab\xf3\x97\xff\x00\x2d\x9b\xff\x00\x80\xf7\xe3\xef\xbf\x75\
\xee\xad\xf7\xe2\x7f\xfc\x23\x67\xfd\x9a\x0f\x8b\x3f\x1a\xbe\x4b\
\x7f\xc3\x8d\xff\x00\x71\xff\x00\xd9\x87\xe8\x0e\x9b\xef\x3f\xee\
\x57\xfb\x28\x5f\xde\x5f\xee\x7f\xfa\x5a\xeb\xad\xb9\xbf\xbf\xba\
\xff\x00\xde\x3f\xf6\x68\x36\xff\x00\xf7\x83\xfb\xbf\xfd\xe0\xfb\
\x4f\xbe\xfb\x0a\x2f\xbb\xf0\xf9\x7e\xde\x1d\x5e\x35\xf7\x5e\xeb\
\x7f\x8f\x89\xfd\x19\xfe\xca\xff\x00\xc5\x9f\x8d\x5f\x1a\x7f\xbd\
\x1f\xdf\x8f\xf6\x5e\x3a\x03\xa6\xfa\x33\xfb\xeb\xfc\x13\xfb\xb5\
\xfd\xf0\xff\x00\x44\xbd\x75\xb7\x36\x0f\xf7\xa3\xfb\xb9\xfc\x5f\
\x70\x7f\x77\xff\x00\xbc\x1f\xdd\xff\x00\xbb\xfb\x1f\xbf\xad\xfb\
\x4f\x37\x8b\xee\x26\xd3\xe4\x6f\x75\xee\xbe\x31\x9f\xcd\x83\xfe\
\xde\x99\xfc\xca\xff\x00\xf1\x7f\xbe\x64\x7f\xf0\x44\xf6\x37\xbf\
\x75\xee\xbe\xbe\x9f\xca\x7f\xfe\xdd\x67\xfc\xb5\x3f\xf1\x40\x7e\
\x1b\xff\x00\xf0\x3b\x75\xcf\xbf\x75\xee\x8f\xf7\xbf\x75\xee\xb4\
\x86\xf9\x61\xff\x00\x0b\x26\xff\x00\x65\x7f\xe5\x37\xc9\x5f\x8d\
\x3f\xf0\xdc\x9f\xdf\x8f\xf6\x5e\x3b\xff\x00\xb9\x3a\x33\xfb\xeb\
\xfe\xcd\xef\xf7\x6b\xfb\xe1\xfe\x89\x7b\x17\x71\xec\x1f\xef\x47\
\xf7\x73\xfd\x95\xfd\xc1\xfd\xdf\xfe\xf0\x7f\x77\xfe\xef\xec\x7e\
\xfe\xb7\xed\x3c\xde\x2f\xb8\x9b\x4f\x91\xbd\xd7\xba\xd0\x1f\xe5\
\x87\x79\xff\x00\xb3\x41\xf2\x9b\xe4\xaf\xc9\x6f\xee\xbf\xf7\x1f\
\xfd\x98\x7e\xff\x00\xee\x4e\xf3\xfe\xe5\x7f\x1b\xfe\xf2\xff\x00\
\x73\xff\x00\xd2\xd7\x62\xee\x3d\xfd\xfd\xd7\xfe\xf1\xff\x00\x08\
\xdb\xff\x00\xde\x0f\xee\xff\x00\xf7\x83\xed\x3e\xfb\xec\x28\xbe\
\xef\xc3\xe5\xfb\x78\x75\x78\xd7\xdd\x7b\xa0\x03\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd6\xef\x3f\x13\xff\x00\xe1\x64\xdf\xec\xaf\xfc\x59\
\xf8\xd5\xf1\xa7\xfe\x1b\x93\xfb\xf1\xfe\xcb\xc7\x40\x74\xdf\x46\
\x7f\x7d\x7f\xd9\xbd\xfe\xed\x7f\x7c\x3f\xd1\x2f\x5d\x6d\xcd\x83\
\xfd\xe8\xfe\xee\x7f\xb2\xbf\xb8\x3f\xbb\xff\x00\xde\x0f\xee\xff\
\x00\xdd\xfd\x8f\xdf\xd6\xfd\xa7\x9b\xc5\xf7\x13\x69\xf2\x37\xba\
\xf7\x5a\x43\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbe\
\xfe\x23\xea\x3f\xd7\x1f\xef\x7e\xfd\xd7\xba\xd2\x2f\xfe\x16\x56\
\xf2\xd3\x43\xfc\xb8\xab\xa3\xfa\x47\x57\xf2\xd2\x95\x86\x90\x56\
\xf5\x29\xf1\x9a\x65\x24\xf2\x41\x02\x8c\xf1\xf9\xbf\xb2\xcd\xc1\
\x80\x78\x12\xb9\x21\x8f\xec\xd3\xfe\x7e\x84\x1b\x1e\xa0\xb7\x6e\
\xbe\x45\x3f\x9e\xbf\xf3\x75\xa6\xff\x00\x59\xee\x68\xf6\xfe\xe4\
\xc7\xe4\xbe\xd2\x3a\xea\x4a\xb9\x68\xe8\x32\x10\x99\xa4\x8b\xc7\
\x49\x35\x7d\x0c\xf5\x2c\x93\x46\x8e\xf1\xc8\xb1\x42\x40\x25\x58\
\x0b\xde\xc6\xd6\xf7\x5d\xaa\xf9\x6c\xef\x23\x79\x14\x68\x24\x03\
\x52\x46\x35\x0a\xff\x00\x83\xa3\x8b\xc8\x1a\xe6\xdd\xc4\x66\x86\
\x84\xf0\xaf\x91\xfb\x3d\x7a\xdb\xdb\xf9\x3f\x76\x1d\x26\x3b\xe5\
\x26\xf1\xdb\x33\x55\x51\x44\x37\xd7\x5a\x6e\x28\x29\xe3\x92\x40\
\xb2\xcf\x95\xda\x19\xfc\x0d\x65\x24\x14\xc4\xc6\x75\x48\xf8\x75\
\xae\x99\x96\xea\x0a\x44\xcc\x2f\xa7\xdc\xb7\xcc\x61\x26\xb1\x49\
\x10\xd4\x47\x20\xaf\xd8\x6a\x33\xfb\x07\x51\xa5\x9d\x52\x52\xae\
\x30\xcb\x8f\xca\x9d\x1c\x1f\x88\x5b\x8f\x7a\x75\xcf\xf3\x06\xf9\
\x8f\xb7\xf0\xbb\x4e\x5c\xfe\x33\x71\xe6\x77\x0e\x5f\x39\x33\xcb\
\xe1\x97\x12\x29\xb7\x5c\xd9\x1d\xbd\x5e\xb1\x45\x1c\xd3\x4f\x0d\
\x64\x3b\x8e\x48\x74\x82\x01\xf2\xab\x9f\xd2\x07\xb0\x4f\x34\xf8\
\x30\x6c\xbb\x35\xe2\xca\x04\xe2\xaa\x01\xc8\x61\x40\x0f\x9d\x01\
\x14\x1f\xcf\xa1\x5f\x2e\xdb\x41\x7f\x79\x71\x67\x74\xcc\xb6\xf4\
\xa9\x22\x95\x07\x24\x71\x06\xb5\xaf\x56\xff\x00\x16\xd0\x1b\x86\
\x6c\x94\x92\xcf\x90\xc2\x4d\x94\xb4\xb5\xcf\x49\xf6\x93\xac\x9f\
\xbe\xb5\x22\x10\x95\xd4\xb5\x42\x34\x8e\x68\x56\xc5\x48\x63\x6e\
\x49\x17\xf7\x17\x8e\xd7\x92\x48\xfb\x59\xcd\x4d\x33\x5a\xe7\xce\
\xbe\x7d\x0e\x66\xda\xf6\x8d\xb6\x38\xfe\x8c\x78\x84\x1a\x02\x4b\
\x7e\xde\x23\x8d\x4f\x97\x49\xbc\x5f\xc7\x4d\x81\x45\x57\x49\x54\
\xf9\xec\xa6\x41\xc9\xfb\xac\x7c\x09\x57\x45\x12\xd4\x7d\xa9\x59\
\x59\xef\x14\x32\x3c\xd1\xc5\x75\xd4\x54\xa8\x17\x17\x3c\x8f\x6d\
\x2c\x2a\x08\x3a\x89\xe9\xa7\xde\x2e\x64\x0c\xa6\x15\x0b\xc0\x9c\
\xe2\xb8\xf5\xe9\x5d\x93\xa4\xaf\xdb\xf3\x52\xcd\x80\xc7\xcb\x3c\
\xb8\x58\xa1\x4c\x78\x32\x2b\x19\xc5\x3d\x3c\x91\xc7\x04\xad\x28\
\x68\xc7\x97\x56\x92\xd6\x16\xbd\xfd\xa8\x12\x32\xba\x48\x0f\x72\
\xd0\x03\xf6\x74\xf4\x16\x1b\x45\xcd\xac\xbf\x54\x7b\x98\x13\x82\
\xc2\xa7\xf6\xf9\xf5\xaa\x17\xf3\x0f\xdd\x9b\x87\x73\x7c\xb5\xed\
\xfc\x9e\xe7\x34\x29\x93\xa7\xae\xc2\x63\x0d\x35\x12\xc0\xb0\xd0\
\x51\xe3\x76\xd6\x22\x96\x86\x8e\x59\x20\x9e\xa1\x26\xac\x86\x95\
\x17\xce\xda\x94\xf9\x8b\x02\x88\x46\x85\x9e\xf9\x51\x6b\xcb\xf6\
\x33\x0f\xc5\x52\x7e\x66\xa6\xa6\x9e\x43\xfc\xdd\x45\x5b\xd8\x86\
\xd3\x71\xba\x82\xdf\xfb\x25\x6e\xdc\xd7\x1f\x6f\x55\xe1\x5a\xf2\
\xcb\x90\xad\x7a\x79\x23\x12\x49\x41\x24\x71\x16\x4f\x22\x09\xdb\
\x4f\x8c\xb2\x89\x22\xd6\xb7\x22\xea\x19\x49\x1f\x91\xf5\xf6\x6f\
\x28\xd4\xcc\x07\xa7\x48\x23\x70\xc1\x58\xf5\x4b\x3d\xcf\x0c\x14\
\xbb\x84\xc0\xdb\x62\xa7\x6a\xe4\xe0\x89\x05\x7e\x31\xf2\x73\x57\
\xd3\x6a\x7a\x6a\x19\x29\xe5\xa7\x5a\xa8\x5e\xaa\x01\x25\x23\xa9\
\x60\xd5\x13\x02\xc6\xe3\x40\xf4\x08\x6f\x71\x08\x97\x4e\xa2\xdc\
\xc5\x28\x02\xab\x52\x47\x00\x47\x1c\xe4\x7c\xcf\xe5\xd4\x81\x62\
\x5f\xe9\x83\x89\x35\xa9\x26\x86\x94\xff\x00\x07\x1c\xfc\xba\xfa\
\x0f\x7f\xc2\x40\x3f\xed\xda\x9d\xe1\xff\x00\x8b\xcd\xd9\x5f\xfb\
\xe0\xbe\x33\x7b\x72\xcc\x52\x36\x07\xf8\xbf\xc8\x3a\x27\xde\x6a\
\x6e\x63\xa8\xcf\x86\x3f\xe3\xcd\xd7\xcc\xd7\xe2\x7f\x79\xff\x00\
\xb2\xbf\xf2\x9b\xe3\x57\xc9\x6f\xee\xbf\xf7\xe3\xfd\x97\x8e\xff\
\x00\xe9\xbe\xf3\xfe\xe5\x7f\x1b\xfe\xed\x7f\x7c\x3f\xd1\x2f\x62\
\xed\xcd\xfd\xfd\xd7\xfe\xf1\xff\x00\x08\xdc\x1f\xdd\xff\x00\xef\
\x07\xf7\x7f\xed\x3e\xfb\xec\x2b\x7e\xd3\xcd\xe5\xfb\x79\xb4\xf8\
\xd9\x5f\x45\x3d\x6e\xf3\xff\x00\x41\xcc\xff\x00\xe0\xaf\x3f\xf6\
\x76\x3f\xfd\x52\x3d\xfb\xaf\x75\xef\xfa\x0e\x67\xff\x00\x05\x79\
\xff\x00\xb3\xb1\xff\x00\xea\x91\xef\xdd\x7b\xa0\x03\xe5\x87\xfc\
\x2c\x9b\xfd\x9a\x0f\x8b\x3f\x25\x7e\x34\xff\x00\xc3\x72\x7f\x71\
\xff\x00\xd9\x87\xe8\x0e\xe4\xe8\xcf\xef\xaf\xfb\x37\xbf\xde\x5f\
\xee\x7f\xfa\x5a\xeb\xad\xc7\xb0\x7f\xbd\x1f\xdd\xcf\xf6\x57\xf6\
\xff\x00\xf7\x83\xfb\xbf\xfd\xe0\xfb\xbf\xb1\xfb\xfa\x2f\xbb\xf0\
\xf8\xbe\xe2\x1d\x5e\x45\xf7\x5e\xeb\x58\x4f\xe5\x75\xf0\x67\xfe\
\x1c\x9f\xe7\x5f\x46\xfc\x2a\xff\x00\x4a\x3f\xe8\x5f\xfd\x34\x7f\
\xa4\xcf\xf8\xc9\x7f\xdc\x9f\xf4\x8b\xfd\xdb\xff\x00\x47\x5d\x3d\
\xd8\x3d\xb1\xff\x00\x1e\x6f\xf7\xbb\x62\x7f\x18\xfe\x31\xfd\xc4\
\xfb\x0f\xf8\xba\xd2\xfd\xbf\xdd\x79\xff\x00\x77\xc5\xe1\x93\xdd\
\x7b\xab\xfc\xfe\x68\xbf\xf0\x94\xdf\xf8\x6d\x8f\x82\x9d\xe5\xf3\
\x57\xfd\x9f\x2f\xf4\xd1\xfe\x85\xff\x00\xd1\x9f\xfc\x63\x4f\xf6\
\x57\x7f\xd1\xd7\xf7\x93\xfd\x22\xf7\x0f\x5f\x75\x3f\xfc\x7e\x5f\
\xec\xc5\x6f\xbf\xe0\xff\x00\xc1\xff\x00\xbf\x7f\x7f\xff\x00\x16\
\xaa\xaf\xb8\xfb\x5f\x07\xed\x79\x7c\xd1\xfb\xaf\x75\xa8\x2f\xbf\
\x75\xee\xbd\xef\xdd\x7b\xa3\xfd\xfc\xae\xbe\x0c\xff\x00\xc3\x93\
\xfc\xeb\xe8\xdf\x85\x5f\xe9\x47\xfd\x0b\xff\x00\xa6\x8f\xf4\x99\
\xff\x00\x19\x2f\xfb\x93\xfe\x91\x7f\xbb\x7f\xe8\xeb\xa7\xbb\x07\
\xb6\x3f\xe3\xcd\xfe\xf7\x6c\x4f\xe3\x1f\xc6\x3f\xb8\x9f\x61\xff\
\x00\x17\x5a\x5f\xb7\xfb\xaf\x3f\xee\xf8\xbc\x32\x7b\xaf\x75\xbf\
\xc7\xf2\xba\xff\x00\x84\xa6\xff\x00\xc3\x6c\x7c\xeb\xe8\xdf\x9a\
\xbf\xec\xf9\x7f\xa6\x8f\xf4\x2f\xfe\x93\x3f\xe3\x1a\x7f\xb2\xbb\
\xfe\x8e\xbf\xbc\x9f\xe9\x17\xa7\xbb\x07\xa9\xff\x00\xe3\xf2\xff\
\x00\x66\x2b\x7d\xff\x00\x07\xfe\x0f\xfd\xfb\xfb\xff\x00\xf8\xb5\
\x55\x7d\xc7\xda\xf8\x3f\x6b\xcb\xe6\x8f\xdd\x7b\xab\xfc\xfe\x68\
\xbf\x06\x7f\xe1\xc9\xfe\x0a\x77\x97\xc2\xaf\xf4\xa3\xfe\x85\xff\
\x00\xd3\x47\xfa\x33\xff\x00\x8c\x97\xfd\xc9\xff\x00\x48\xbf\xdd\
\xbf\xf4\x75\xdc\x3d\x7d\xdb\x1f\xf1\xe6\xff\x00\x7b\xb6\x27\xf1\
\x8f\xe3\x1f\xdc\x4f\xb0\xff\x00\x8b\xad\x2f\xdb\xfd\xd7\x9f\xf7\
\x7c\x5e\x19\x3d\xd7\xba\xd0\x1f\xf9\xa2\xff\x00\xc2\x53\x7f\xe1\
\xb6\x3e\x0a\x77\x97\xcd\x5f\xf6\x7c\xbf\xd3\x47\xfa\x17\xff\x00\
\x46\x7f\xf1\x8d\x3f\xd9\x5d\xff\x00\x47\x5f\xde\x4f\xf4\x8b\xdc\
\x3d\x7d\xd4\xff\x00\xf1\xf9\x7f\xb3\x15\xbe\xff\x00\x83\xff\x00\
\x07\xfe\xfd\xfd\xff\x00\xfc\x5a\xaa\xbe\xe3\xed\x7c\x1f\xb5\xe5\
\xf3\x47\xee\xbd\xd5\x01\xff\x00\x2b\xaf\x83\x3f\xf0\xe4\xff\x00\
\x3a\xfa\x37\xe1\x57\xfa\x51\xff\x00\x42\xff\x00\xe9\xa3\xfd\x26\
\x7f\xc6\x4b\xfe\xe4\xff\x00\xa4\x5f\xee\xdf\xfa\x3a\xe9\xee\xc1\
\xed\x8f\xf8\xf3\x7f\xbd\xdb\x13\xf8\xc7\xf1\x8f\xee\x27\xd8\x7f\
\xc5\xd6\x97\xed\xfe\xeb\xcf\xfb\xbe\x2f\x0c\x9e\xeb\xdd\x6d\xf5\
\xff\x00\x40\x33\x7f\xe0\xd0\xff\x00\xf6\x49\xff\x00\xfd\x6d\xfd\
\xfb\xaf\x75\x6f\xbf\xc9\x5b\xfe\x13\x81\xff\x00\x0c\xfd\xf2\x9b\
\x7f\x7c\x96\xff\x00\x67\x2b\xfd\x98\x7f\xef\xc7\x40\x6e\x9e\x8c\
\xfe\xe5\x7f\xb2\xf1\xfe\x89\x7f\x85\xff\x00\x79\x7b\x17\xaa\xf7\
\xf7\xf7\xa3\xfb\xc7\xfe\x9c\xfb\x37\xef\x7e\xcb\xfd\x19\x7d\xa7\
\xd8\xfd\x84\x3e\x4f\xbd\xf2\xfd\xc2\xf8\x7c\x72\xfb\xaf\x75\xb3\
\xea\x7e\xa1\xfe\xc7\xfd\xe8\xfb\xf7\x5e\xeb\x37\xbf\x75\xee\xbd\
\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd0\xdf\xe3\xdf\xba\xf7\x5e\
\xf7\xee\xbd\xd6\x03\xc9\x27\xfa\x9f\x7e\xeb\xdd\x75\xef\xdd\x7b\
\xaf\x90\x5f\xfc\x2a\x2f\xfe\xdf\xab\xf3\x97\xff\x00\x2d\x9b\xff\
\x00\x80\xf7\xe3\xef\xbf\x75\xee\xbe\x9e\xdf\xca\x7f\xfe\xdd\x67\
\xfc\xb5\x3f\xf1\x40\x7e\x1b\xff\x00\xf0\x3b\x75\xcf\xbf\x75\xee\
\xb5\x84\xf9\x61\xff\x00\x0b\x26\xff\x00\x65\x7f\xe5\x37\xc9\x5f\
\x8d\x3f\xf0\xdc\x9f\xdf\x8f\xf6\x5e\x3b\xff\x00\xb9\x3a\x33\xfb\
\xeb\xfe\xcd\xef\xf7\x6b\xfb\xe1\xfe\x89\x7b\x17\x71\xec\x1f\xef\
\x47\xf7\x73\xfd\x95\xfd\xc1\xfd\xdf\xfe\xf0\x7f\x77\xfe\xef\xec\
\x7e\xfe\xb7\xed\x3c\xde\x2f\xb8\x9b\x4f\x91\xbd\xd7\xba\xd0\x1f\
\xe5\x87\x79\xff\x00\xb3\x41\xf2\x9b\xe4\xaf\xc9\x6f\xee\xbf\xf7\
\x1f\xfd\x98\x7e\xff\x00\xee\x4e\xf3\xfe\xe5\x7f\x1b\xfe\xf2\xff\
\x00\x73\xff\x00\xd2\xd7\x62\xee\x3d\xfd\xfd\xd7\xfe\xf1\xff\x00\
\x08\xdb\xff\x00\xde\x0f\xee\xff\x00\xf7\x83\xed\x3e\xfb\xec\x28\
\xbe\xef\xc3\xe5\xfb\x78\x75\x78\xd7\xdd\x7b\xad\xbe\xbe\x27\xff\
\x00\xc2\xc9\xbf\xd9\x5f\xf8\xb3\xf1\xab\xe3\x4f\xfc\x37\x27\xf7\
\xe3\xfd\x97\x8e\x80\xe9\xbe\x8c\xfe\xfa\xff\x00\xb3\x7b\xfd\xda\
\xfe\xf8\x7f\xa2\x5e\xba\xdb\x9b\x07\xfb\xd1\xfd\xdc\xff\x00\x65\
\x7f\x70\x7f\x77\xff\x00\xbc\x1f\xdd\xff\x00\xbb\xfb\x1f\xbf\xad\
\xfb\x4f\x37\x8b\xee\x26\xd3\xe4\x6f\x75\xee\xb7\xf8\xf8\x9f\xde\
\x7f\xec\xd0\x7c\x59\xf8\xd5\xf2\x5b\xfb\xaf\xfd\xc7\xff\x00\x66\
\x1f\xa0\x3a\x6f\xbc\xff\x00\xb9\x5f\xc6\xff\x00\xbc\xbf\xdc\xff\
\x00\xf4\xb5\xd7\x5b\x73\x7f\x7f\x75\xff\x00\xbc\x7f\xc2\x36\xff\
\x00\xf7\x83\xfb\xbf\xfd\xe0\xfb\x4f\xbe\xfb\x0a\x2f\xbb\xf0\xf9\
\x7e\xde\x1d\x5e\x35\xf7\x5e\xeb\x50\x5f\x96\x1f\xf0\x8d\x9f\xf6\
\x68\x3e\x53\x7c\x95\xf9\x2d\xff\x00\x0e\x37\xfd\xc7\xff\x00\x66\
\x1f\xbf\xfb\x93\xbc\xff\x00\xb9\x5f\xec\xa1\x7f\x79\x7f\xb9\xff\
\x00\xe9\x6b\xb1\x77\x1e\xfe\xfe\xeb\xff\x00\x78\xff\x00\xd9\xa0\
\xdb\xff\x00\xde\x0f\xee\xff\x00\xf7\x83\xed\x3e\xfb\xec\x28\xbe\
\xef\xc3\xe5\xfb\x78\x75\x78\xd7\xdd\x7b\xa0\x03\xfe\x80\x66\xff\
\x00\xc1\xa1\xff\x00\xec\x93\xff\x00\xfa\xdb\xfb\xf7\x5e\xeb\xdf\
\xf4\x03\x37\xfe\x0d\x0f\xff\x00\x64\x9f\xff\x00\xd6\xdf\xdf\xba\
\xf7\x5e\xff\x00\xa0\x19\xbf\xf0\x68\x7f\xfb\x24\xff\x00\xfe\xb6\
\xfe\xfd\xd7\xba\xd2\x1b\xe5\x87\x46\x7f\xb2\xbf\xf2\x9b\xe4\xaf\
\xc6\x9f\xef\x47\xf7\xe3\xfd\x97\x8e\xff\x00\xee\x4e\x8c\xfe\xfa\
\xff\x00\x04\xfe\xed\x7f\x7c\x3f\xd1\x2f\x62\xee\x3d\x83\xfd\xe8\
\xfe\xee\x7f\x17\xdc\x1f\xdd\xff\x00\xef\x07\xf7\x7f\xee\xfe\xc7\
\xef\xeb\x7e\xd3\xcd\xe2\xfb\x89\xb4\xf9\x1b\xdd\x7b\xa0\x03\xdf\
\xba\xf7\x5b\xfc\x7f\xd0\x0c\xdf\xf8\x34\x3f\xfd\x92\x7f\xff\x00\
\x5b\x7f\x7e\xeb\xdd\x68\x0f\xef\xdd\x7b\xaf\xbf\x88\xfa\x8f\xf5\
\xc7\xfb\xdf\xbf\x75\xee\xb4\x9a\xff\x00\x85\x90\xcb\x13\x63\x7f\
\x97\x95\x04\x91\x16\x35\x15\x1f\x2c\xaa\x63\x94\x48\x57\xc5\x25\
\x2c\x1f\x1b\xe1\x5b\xa0\x52\x24\x0d\xf7\xd7\xfa\x8f\xd3\xfe\x3c\
\x11\xef\x01\xb5\xda\x3a\xf9\x6a\xff\x00\x9f\x7f\xcd\xd0\xa3\x97\
\x28\xc9\x7e\x84\x71\xd1\xff\x00\x3f\xff\x00\x9f\xad\x26\xb6\xb4\
\x0b\x4f\x90\x8f\x43\xbe\x96\x78\x43\xea\xd0\x4d\xfc\xf1\x6a\x20\
\xe9\xe1\x6c\x38\x1c\x91\xfd\x4f\xb2\x4b\x96\x2e\x81\x7c\xfa\x13\
\x43\x18\x47\x19\xc5\x47\x57\x0f\xf1\x53\xb6\x7b\x43\x6f\x6f\x6c\
\x7f\x67\xf5\x1e\x16\x6d\xc9\xbc\xb6\x6e\x17\xf8\x95\x6d\x3d\x0e\
\x0a\xab\x3f\x4b\x88\x5c\x86\x2e\xa7\x63\x56\x55\xe6\x29\x69\x69\
\xdc\x51\x51\xe4\x7f\xbc\x12\x78\x9e\x62\x88\xb5\x0d\x1a\x23\x12\
\x40\x69\x87\x97\xb7\x9b\x4d\xd2\xd1\x2d\xee\x67\x45\x96\x58\x94\
\x32\xd4\x02\x19\x33\xe7\x4e\x3a\x49\xfb\x38\x63\xa8\xdf\x7c\xdb\
\x6e\x2c\xee\x19\xa3\x89\xfc\x35\x76\x20\xd2\xb5\x0d\xfb\x78\x54\
\x7c\xfa\xd9\x3b\xb5\xfb\x47\x7b\x7c\x49\xf9\x09\xb6\xbe\x5a\x27\
\x5a\xe5\x73\xdb\x7f\xe4\x3e\xce\x83\x17\xd8\x1b\x66\x14\xc9\xd7\
\x26\xde\xc8\x2e\xc0\xd8\x59\x4a\x6a\x4c\x76\x57\x05\x8a\xcf\xe4\
\xc5\x54\x3b\x9f\x1e\xe8\x35\x50\x69\x9e\x9e\x39\x8a\xae\x85\xf2\
\xc6\x4d\xb9\x5b\x47\xbe\x6c\x66\xd2\x37\xac\xb0\x48\x19\x69\xe6\
\x35\x32\xb7\x12\x3d\x7f\x2e\x94\xd8\x4a\xd6\x37\x84\xc8\x87\x4b\
\xad\x0f\xf8\x47\x91\xf4\xea\xd3\x47\xca\x4e\xb5\xdc\x58\x78\x68\
\x36\x06\xe9\xc4\x64\x3b\x1f\x21\x41\x89\xc8\x52\x75\xed\x74\x59\
\x4c\x66\xf4\xa6\x82\xba\x9a\x0c\xbc\xe7\x23\xb3\xb3\x94\x18\xbd\
\xcd\x8f\x30\xe1\x1d\xaa\x2d\x53\x49\x03\x08\x8a\xb9\x00\x32\xde\
\x38\x8a\xd8\xc7\x76\x2d\x6e\xc8\x40\x2b\x5a\x91\x8a\x0f\xb7\xe6\
\x3f\x6f\x42\xb7\x77\x6b\x73\x3c\x0a\x59\x71\x4a\x03\xeb\xf6\x7c\
\x8f\xec\xe8\x5a\xeb\x6d\x97\x1e\xd2\xc6\x26\x67\x25\x55\x52\xdb\
\x83\x29\x8f\x69\xf3\x89\x54\xf4\x6b\x4d\x4b\x53\x59\x54\x72\x55\
\x51\xc4\x94\x88\xb1\xc6\x21\x95\xf4\x93\xad\xc1\xd3\x71\x6b\xdb\
\xde\xee\xe6\x8e\x47\x2b\x0a\x81\x02\x9a\x2f\x1e\x1e\xa6\xbf\x67\
\x4c\x44\x92\xf8\x6b\xe2\x35\x64\x34\xa8\xa7\x9f\xa6\x3a\x2f\x9f\
\x28\x7e\x67\x74\xcf\xc7\xdd\xab\xb9\x25\xcb\x6f\x8d\xa7\x51\xbf\
\xa1\xc7\x98\xf6\xde\xc8\x5c\x9c\xf5\x79\x8c\xb6\x6e\xb9\x2b\x21\
\xc4\x53\x49\x45\x87\xa2\xcb\x56\xd2\xd3\xcb\x55\x4a\xfe\x49\x64\
\x89\x62\x8d\x50\xf9\x1d\x07\xab\xde\xf6\xeb\x0b\x9d\xd2\xf2\x0b\
\x5b\x6b\x77\x64\x69\x00\x2c\x01\xa0\x15\x1a\xb3\xc2\xa0\x1a\xd2\
\xbd\x3b\x2b\x7d\x25\xbb\xcf\x70\xda\x10\x21\x22\xbe\x7c\x68\x00\
\xe2\x6b\xeb\x9e\xb5\x0d\xef\xdd\xf5\xba\x37\xf7\x60\xf6\x8f\x6e\
\x65\xb0\x55\xb4\x38\x4d\xd3\x5b\xb8\xb7\xb4\xb9\x18\xf1\xb5\xff\
\x00\xc2\x29\xa6\xcb\x67\xaa\x23\xa6\xa4\x8b\x20\xd4\x71\x45\x2c\
\x10\x3c\xe9\x4c\x1c\x80\x5a\x55\xb3\x00\xf7\x51\x3e\xda\x1b\x6d\
\xaa\xca\xd7\x6f\xf1\x54\x18\x60\x50\x6a\x45\x75\x50\x54\x53\xd7\
\x35\xa7\x51\xd5\xca\x3d\xed\xc4\xb7\x01\x09\x0f\x21\x23\x07\xe1\
\xa9\xcf\x97\x44\xde\x8b\xb0\x66\xc8\x65\x5e\x35\x10\x2d\x33\xd7\
\x63\x69\xe9\xb8\x7d\x72\xb3\x64\x71\x91\xca\xf7\x78\xd5\xae\xd1\
\x3c\x84\x0b\x0b\x01\xfe\x17\x28\x8e\xe5\xe3\x4c\x57\x1a\x6a\x29\
\xf3\xc8\xcf\xf8\x7a\xba\xda\xf8\x6b\xa4\xf1\xcf\xfb\x1d\x11\x7f\
\x98\xf4\xf1\x45\xd8\xb4\x95\xf1\x49\x77\xc9\x60\x69\x27\x90\x0f\
\x50\x12\x53\xb0\xa2\x05\x79\x36\xfd\xaa\x75\xe2\xc3\xd8\x17\x99\
\xf4\x7e\xf7\x62\x38\x18\x90\xff\x00\x84\x7f\x90\x74\x30\xd9\x75\
\x0d\xb5\x6a\x32\x24\x61\xff\x00\x1d\x3f\xe5\xeb\x7c\x7f\xf8\x47\
\xe1\xbf\xf2\xd2\xee\xf3\xff\x00\x81\xcd\xd9\x7f\xfb\xe0\xfe\x33\
\xfb\x43\x65\xfd\x93\x7f\xa6\xff\x00\x20\xe9\x06\xf5\xfe\xe5\x47\
\xff\x00\x34\xc7\xf8\x5b\xaf\x99\xcf\xc4\xfe\x8c\xff\x00\x66\x83\
\xe5\x37\xc6\xaf\x8d\x3f\xde\x8f\xee\x3f\xfb\x30\xfd\xff\x00\xd3\
\x7d\x19\xfd\xf5\xfe\x09\xfd\xe5\xfe\xe7\xff\x00\xa5\xae\xc5\xdb\
\x9b\x07\xfb\xd1\xfd\xdc\xfe\x2f\xb7\xff\x00\xbc\x1f\xdd\xff\x00\
\xef\x07\xdd\xfd\x8f\xdf\xd1\x7d\xdf\x87\xc5\xf7\x10\xea\xf2\x2a\
\xce\x8a\x3a\xdb\xeb\xe5\x87\xfc\x23\x67\xfd\x95\xff\x00\x8b\x3f\
\x25\x7e\x4b\x7f\xc3\x8d\xff\x00\x7e\x3f\xd9\x78\xe8\x0e\xe4\xef\
\x3f\xee\x57\xfb\x28\x5f\xdd\xaf\xef\x87\xfa\x25\xeb\xad\xc7\xbf\
\xbf\xba\xff\x00\xde\x3f\xf6\x68\x37\x07\xf7\x7f\xfb\xc1\xfd\xdf\
\xfb\x4f\xbe\xfb\x0a\xdf\xb4\xf3\x79\x7e\xde\x6d\x3e\x36\xf7\x5e\
\xeb\x50\x5f\x89\xfd\x19\xfe\xcd\x07\xca\x6f\x8d\x5f\x1a\x7f\xbd\
\x1f\xdc\x7f\xf6\x61\xfb\xff\x00\xa6\xfa\x33\xfb\xeb\xfc\x13\xfb\
\xcb\xfd\xcf\xff\x00\x4b\x5d\x8b\xb7\x36\x0f\xf7\xa3\xfb\xb9\xfc\
\x5f\x6f\xff\x00\x78\x3f\xbb\xff\x00\xde\x0f\xbb\xfb\x1f\xbf\xa2\
\xfb\xbf\x0f\x8b\xee\x21\xd5\xe4\x5f\x75\xee\xb6\xfa\xf9\x61\xff\
\x00\x08\xd9\xff\x00\x65\x7f\xe2\xcf\xc9\x5f\x92\xdf\xf0\xe3\x7f\
\xdf\x8f\xf6\x5e\x3a\x03\xb9\x3b\xcf\xfb\x95\xfe\xca\x17\xf7\x6b\
\xfb\xe1\xfe\x89\x7a\xeb\x71\xef\xef\xee\xbf\xf7\x8f\xfd\x9a\x0d\
\xc1\xfd\xdf\xfe\xf0\x7f\x77\xfe\xd3\xef\xbe\xc2\xb7\xed\x3c\xde\
\x5f\xb7\x9b\x4f\x8d\xbd\xd7\xba\xd6\x13\xf9\x5d\x7c\xe6\xff\x00\
\x86\xd8\xf9\xd7\xd1\xbf\x35\x7f\xd1\x77\xfa\x68\xff\x00\x42\xff\
\x00\xe9\x33\xfe\x31\xa7\xf7\xdb\xfd\x1d\x7f\x79\x3f\xd2\x2f\x4f\
\x76\x0f\x53\xff\x00\xc7\xe5\xfd\xd1\xdf\x7f\xc1\xff\x00\x83\xff\
\x00\x7e\xfe\xff\x00\xfe\x2d\x55\x5f\x71\xf6\xbe\x0f\xda\xf2\xf9\
\xa3\xf7\x5e\xea\xff\x00\x3f\x9a\x2f\xfc\x2a\xcb\xfe\x1c\x9f\xe0\
\xa7\x79\x7c\x2a\xff\x00\x64\x37\xfd\x0b\xff\x00\xa6\x8f\xf4\x67\
\xff\x00\x19\x2f\xfd\x9a\x2f\xf4\x8b\xfd\xdb\xff\x00\x47\x5d\xc3\
\xd7\xdd\xb1\xff\x00\x1e\x6f\xfb\x2e\xbb\x13\xf8\xc7\xf1\x8f\xee\
\x27\xd8\x7f\xc5\xd6\x97\xed\xfe\xeb\xcf\xfb\xbe\x2f\x0c\x9e\xeb\
\xdd\x6a\x0b\xef\xdd\x7b\xa3\xfd\xfc\xae\xbe\x0c\xff\x00\xc3\x93\
\xfc\xeb\xe8\xdf\x85\x5f\xe9\x47\xfd\x0b\xff\x00\xa6\x8f\xf4\x99\
\xff\x00\x19\x2f\xfb\x93\xfe\x91\x7f\xbb\x7f\xe8\xeb\xa7\xbb\x07\
\xb6\x3f\xe3\xcd\xfe\xf7\x6c\x4f\xe3\x1f\xc6\x3f\xb8\x9f\x61\xff\
\x00\x17\x5a\x5f\xb7\xfb\xaf\x3f\xee\xf8\xbc\x32\x7b\xaf\x75\xb7\
\xd7\xfc\x31\x9f\xfd\x03\x63\xff\x00\x63\xa9\xff\x00\x66\x8b\xfd\
\x9c\xff\x00\xf6\x4c\x3f\xee\x5a\xbf\xd0\x9f\xfb\x2e\xbf\xe9\x27\
\xfd\x98\xaf\xf9\xc4\xff\x00\xf9\x9c\x9f\xe9\x73\xbd\xbf\xb9\xdf\
\xdc\xef\xf4\xed\xfc\x7f\xfe\x3d\x5c\xaf\xf1\x0f\xe1\x5f\x63\xfe\
\x4d\xf7\x3f\x79\x4f\xee\xbd\xd1\xfe\xfe\x57\x5f\xf0\xab\x2f\xf8\
\x72\x7f\x9d\x7d\x1b\xf0\xab\xfd\x90\xdf\xf4\x2f\xfe\x9a\x3f\xd2\
\x67\xfc\x64\xbf\xf6\x68\xbf\xd2\x2f\xf7\x6f\xfd\x1d\x74\xf7\x60\
\xf6\xc7\xfc\x79\xbf\xec\xba\xec\x4f\xe3\x1f\xc6\x3f\xb8\x9f\x61\
\xff\x00\x17\x5a\x5f\xb7\xfb\xaf\x3f\xee\xf8\xbc\x32\x7b\xaf\x75\
\x7f\x9f\xcd\x17\xe7\x37\xfc\x36\xc7\xc1\x4e\xf2\xf9\xab\xfe\x8b\
\xbf\xd3\x47\xfa\x17\xff\x00\x46\x7f\xf1\x8d\x3f\xbe\xdf\xe8\xeb\
\xfb\xc9\xfe\x91\x7b\x87\xaf\xba\x9f\xfe\x3f\x2f\xee\x8e\xfb\xfe\
\x0f\xfc\x1f\xfb\xf7\xf7\xff\x00\xf1\x6a\xaa\xfb\x8f\xb5\xf0\x7e\
\xd7\x97\xcd\x1f\xba\xf7\x5a\x03\xff\x00\x34\x5f\xf8\x55\x97\xfc\
\x39\x3f\xc1\x4e\xf2\xf8\x55\xfe\xc8\x6f\xfa\x17\xff\x00\x4d\x1f\
\xe8\xcf\xfe\x32\x5f\xfb\x34\x5f\xe9\x17\xfb\xb7\xfe\x8e\xbb\x87\
\xaf\xbb\x63\xfe\x3c\xdf\xf6\x5d\x76\x27\xf1\x8f\xe3\x1f\xdc\x4f\
\xb0\xff\x00\x8b\xad\x2f\xdb\xfd\xd7\x9f\xf7\x7c\x5e\x19\x3d\xd7\
\xba\x20\x3f\xf0\x97\x4f\xfb\x7e\xaf\xc1\xaf\xfc\xb9\x9f\xfe\x03\
\xdf\x90\x5e\xfd\xd7\xba\xfa\xfa\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\
\xec\x7d\x47\xfa\xe3\xfd\xef\xdf\xba\xf7\x59\xfd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd1\xdf\xe3\xdf\xba\xf7\x5d\
\x13\x60\x4f\xfb\xef\xf0\xf7\xee\xbd\xd6\x0f\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5f\x20\xbf\xf8\x54\x5f\xfd\xbf\x57\xe7\x2f\xfe\x5b\x37\
\xff\x00\x01\xef\xc7\xdf\x7e\xeb\xdd\x5b\xef\xc4\xff\x00\xf8\x59\
\x37\xfb\x2b\xff\x00\x16\x7e\x35\x7c\x69\xff\x00\x86\xe4\xfe\xfc\
\x7f\xb2\xf1\xd0\x1d\x37\xd1\x9f\xdf\x5f\xf6\x6f\x7f\xbb\x5f\xdf\
\x0f\xf4\x4b\xd7\x5b\x73\x60\xff\x00\x7a\x3f\xbb\x9f\xec\xaf\xee\
\x0f\xee\xff\x00\xf7\x83\xfb\xbf\xf7\x7f\x63\xf7\xf5\xbf\x69\xe6\
\xf1\x7d\xc4\xda\x7c\x8d\xee\xbd\xd6\xa0\xbf\x2c\x3b\xcf\xfd\x9a\
\x0f\x94\xdf\x25\x7e\x4b\x7f\x75\xff\x00\xb8\xff\x00\xec\xc3\xf7\
\xff\x00\x72\x77\x9f\xf7\x2b\xf8\xdf\xf7\x97\xfb\x9f\xfe\x96\xbb\
\x17\x71\xef\xef\xee\xbf\xf7\x8f\xf8\x46\xdf\xfe\xf0\x7f\x77\xff\
\x00\xbc\x1f\x69\xf7\xdf\x61\x45\xf7\x7e\x1f\x2f\xdb\xc3\xab\xc6\
\xbe\xeb\xdd\x00\x1e\xfd\xd7\xba\xf7\xbf\x75\xee\xbe\xde\x5f\xca\
\x7f\xfe\xdd\x67\xfc\xb5\x3f\xf1\x40\x7e\x1b\xff\x00\xf0\x3b\x75\
\xcf\xbf\x75\xee\xb5\x84\xf9\x61\xff\x00\x0b\x26\xff\x00\x65\x7f\
\xe5\x37\xc9\x5f\x8d\x3f\xf0\xdc\x9f\xdf\x8f\xf6\x5e\x3b\xff\x00\
\xb9\x3a\x33\xfb\xeb\xfe\xcd\xef\xf7\x6b\xfb\xe1\xfe\x89\x7b\x17\
\x71\xec\x1f\xef\x47\xf7\x73\xfd\x95\xfd\xc1\xfd\xdf\xfe\xf0\x7f\
\x77\xfe\xef\xec\x7e\xfe\xb7\xed\x3c\xde\x2f\xb8\x9b\x4f\x91\xbd\
\xd7\xba\x00\x3f\xe8\x39\x9f\xfc\x15\xe7\xfe\xce\xc7\xff\x00\xaa\
\x47\xbf\x75\xee\xb7\x79\xf8\x9f\xde\x7f\xec\xd0\x7c\x59\xf8\xd5\
\xf2\x5b\xfb\xaf\xfd\xc7\xff\x00\x66\x1f\xa0\x3a\x6f\xbc\xff\x00\
\xb9\x5f\xc6\xff\x00\xbc\xbf\xdc\xff\x00\xf4\xb5\xd7\x5b\x73\x7f\
\x7f\x75\xff\x00\xbc\x7f\xc2\x36\xff\x00\xf7\x83\xfb\xbf\xfd\xe0\
\xfb\x4f\xbe\xfb\x0a\x2f\xbb\xf0\xf9\x7e\xde\x1d\x5e\x35\xf7\x5e\
\xeb\x50\x5f\x96\x1f\xf0\xb2\x6f\xf6\x57\xfe\x53\x7c\x95\xf8\xd3\
\xff\x00\x0d\xc9\xfd\xf8\xff\x00\x65\xe3\xbf\xfb\x93\xa3\x3f\xbe\
\xbf\xec\xde\xff\x00\x76\xbf\xbe\x1f\xe8\x97\xb1\x77\x1e\xc1\xfe\
\xf4\x7f\x77\x3f\xd9\x5f\xdc\x1f\xdd\xff\x00\xef\x07\xf7\x7f\xee\
\xfe\xc7\xef\xeb\x7e\xd3\xcd\xe2\xfb\x89\xb4\xf9\x1b\xdd\x7b\xad\
\x01\xfe\x58\x77\x9f\xfb\x34\x1f\x29\xbe\x4a\xfc\x96\xfe\xeb\xff\
\x00\x71\xff\x00\xd9\x87\xef\xfe\xe4\xef\x3f\xee\x57\xf1\xbf\xef\
\x2f\xf7\x3f\xfd\x2d\x76\x2e\xe3\xdf\xdf\xdd\x7f\xef\x1f\xf0\x8d\
\xbf\xfd\xe0\xfe\xef\xff\x00\x78\x3e\xd3\xef\xbe\xc2\x8b\xee\xfc\
\x3e\x5f\xb7\x87\x57\x8d\x7d\xd7\xba\x00\x3d\xfb\xaf\x75\xbf\xc7\
\xfd\x07\x33\xff\x00\x82\xbc\xff\x00\xd9\xd8\xff\x00\xf5\x48\xf7\
\xee\xbd\xd6\x80\xfe\xfd\xd7\xba\xfa\x3c\x7c\x4d\xff\x00\x85\x93\
\x7f\xb3\x41\xf2\x9f\xe3\x47\xc6\x9f\xf8\x6e\x4f\xee\x3f\xfb\x30\
\xff\x00\x20\x3a\x6b\xa3\x3f\xbe\xbf\xec\xde\xff\x00\x79\x7f\xb9\
\xff\x00\xe9\x6b\xb1\x76\xe6\xc1\xfe\xf4\x7f\x77\x3f\xd9\x5f\xdb\
\xff\x00\xde\x0f\xee\xff\x00\xf7\x83\xee\xfe\xc7\xef\xe8\xbe\xef\
\xc3\xe2\xfb\x88\x75\x79\x17\xdd\x7b\xa9\x9f\xf0\xb2\x1f\xfb\xa7\
\x37\xfe\x5d\xe7\xff\x00\x3a\xff\x00\xb2\x6d\xdf\xfd\x03\xfd\xb7\
\xf9\x3a\x14\x72\xdf\xfc\x4d\xff\x00\x69\xff\x00\x3f\x75\xa6\x3f\
\x5b\x6d\x8c\xbe\xf5\xde\x9b\x6b\x68\xe0\xa8\xea\x32\x19\x9d\xd1\
\x9e\xc2\xed\xec\x5d\x15\x35\x3d\x55\x54\xf5\x59\x1c\xde\x56\x8b\
\x19\x43\x04\x74\xf4\x30\x54\xd6\x4c\xf3\x55\x55\x22\x05\x8a\x37\
\x91\x8b\x00\xaa\x58\x80\x43\xd3\xb1\x03\x1c\x7a\x14\x02\x01\x15\
\xe1\xd7\xd2\x87\xe0\x77\xc0\xde\xad\xf8\x1d\xd2\xd8\x5d\x85\xb5\
\x52\xbb\x72\x76\x06\xe0\xdb\x5b\x7e\x8f\xb3\xb7\x65\x5e\x4f\x2c\
\x62\xdc\xf9\xbc\x4d\x66\x63\x3d\x2c\x98\xfc\x2b\xd4\x0a\x5c\x26\
\x2b\x1b\x91\xdc\x75\x30\xd3\x2c\x30\x47\x33\xd3\x24\x5f\x70\xcf\
\x2e\xa7\x2f\x59\xdb\xcb\x75\x31\x48\xcd\x0f\x12\x69\x5a\x74\x49\
\x7d\x76\x15\x01\x90\x7e\x92\x9a\x28\xf3\xe8\xf8\xe3\x76\x0e\x06\
\x87\x19\x8d\xc7\xac\x33\x2c\x78\xea\x2a\x3a\x2a\x65\x4a\x99\x88\
\xa7\x82\x8e\x99\x69\x60\x85\x0c\xac\xf2\x48\x22\xa7\x45\x4d\x52\
\x16\x76\xd3\x72\x6e\x4f\xb1\xcd\xbd\xbb\x22\x53\x56\x4e\x6b\x4e\
\x26\xa4\x93\x4f\x99\x3d\x04\xe5\xb8\x79\x5c\xb9\xc7\xf9\xb8\x75\
\x4e\xdf\x36\x3a\x47\x09\xd0\x32\x67\xfb\xfb\x60\xf5\xaf\x64\xf7\
\xa7\x62\xef\x2d\xed\x04\x1b\xda\xbb\x1d\x94\xaa\xad\xce\x6d\x9c\
\x6e\x4a\x8a\xb0\xd2\xb6\xdc\xd9\x9b\x3f\x65\x7f\x04\xa9\xa3\xaa\
\x97\xed\xe9\x2a\x24\xc8\x14\x68\x21\xa7\x47\x8d\xde\x67\x93\x52\
\x48\x76\x2d\xb2\x5b\x8b\xa3\x7d\x1b\xb8\x93\x27\xbb\x4d\x73\x51\
\x4a\x52\x94\xc7\xe4\x3a\x3c\xb3\xdf\x37\x08\xcc\x02\x26\x44\x48\
\xd6\x83\xb6\xbc\x45\x33\x5a\xff\x00\xa8\xf4\x14\x6c\x3f\x94\x6d\
\xda\x1b\x33\x1d\x8d\xa0\xdd\xd4\x39\x4d\xbe\xd8\xf8\x5e\x6d\xb4\
\x46\xd5\x4c\xee\xde\x2b\xf7\x3a\x68\x77\x04\x38\x96\xa8\xac\xa1\
\xac\x86\x7a\x79\x22\x75\x79\xc1\x12\xa1\x53\x73\x70\xa4\x3c\xcd\
\xca\xc7\x6b\xb1\xfa\xfd\xbe\xf1\xa4\xb7\xd6\xa0\xa3\x28\x2c\xa1\
\xb0\x3b\x97\x8e\x70\x6a\x07\x97\x13\xc4\x63\xb1\x6e\xd6\xd7\xf7\
\x82\x1b\x8b\x30\x97\x60\x13\xa8\x31\xa1\x23\x27\x04\xfa\x67\xcf\
\xcf\xcb\xa0\xbf\x71\x6d\x2d\xb7\xdc\x1b\xb6\x93\x63\xcf\x5f\x15\
\x4d\x6e\x43\x2b\x8e\x9a\xa3\x03\x8d\xac\x46\xaf\x38\xca\x69\x00\
\x8a\x3a\xf5\xa7\x9a\x7c\x8d\x35\x1c\x92\x34\x73\x3b\xc7\x12\xc8\
\x03\x2d\xa4\xd2\x6c\x47\x7c\x9b\x04\x9b\x4e\xc7\x6b\x24\xae\x0c\
\xae\x0c\xbc\x29\x40\xe0\x1a\x50\xf9\x81\xd0\x5f\x9a\x27\x8e\xff\
\x00\x73\xb8\x5d\x24\x42\x94\x43\xc3\x25\x09\xcf\xed\xf9\xf5\x67\
\xd8\x5e\x96\xd9\x74\xff\x00\x1c\x2a\x3e\x3c\xe6\xa9\x26\x6d\xa9\
\x99\xd8\xd9\x3d\xb5\x94\xa7\x86\xbe\xb6\x0a\xb4\xc6\xee\x8a\x79\
\xaa\xab\xa3\x82\xb2\x59\xd6\xb9\x26\xa4\xa8\xc9\x3a\xa3\x9b\x1b\
\xc6\x35\x0f\xaa\xfb\x06\x6f\xf2\x3a\x6f\x53\xde\xc6\x72\xce\x1c\
\x7d\xbf\xea\x1d\x33\x6a\x55\xed\x12\x3a\x1d\x2a\x34\xfe\x43\xfd\
\x8e\xb4\xa0\xf9\x43\xd5\xd8\xae\x83\xf9\x5b\xdc\xfb\x06\x86\x79\
\x53\x66\xf5\xce\xee\xca\xe4\xf1\x55\x35\xae\xfe\x44\xc1\x55\xd2\
\xd3\xe7\x70\x54\x73\xd6\x55\xf8\xd6\x6a\x8a\x6c\x7e\x62\x9e\x36\
\x95\xdc\x09\x99\x35\x5c\x86\x04\x8c\xb6\xab\xaf\x1e\xca\xde\xee\
\x5a\x0d\x2b\x53\xe9\x55\xc7\xfa\x87\x44\xf7\x51\xfe\xa9\x85\x01\
\x2c\x5b\x1f\x9f\x55\x41\xde\x1b\xf5\xbb\x0f\x3c\xb9\xb5\xa4\xfb\
\x1a\x78\x69\x22\xa3\xa5\x81\xdd\x64\x94\x47\x1a\xd3\xb4\x86\x57\
\x4b\x21\x2d\x50\xee\x45\x87\xe9\xb0\xf6\x19\xdc\x6e\xfe\xbe\xf9\
\xae\x48\xa2\x95\x50\x07\xa5\x2b\xfe\x52\x7a\x11\x59\x44\x60\xb4\
\x16\xed\x4a\x82\x49\x3f\x6f\xfb\x00\x75\xf4\x14\xff\x00\x84\x7c\
\x7f\xdb\xb3\xfb\xbb\xff\x00\x17\x9b\xb3\x3f\xf7\xc2\x7c\x67\xf6\
\xe5\x97\xf6\x4d\xfe\x9b\xfc\x83\xa2\x3d\xe0\x01\x73\x18\x07\x1e\
\x18\xff\x00\x8f\x37\x5f\x33\xcf\x89\xfd\xe7\xfe\xca\xff\x00\xca\
\x6f\x8d\x5f\x25\xbf\xba\xff\x00\xdf\x8f\xf6\x5e\x3b\xff\x00\xa6\
\xfb\xcf\xfb\x95\xfc\x6f\xfb\xb5\xfd\xf0\xff\x00\x44\xbd\x8b\xb7\
\x37\xf7\xf7\x5f\xfb\xc7\xfc\x23\x70\x7f\x77\xff\x00\xbc\x1f\xdd\
\xff\x00\xb4\xfb\xef\xb0\xad\xfb\x4f\x37\x97\xed\xe6\xd3\xe3\x65\
\x9d\x14\xf5\xbb\xcf\xfd\x05\x65\xff\x00\x0e\x7f\xff\x00\x62\xd2\
\xff\x00\x64\x37\xfd\x07\xff\x00\xc3\x87\xff\x00\xce\x0c\xff\x00\
\xa6\xaf\xf6\x68\xbf\xd2\x5f\xfa\x20\xff\x00\x66\xd7\xfe\x30\x17\
\xfa\x51\xff\x00\x47\x1f\xec\xba\xf5\xff\x00\xfa\x40\xfe\xe0\x7f\
\x7f\xff\x00\x8b\x7f\x04\xfe\x3d\x84\xfe\x2b\xf6\x9f\x6b\xf7\xf4\
\x7e\x5f\xb8\x8f\xdd\x7b\xaf\x7f\xd0\x29\xbf\xf0\xd8\x1f\xf6\x32\
\xdf\xf6\x7c\xbf\xd3\x87\xfc\x37\x87\xfc\xe7\x37\xfa\x15\xff\x00\
\x65\x77\xfd\x1a\x7f\xa5\xff\x00\xf6\x52\xbf\xe3\x3e\xff\x00\xa2\
\xef\xf4\x8f\xfe\xcc\x57\x60\x7f\xa3\xff\x00\xef\xff\x00\xf7\x03\
\xf8\x4f\xf1\xbf\xe0\x39\xbf\xe1\x5f\x77\xf7\x5f\x61\x59\xe2\xfb\
\x79\x3d\xd7\xba\x00\x3e\x58\x7f\xc2\xc9\xbf\xd9\xa0\xf8\xb3\xf2\
\x57\xe3\x4f\xfc\x37\x27\xf7\x1f\xfd\x98\x7e\x80\xee\x4e\x8c\xfe\
\xfa\xff\x00\xb3\x7b\xfd\xe5\xfe\xe7\xff\x00\xa5\xae\xba\xdc\x7b\
\x07\xfb\xd1\xfd\xdc\xff\x00\x65\x7f\x6f\xff\x00\x78\x3f\xbb\xff\
\x00\xde\x0f\xbb\xfb\x1f\xbf\xa2\xfb\xbf\x0f\x8b\xee\x21\xd5\xe4\
\x5f\x75\xee\xb4\x86\xf7\xee\xbd\xd1\xfe\xfe\x57\x5f\x06\x7f\xe1\
\xc9\xfe\x75\xf4\x6f\xc2\xaf\xf4\xa3\xfe\x85\xff\x00\xd3\x47\xfa\
\x4c\xff\x00\x8c\x97\xfd\xc9\xff\x00\x48\xbf\xdd\xbf\xf4\x75\xd3\
\xdd\x83\xdb\x1f\xf1\xe6\xff\x00\x7b\xb6\x27\xf1\x8f\xe3\x1f\xdc\
\x4f\xb0\xff\x00\x8b\xad\x2f\xdb\xfd\xd7\x9f\xf7\x7c\x5e\x19\x3d\
\xd7\xba\xdb\xeb\xfe\x80\x66\xff\x00\xc1\xa1\xff\x00\xec\x93\xff\
\x00\xfa\xdb\xfb\xf7\x5e\xe8\xff\x00\x7f\x2b\xaf\xf8\x4a\x6f\xfc\
\x36\xc7\xce\xbe\x8d\xf9\xab\xfe\xcf\x97\xfa\x68\xff\x00\x42\xff\
\x00\xe9\x33\xfe\x31\xa7\xfb\x2b\xbf\xe8\xeb\xfb\xc9\xfe\x91\x7a\
\x7b\xb0\x7a\x9f\xfe\x3f\x2f\xf6\x62\xb7\xdf\xf0\x7f\xe0\xff\x00\
\xdf\xbf\xbf\xff\x00\x8b\x55\x57\xdc\x7d\xaf\x83\xf6\xbc\xbe\x68\
\xfd\xd7\xba\x3f\xdf\xf0\xa8\xbf\xfb\x71\x57\xce\x5f\xfc\xb6\x6f\
\xfe\x0c\x2f\x8f\xbe\xfd\xd7\xba\xd0\x1f\xfe\x12\xe9\xff\x00\x6f\
\xd5\xf8\x35\xff\x00\x97\x33\xff\x00\xc0\x7b\xf2\x0b\xdf\xba\xf7\
\x5f\x4f\x6f\xe6\x8b\xf0\x67\xfe\x1c\x9f\xe0\xa7\x79\x7c\x2a\xff\
\x00\x4a\x3f\xe8\x5f\xfd\x34\x7f\xa3\x3f\xf8\xc9\x7f\xdc\x9f\xf4\
\x8b\xfd\xdb\xff\x00\x47\x5d\xc3\xd7\xdd\xb1\xff\x00\x1e\x6f\xf7\
\xbb\x62\x7f\x18\xfe\x31\xfd\xc4\xfb\x0f\xf8\xba\xd2\xfd\xbf\xdd\
\x79\xff\x00\x77\xc5\xe1\x93\xdd\x7b\xad\x41\x7f\xe8\x06\x6f\xfc\
\x1a\x1f\xfe\xc9\x3f\xff\x00\xad\xbf\xbf\x75\xee\x8f\xf7\xf2\xba\
\xff\x00\x84\xa6\xff\x00\xc3\x6c\x7c\xeb\xe8\xdf\x9a\xbf\xec\xf9\
\x7f\xa6\x8f\xf4\x2f\xfe\x93\x3f\xe3\x1a\x7f\xb2\xbb\xfe\x8e\xbf\
\xbc\x9f\xe9\x17\xa7\xbb\x07\xa9\xff\x00\xe3\xf2\xff\x00\x66\x2b\
\x7d\xff\x00\x07\xfe\x0f\xfd\xfb\xfb\xff\x00\xf8\xb5\x55\x7d\xc7\
\xda\xf8\x3f\x6b\xcb\xe6\x8f\xdd\x7b\xab\xfc\xfe\x68\xbf\x39\xbf\
\xe1\xb6\x3e\x0a\x77\x97\xcd\x5f\xf4\x5d\xfe\x9a\x3f\xd0\xbf\xfa\
\x33\xff\x00\x8c\x69\xfd\xf6\xff\x00\x47\x5f\xde\x4f\xf4\x8b\xdc\
\x3d\x7d\xd4\xff\x00\xf1\xf9\x7f\x74\x77\xdf\xf0\x7f\xe0\xff\x00\
\xdf\xbf\xbf\xff\x00\x8b\x55\x57\xdc\x7d\xaf\x83\xf6\xbc\xbe\x68\
\xfd\xd7\xba\xa8\x2f\xe4\xad\xff\x00\x0a\x3f\xff\x00\x87\x81\xf9\
\x4d\xbf\xbe\x34\xff\x00\xb2\x6b\xfe\xcb\xc7\xf7\x1f\xa0\x37\x4f\
\x79\xff\x00\x7d\x7f\xd9\x87\xff\x00\x4b\x5f\xc5\x3f\xbb\x5d\x8b\
\xd5\x7b\x07\xfb\xaf\xfd\xdc\xff\x00\x41\x9d\x65\xf6\x5f\x7b\xfe\
\x93\x7e\xef\xef\xbe\xfe\x6f\x1f\xd9\x78\xbe\xdd\xbc\xde\x48\xbd\
\xd7\xba\xd9\xf1\x7f\x50\xff\x00\x5f\xfd\xeb\x9f\x7e\xeb\xdd\x67\
\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7f\xff\xd2\xdf\
\xe3\xdf\xba\xf7\x5c\x1f\xe9\xfe\xc7\xfe\x2b\xef\xdd\x7b\xac\x5e\
\xfd\xd7\xba\xf7\xbf\x75\xee\xb5\x05\xfe\x68\xbf\xf0\x94\xdf\xf8\
\x72\x7f\x9d\x7d\xe5\xf3\x57\xfd\x9f\x2f\xf4\x2f\xfe\x9a\x3f\xd1\
\x9f\xfc\x63\x4f\xf6\x57\x7f\xd2\x2f\xf7\x6f\xfd\x1d\x74\xf7\x5f\
\x75\x3f\xfc\x7e\x5f\xec\xc5\x6c\x4f\xe3\x1f\xc6\x3f\xb8\x9f\x7f\
\xff\x00\x16\xaa\x5f\xb7\xfb\xaf\x07\xee\xf8\xbc\xd2\x7b\xaf\x74\
\x40\x7f\xe8\x06\x6f\xfc\x1a\x1f\xfe\xc9\x3f\xff\x00\xad\xbf\xbf\
\x75\xee\xbd\xff\x00\x40\x33\x7f\xe0\xd0\xff\x00\xf6\x49\xff\x00\
\xfd\x6d\xfd\xfb\xaf\x75\xef\xfa\x01\x9b\xff\x00\x06\x87\xff\x00\
\xb2\x4f\xff\x00\xeb\x6f\xef\xdd\x7b\xaf\x7f\xd0\x0c\xdf\xf8\x34\
\x3f\xfd\x92\x7f\xff\x00\x5b\x7f\x7e\xeb\xdd\x7b\xfe\x82\xb2\xff\
\x00\x86\xc0\xff\x00\xb1\x69\x7f\xb2\x1b\xfe\x9c\x3f\xe1\xbc\x3f\
\xe7\x06\x7f\xd3\x57\xfb\x34\x5f\xe8\xd3\xfd\x2f\xff\x00\xb2\x95\
\xff\x00\x18\x0b\xfd\x28\xff\x00\xa3\x8f\xf6\x5d\x7b\x03\xfd\x1f\
\xff\x00\x7f\xff\x00\xb8\x1f\xc5\xbf\x82\x7f\x1e\xcd\xff\x00\x0a\
\xfb\xbf\xb5\xfb\xfa\xcf\x17\xdc\x49\xee\xbd\xd7\xbf\xe8\x14\xdf\
\xf8\x73\xff\x00\xfb\x19\x6f\xfb\x3e\x5f\xe8\x3f\xfe\x1c\x3f\xfe\
\x73\x9b\xfd\x0a\xff\x00\xb2\xbb\xfe\x92\xff\x00\xd1\x07\xfb\x36\
\xbf\xf1\x9f\x7f\xd1\x77\xfa\x47\xff\x00\x66\x2b\xaf\xff\x00\xd2\
\x07\xf7\x03\xfb\xff\x00\xfc\x27\xf8\xdf\xf0\x1c\x27\xf1\x5f\xb4\
\xfb\xaf\xb0\xa3\xf2\xfd\xbc\x7e\xeb\xdd\x69\x0d\xf2\xc3\xa3\x3f\
\xd9\x5f\xf9\x4d\xf2\x57\xe3\x4f\xf7\xa3\xfb\xf1\xfe\xcb\xc7\x7f\
\xf7\x27\x46\x7f\x7d\x7f\x82\x7f\x76\xbf\xbe\x1f\xe8\x97\xb1\x77\
\x1e\xc1\xfe\xf4\x7f\x77\x3f\x8b\xee\x0f\xee\xff\x00\xf7\x83\xfb\
\xbf\xf7\x7f\x63\xf7\xf5\xbf\x69\xe6\xf1\x7d\xc4\xda\x7c\x8d\xee\
\xbd\xd7\xd9\xcf\xf9\x4f\xff\x00\xdb\xac\xff\x00\x96\xa7\xfe\x28\
\x0f\xc3\x7f\xfe\x07\x6e\xb9\xf7\xee\xbd\xd7\xc8\x2f\xf9\xb0\x7f\
\xdb\xd3\x3f\x99\x5f\xfe\x2f\xf7\xcc\x8f\xfe\x08\x9e\xc6\xf7\xee\
\xbd\xd1\x01\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xbf\xc7\xfd\x00\xcd\
\xff\x00\x83\x43\xff\x00\xd9\x27\xff\x00\xf5\xb7\xf7\xee\xbd\xd6\
\x80\xfe\xfd\xd7\xba\x3f\xdf\xca\x78\xdb\xf9\xa6\x7f\x2d\x43\xfd\
\x3e\x7f\x7c\x37\x3c\x7f\x87\xc8\xae\xb9\xf7\xee\xbd\xd7\xd3\xbb\
\xf9\xee\xff\x00\x2a\x0d\xeb\xfc\xce\x62\xf8\xb3\x57\xb5\x3b\x63\
\x07\xd5\xd4\x7d\x13\x2f\x75\x47\x9b\x7c\xbe\xd1\xcb\x6e\xb9\xf3\
\x2b\xd9\xeb\xd4\xd2\x52\x3d\x04\x78\xdc\x9e\x2e\x2a\x53\x8b\x8b\
\xad\xea\x0b\x89\xa4\xb4\xa6\xa1\x02\x95\x0a\xc7\xda\x4b\xab\x23\
\x7a\x63\x51\x20\x5d\x35\xfe\x74\xe8\xdf\x6b\xdc\x56\xc3\xea\x35\
\x44\x5b\x5e\x9f\x3a\x70\xaf\xf9\xfa\x25\x3f\xcb\xa7\xf9\x12\xec\
\x6f\x83\xdd\x99\x93\xed\xed\xc9\xdb\xb2\x77\x46\xeb\x9f\x05\x47\
\x87\xc1\x52\x57\xf5\xde\x1f\x6c\x62\x76\xc5\x4d\x3e\x7f\x6e\xee\
\x71\x9f\xc7\xad\x7e\x43\x77\xe4\x86\x76\x9b\x25\xb7\x63\x5a\x7a\
\x88\x67\xa5\x68\x62\x76\xfa\xb5\x99\x58\x4d\x85\x18\x83\x24\xac\
\x69\xf2\xa7\xf8\x6b\xd2\xb9\xf7\xf7\x95\x4a\xa4\x01\x7e\xd3\x5f\
\xf3\x75\x6e\x5d\xd1\xd1\x51\xf6\x4e\xda\x8e\x1c\x46\xf1\xdc\x1b\
\x1f\x78\x63\x2b\x23\xac\xc2\x6f\x4c\x0c\xcb\x49\x94\xc7\x19\xde\
\x2a\x6c\xad\x34\x75\x54\xa2\x9f\x29\x1d\x1e\x53\x1b\xae\x29\x52\
\x1a\xa8\xb5\xb0\x42\xe5\x95\x4a\x13\x13\x65\x1c\x30\xe9\x85\x55\
\x64\x1e\x60\x00\x7f\x3a\x50\xf4\x82\xdf\x71\x95\x24\xac\xaa\x24\
\x8c\xf1\x56\xa9\x1f\x2c\x1a\x8c\x74\x8a\xea\x5f\x93\xb1\x76\x26\
\xce\xeb\x69\x57\x07\x6d\xdf\xbb\x76\xed\x0d\x66\x4e\x96\x3a\xb5\
\x38\xda\x1c\x8c\x18\x57\xaf\xcb\x15\x22\x6a\xcc\xa1\xa7\x92\x7a\
\x67\xfb\x71\x22\x6b\x28\xc0\xbb\x5c\x1b\xa6\x8f\x76\x8e\x47\xb7\
\xb4\x8f\xba\xe1\x86\x68\x70\x28\x2a\x6b\x42\x4f\xcb\x87\x1e\x97\
\x4b\xb0\xcd\x1a\x5c\xdc\xc8\xda\x2d\x54\xf6\x92\x08\x2c\x0b\x50\
\x52\xa0\x0e\x19\xc1\xe8\x64\xc8\xd5\x47\x43\x51\x3c\x87\xf7\x3f\
\x76\x19\x49\x66\x52\xcc\xde\x06\x47\x77\xe4\x5c\xb3\x54\x13\x7f\
\xeb\xec\xec\x70\x15\xe8\xb8\x0a\x00\x3a\xa4\x4f\xe6\x6b\xd3\xfd\
\x21\x89\xc7\x6c\xae\xc4\xc2\x50\x43\xb5\x3b\xd7\x74\x6e\x3d\xcb\
\x8b\xc0\x3e\xce\xa3\xda\x38\x6c\xae\xf7\xa9\x8f\x67\x4e\xd9\xe6\
\xdc\x92\x52\x63\xa0\xde\x3b\x84\xd0\xd0\xe1\xa2\x34\xe6\x19\xa6\
\x68\xeb\xaa\x23\x12\x00\xb2\x02\xa5\x3b\xd4\x85\x6c\x7f\x51\xa9\
\x6d\xe2\xc7\xe2\x1a\xd3\x4a\xeb\x19\xaf\x00\x01\xa5\x4b\x62\x9d\
\x0c\x79\x0a\x2d\xba\xeb\x9b\x36\x6b\x5d\xde\x6f\x0f\x6f\x91\xca\
\xb3\x55\x45\x2a\xa4\x03\x57\xed\x02\xa4\x56\xbe\x5d\x4c\xfe\x5b\
\xbb\x5b\xae\x76\xcf\x54\xd6\x65\xb1\xcf\x51\x5b\xd9\x75\x3b\xaf\
\x78\x7f\xa4\x19\x77\x01\xc1\x3e\xe2\xc7\xee\x3c\xc4\xf8\x76\xa8\
\xa5\xd5\x04\x09\x9f\xa7\xa3\x83\x6f\xd4\x63\x8a\xa5\x73\xf9\xc0\
\x73\x7b\xc6\x62\x3e\xd6\xed\xf7\x02\x6b\x08\x7c\x27\xd5\x6f\x90\
\xa6\xb5\xa8\x56\x20\x1a\x8c\x1c\x0f\x2c\x53\xa4\xfc\xed\x67\x63\
\x61\xcd\x5b\xe5\xa6\xd9\x38\x97\x6f\x49\xce\x86\x05\x48\x20\xd0\
\xf1\x4e\xd3\xc6\x95\x18\xe8\xf1\x66\x37\xa4\x70\xe7\xa3\xa3\x77\
\x06\x77\xa5\x7c\x64\x71\x09\xd4\x29\x48\x25\xa9\xa9\xfb\x8f\x19\
\x98\xbd\xfe\xd6\x98\x8e\x05\xaf\xfe\x1e\xc8\x77\xe5\x5d\x71\xb1\
\xf4\x1f\xf3\xf7\x45\x16\x00\x9f\x13\xd0\x03\xfe\x41\xd6\x9d\x3f\
\xce\x3a\xb2\x5c\x47\xcc\x5e\xc5\xaa\x9a\x95\x2b\xb1\x39\xbc\x1e\
\xc0\xce\x49\x44\x43\x05\x32\x7f\x75\xe8\xb1\x26\xa5\x95\xd6\x4a\
\x69\xd9\x26\xc5\xfe\xa2\xb7\x03\xfb\x57\x5b\x7b\x14\x72\xd6\xf5\
\x6d\xb7\x6c\xea\x2e\x76\xd4\x9e\x05\x66\xae\x01\x39\x38\xe2\x08\
\xc7\xe5\xd0\x8f\x65\xdd\xac\xac\x2f\x3c\x2b\x9d\xb6\x29\x19\xab\
\x47\x21\x75\x02\x69\x41\x90\x71\x83\xe7\xe7\xd5\x12\xee\x4a\x57\
\xa9\x5a\x78\xe8\xe0\x69\xaa\x6a\x24\x10\xc1\x49\x4e\x86\x59\xe6\
\x9a\x49\x69\x62\x86\x28\xa0\x89\x0c\x92\x4b\x2b\x90\x15\x40\x25\
\x98\xd8\x7b\x07\xbc\xeb\x3c\xe4\x85\xd2\x0d\x38\x70\xe1\xd6\xae\
\x95\x49\x76\x52\x05\x47\x0e\xbe\x97\x5f\xf0\x96\x6f\x8f\x1d\x9d\
\xf1\xe7\xf9\x64\x65\x62\xed\x7d\xab\xb9\x36\x46\xe1\xed\x9f\x93\
\x3d\xad\xda\x74\x5b\x47\x77\xed\x9d\xc1\xb4\xb7\x36\x13\x0b\x06\
\xda\xeb\x8e\xa9\xa7\x8b\x2b\x87\xdc\x98\xdc\x5d\x72\x3d\x7d\x77\
\x56\x54\xd6\x43\x22\x23\x45\x25\x35\x4c\x64\x36\xad\x4a\xa6\xb6\
\xc9\xa2\x33\xc7\x27\xa0\x66\xe9\x2a\xcb\x70\xa5\x48\x34\x40\x31\
\xf6\x93\xfe\x5e\xbe\x59\x5f\x13\xfa\x33\xfd\x9a\x0f\x94\xdf\x1a\
\xbe\x34\xff\x00\x7a\x3f\xb8\xff\x00\xec\xc3\xf7\xff\x00\x4d\xf4\
\x67\xf7\xd7\xf8\x27\xf7\x97\xfb\x9f\xfe\x96\xbb\x17\x6e\x6c\x1f\
\xef\x47\xf7\x73\xf8\xbe\xdf\xfe\xf0\x7f\x77\xff\x00\xbc\x1f\x77\
\xf6\x3f\x7f\x45\xf7\x7e\x1f\x17\xdc\x43\xab\xc8\xaa\x7a\x2e\xeb\
\x77\x9f\xfa\x05\x37\xfe\x1b\x03\xfe\xc6\x5b\xfe\xcf\x97\xfa\x70\
\xff\x00\x86\xf0\xff\x00\x9c\xe6\xff\x00\x42\xbf\xec\xae\xff\x00\
\xa3\x4f\xf4\xbf\xfe\xca\x57\xfc\x67\xdf\xf4\x5d\xfe\x91\xff\x00\
\xd9\x8a\xec\x0f\xf4\x7f\xfd\xff\x00\xfe\xe0\x7f\x09\xfe\x37\xfc\
\x07\x37\xfc\x2b\xee\xfe\xeb\xec\x2b\x3c\x5f\x6f\x27\xba\xf7\x40\
\x07\xcb\x0f\xf8\x59\x37\xfb\x34\x1f\x16\x7e\x4a\xfc\x69\xff\x00\
\x86\xe4\xfe\xe3\xff\x00\xb3\x0f\xd0\x1d\xc9\xd1\x9f\xdf\x5f\xf6\
\x6f\x7f\xbc\xbf\xdc\xff\x00\xf4\xb5\xd7\x5b\x8f\x60\xff\x00\x7a\
\x3f\xbb\x9f\xec\xaf\xed\xff\x00\xef\x07\xf7\x7f\xfb\xc1\xf7\x7f\
\x63\xf7\xf4\x5f\x77\xe1\xf1\x7d\xc4\x3a\xbc\x8b\xee\xbd\xd6\x90\
\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xaf\xf3\xfe\x12\xe9\xff\x00\x6f\
\xd5\xf8\x35\xff\x00\x97\x33\xff\x00\xc0\x7b\xf2\x0b\xdf\xba\xf7\
\x5f\x4f\x6f\xe6\x8b\xf3\x9b\xfe\x1b\x63\xe0\xa7\x79\x7c\xd5\xff\
\x00\x45\xdf\xe9\xa3\xfd\x0b\xff\x00\xa3\x3f\xf8\xc6\x9f\xdf\x6f\
\xf4\x75\xfd\xe4\xff\x00\x48\xbd\xc3\xd7\xdd\x4f\xff\x00\x1f\x97\
\xf7\x47\x7d\xff\x00\x07\xfe\x0f\xfd\xfb\xfb\xff\x00\xf8\xb5\x55\
\x7d\xc7\xda\xf8\x3f\x6b\xcb\xe6\x8f\xdd\x7b\xad\x41\x7f\xe8\x39\
\x9f\xfc\x15\xe7\xfe\xce\xc7\xff\x00\xaa\x47\xbf\x75\xee\xbd\xff\
\x00\x0f\x99\xff\x00\x41\x27\x7f\xd8\x95\xbf\xd9\x5d\xff\x00\x64\
\xc3\xfd\x9c\xff\x00\xfb\x99\x5f\xf4\xd9\xfe\xcc\x57\xfa\x36\xff\
\x00\x65\xd7\xfe\x72\xc3\xfe\x64\xdf\xfa\x23\xe8\x9f\xef\x8f\xf7\
\xc7\xfd\x04\xff\x00\x00\xff\x00\x8f\xab\x15\xfc\x3f\xf8\xaf\xdf\
\x7f\x94\xfd\xb7\xd9\xd4\x7b\xaf\x75\xef\xf8\x63\x3f\xfa\x06\xc7\
\xfe\xc7\x53\xfe\xcd\x17\xfb\x39\xff\x00\xec\x98\x7f\xdc\xb5\x7f\
\xa1\x3f\xf6\x5d\x7f\xd2\x4f\xfb\x31\x5f\xf3\x89\xff\x00\xf3\x39\
\x3f\xd2\xe7\x7b\x7f\x73\xbf\xb9\xdf\xe9\xdb\xf8\xff\x00\xfc\x7a\
\xb9\x5f\xe2\x1f\xc2\xbe\xc7\xfc\x9b\xee\x7e\xf2\x9f\xdd\x7b\xaf\
\x7f\xd0\x73\x3f\xf8\x2b\xcf\xfd\x9d\x8f\xff\x00\x54\x8f\x7e\xeb\
\xdd\x1f\xef\xe5\x75\xff\x00\x0a\xb2\xff\x00\x87\x27\xf9\xd7\xd1\
\xbf\x0a\xbf\xd9\x0d\xff\x00\x42\xff\x00\xe9\xa3\xfd\x26\x7f\xc6\
\x4b\xff\x00\x66\x8b\xfd\x22\xff\x00\x76\xff\x00\xd1\xd7\x4f\x76\
\x0f\x6c\x7f\xc7\x9b\xfe\xcb\xae\xc4\xfe\x31\xfc\x63\xfb\x89\xf6\
\x1f\xf1\x75\xa5\xfb\x7f\xba\xf3\xfe\xef\x8b\xc3\x27\xba\xf7\x5b\
\x7d\x7b\xf7\x5e\xea\x80\xff\x00\xe1\x51\x7f\xf6\xe2\xaf\x9c\xbf\
\xf9\x6c\xdf\xfc\x18\x5f\x1f\x7d\xfb\xaf\x75\xa8\x2f\xfc\x22\xb3\
\xfe\xde\x99\xdf\x9f\xf8\xa0\x3d\xa7\xff\x00\xc1\x13\xf1\x5b\xdf\
\xba\xf7\x5f\x4f\x85\xfd\x43\xfd\xf7\xd7\x8f\x7e\xeb\xdd\x66\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7f\xff\xd3\xdf\xe3\
\xdf\xba\xf7\x5c\x1f\xe8\x07\xf8\xff\x00\xbe\xff\x00\x7b\xf7\xee\
\xbd\xd6\x2f\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd6\x90\
\xdf\x2c\x3f\xe1\x64\xdf\xec\xaf\xfc\xa6\xf9\x2b\xf1\xa7\xfe\x1b\
\x93\xfb\xf1\xfe\xcb\xc7\x7f\xf7\x27\x46\x7f\x7d\x7f\xd9\xbd\xfe\
\xed\x7f\x7c\x3f\xd1\x2f\x62\xee\x3d\x83\xfd\xe8\xfe\xee\x7f\xb2\
\xbf\xb8\x3f\xbb\xff\x00\xde\x0f\xee\xff\x00\xdd\xfd\x8f\xdf\xd6\
\xfd\xa7\x9b\xc5\xf7\x13\x69\xf2\x37\xba\xf7\x40\x07\xfd\x07\x33\
\xff\x00\x82\xbc\xff\x00\xd9\xd8\xff\x00\xf5\x48\xf7\xee\xbd\xd6\
\xef\x3f\x13\xfb\xcf\xfd\x9a\x0f\x8b\x3f\x1a\xbe\x4b\x7f\x75\xff\
\x00\xb8\xff\x00\xec\xc3\xf4\x07\x4d\xf7\x9f\xf7\x2b\xf8\xdf\xf7\
\x97\xfb\x9f\xfe\x96\xba\xeb\x6e\x6f\xef\xee\xbf\xf7\x8f\xf8\x46\
\xdf\xfe\xf0\x7f\x77\xff\x00\xbc\x1f\x69\xf7\xdf\x61\x45\xf7\x7e\
\x1f\x2f\xdb\xc3\xab\xc6\xbe\xeb\xdd\x6a\x0b\xf2\xc3\xfe\x16\x4d\
\xfe\xca\xff\x00\xca\x6f\x92\xbf\x1a\x7f\xe1\xb9\x3f\xbf\x1f\xec\
\xbc\x77\xff\x00\x72\x74\x67\xf7\xd7\xfd\x9b\xdf\xee\xd7\xf7\xc3\
\xfd\x12\xf6\x2e\xe3\xd8\x3f\xde\x8f\xee\xe7\xfb\x2b\xfb\x83\xfb\
\xbf\xfd\xe0\xfe\xef\xfd\xdf\xd8\xfd\xfd\x6f\xda\x79\xbc\x5f\x71\
\x36\x9f\x23\x7b\xaf\x75\xa0\x3f\xcb\x0e\xf3\xff\x00\x66\x83\xe5\
\x37\xc9\x5f\x92\xdf\xdd\x7f\xee\x3f\xfb\x30\xfd\xff\x00\xdc\x9d\
\xe7\xfd\xca\xfe\x37\xfd\xe5\xfe\xe7\xff\x00\xa5\xae\xc5\xdc\x7b\
\xfb\xfb\xaf\xfd\xe3\xfe\x11\xb7\xff\x00\xbc\x1f\xdd\xff\x00\xef\
\x07\xda\x7d\xf7\xd8\x51\x7d\xdf\x87\xcb\xf6\xf0\xea\xf1\xaf\xba\
\xf7\x5b\x7d\x7c\x4f\xff\x00\x85\x93\x7f\xb2\xbf\xf1\x67\xe3\x57\
\xc6\x9f\xf8\x6e\x4f\xef\xc7\xfb\x2f\x1d\x01\xd3\x7d\x19\xfd\xf5\
\xff\x00\x66\xf7\xfb\xb5\xfd\xf0\xff\x00\x44\xbd\x75\xb7\x36\x0f\
\xf7\xa3\xfb\xb9\xfe\xca\xfe\xe0\xfe\xef\xff\x00\x78\x3f\xbb\xff\
\x00\x77\xf6\x3f\x7f\x5b\xf6\x9e\x6f\x17\xdc\x4d\xa7\xc8\xde\xeb\
\xdd\x0f\xff\x00\xf4\x0a\x6f\xfc\x39\xff\x00\xfd\x8c\xb7\xfd\x9f\
\x2f\xf4\x1f\xff\x00\x0e\x1f\xff\x00\x39\xcd\xfe\x85\x7f\xd9\x5d\
\xff\x00\x49\x7f\xe8\x83\xfd\x9b\x5f\xf8\xcf\xbf\xe8\xbb\xfd\x23\
\xff\x00\xb3\x15\xd7\xff\x00\xe9\x03\xfb\x81\xfd\xff\x00\xfe\x13\
\xfc\x6f\xf8\x0e\x13\xf8\xaf\xda\x7d\xd7\xd8\x51\xf9\x7e\xde\x3f\
\x75\xee\xbd\xff\x00\x41\x59\x7f\xc3\x60\x7f\xd8\xb4\xbf\xd9\x0d\
\xff\x00\x4e\x1f\xf0\xde\x1f\xf3\x83\x3f\xe9\xab\xfd\x9a\x2f\xf4\
\x69\xfe\x97\xff\x00\xd9\x4a\xff\x00\x8c\x05\xfe\x94\x7f\xd1\xc7\
\xfb\x2e\xbd\x81\xfe\x8f\xff\x00\xbf\xff\x00\xdc\x0f\xe2\xdf\xc1\
\x3f\x8f\x66\xff\x00\x85\x7d\xdf\xda\xfd\xfd\x67\x8b\xee\x24\xf7\
\x5e\xeb\x48\x6f\x96\x1d\xe7\xfe\xcd\x07\xca\x6f\x92\xbf\x25\xbf\
\xba\xff\x00\xdc\x7f\xf6\x61\xfb\xff\x00\xb9\x3b\xcf\xfb\x95\xfc\
\x6f\xfb\xcb\xfd\xcf\xff\x00\x4b\x5d\x8b\xb8\xf7\xf7\xf7\x5f\xfb\
\xc7\xfc\x23\x6f\xff\x00\x78\x3f\xbb\xff\x00\xde\x0f\xb4\xfb\xef\
\xb0\xa2\xfb\xbf\x0f\x97\xed\xe1\xd5\xe3\x5f\x75\xee\xb6\xfa\xf8\
\x9f\xff\x00\x08\xd9\xff\x00\x66\x83\xe2\xcf\xc6\xaf\x92\xdf\xf0\
\xe3\x7f\xdc\x7f\xf6\x61\xfa\x03\xa6\xfb\xcf\xfb\x95\xfe\xca\x17\
\xf7\x97\xfb\x9f\xfe\x96\xba\xeb\x6e\x6f\xef\xee\xbf\xf7\x8f\xfd\
\x9a\x0d\xbf\xfd\xe0\xfe\xef\xff\x00\x78\x3e\xd3\xef\xbe\xc2\x8b\
\xee\xfc\x3e\x5f\xb7\x87\x57\x8d\x7d\xd7\xba\x1f\xff\x00\xe8\x06\
\x6f\xfc\x1a\x1f\xfe\xc9\x3f\xff\x00\xad\xbf\xbf\x75\xee\xb7\xf8\
\xf7\xee\xbd\xd7\xc0\x3f\xdf\xba\xf7\x4a\x0d\xa7\xbb\x37\x4e\xc2\
\xdd\x3b\x6b\x7d\x6c\x5d\xcb\xb8\x36\x5e\xf6\xd9\x7b\x83\x0d\xbb\
\x36\x76\xf1\xda\x79\x9c\x8e\xdc\xdd\x3b\x4f\x74\xed\xcc\x8d\x36\
\x63\x6f\x6e\x5d\xb5\xb8\x70\xf5\x34\x79\x6c\x16\xe0\xc1\x65\xa8\
\xe1\xaa\xa3\xac\xa5\x9a\x2a\x9a\x5a\x98\x92\x58\x9d\x5d\x55\x87\
\xba\xf7\x5f\x7b\x3d\xa5\x16\xea\xa2\xda\xbb\x66\x8f\x7d\x66\x36\
\xfe\xe3\xde\xd4\xbb\x7f\x0d\x4d\xbc\x77\x0e\xd3\xdb\x79\x2d\x97\
\xb5\xb3\xbb\xa6\x0c\x75\x34\x5b\x87\x33\xb6\xb6\x76\x63\x75\xef\
\xec\xb6\xd4\xc0\x65\x32\xcb\x34\xf4\x78\xca\xac\xee\x6a\xa2\x82\
\x9d\xd2\x09\x6b\xea\xdd\x1a\xa2\x4f\x75\xee\xb5\x27\xff\x00\xa0\
\xd5\xbf\x95\x97\xfc\xf8\x3f\x9f\xff\x00\xfa\x2b\x3e\x3a\xff\x00\
\xf7\x55\x7b\xf7\x5e\xeb\xdf\xf4\x1a\xb7\xf2\xb2\xff\x00\x9f\x07\
\xf3\xff\x00\xff\x00\x45\x67\xc7\x5f\xfe\xea\xaf\x7e\xeb\xdd\x6d\
\xf5\xac\x7f\x8f\xfb\xc7\xfc\x57\xdf\xba\xf7\x5a\x82\xff\x00\xd0\
\x6a\xdf\xca\xcb\xfe\x7c\x1f\xcf\xff\x00\xfd\x15\x9f\x1d\x7f\xfb\
\xaa\xbd\xfb\xaf\x75\xb4\xdf\xc8\x4e\xee\xda\x9f\x1b\x3a\x0f\xbc\
\x3e\x45\xef\xac\x7e\xe1\xca\xec\x9e\x82\xea\x0e\xcb\xee\xad\xe3\
\x8b\xda\x74\x98\xda\xed\xd3\x92\xda\xdd\x57\xb2\xf3\x5b\xeb\x70\
\xd0\x6d\xaa\x2c\xc6\x5b\x05\x89\xac\xdc\x15\x98\x9c\x14\xd1\xd1\
\xc5\x55\x5d\x47\x4d\x25\x4b\x22\xcb\x3c\x28\x5a\x45\xf7\x5e\xeb\
\x5c\x3f\x8f\x7f\xf0\xae\xcf\xe5\xb7\xf2\x4f\xbf\x3a\x3f\xe3\xa6\
\xc5\xe9\x2f\x9b\xf8\xad\xed\xdf\xbd\xbf\xd6\x9d\x2b\xb3\xb2\x9b\
\xb3\xad\xba\x1a\x87\x6b\x63\x77\x4f\x6a\x6f\x4c\x2e\xc5\xdb\xd5\
\xfb\x96\xb7\x0f\xf2\x53\x3b\x96\xa3\xdb\xf4\x79\x6c\xec\x32\x56\
\x4b\x4b\x43\x59\x53\x1d\x32\xbb\x45\x04\xce\x16\x36\xf7\x5e\xeb\
\x63\xcf\x90\x9d\xdd\xb5\x3e\x36\x74\x1f\x78\x7c\x8b\xdf\x58\xfd\
\xc3\x95\xd9\x3d\x05\xd4\x1d\x97\xdd\x5b\xc7\x17\xb4\xe9\x31\xb5\
\xdb\xa7\x25\xb5\xba\xaf\x65\xe6\xb7\xd6\xe1\xa0\xdb\x54\x59\x8c\
\xb6\x0b\x13\x59\xb8\x2b\x31\x38\x29\xa3\xa3\x8a\xaa\xba\x8e\x9a\
\x4a\x96\x45\x96\x78\x50\xb4\x8b\xee\xbd\xd6\xac\x9f\xf4\x1a\xb7\
\xf2\xb2\xff\x00\x9f\x07\xf3\xff\x00\xff\x00\x45\x67\xc7\x5f\xfe\
\xea\xaf\x7e\xeb\xdd\x0b\xff\x00\x1e\xff\x00\xe1\x5d\x9f\xcb\x6f\
\xe4\x9f\x7e\x74\x7f\xc7\x4d\x8b\xd2\x5f\x37\xf1\x5b\xdb\xbf\x7b\
\x7f\xad\x3a\x57\x67\x65\x37\x67\x5b\x74\x35\x0e\xd6\xc6\xee\x9e\
\xd4\xde\x98\x5d\x8b\xb7\xab\xf7\x2d\x6e\x1f\xe4\xa6\x77\x2d\x47\
\xb7\xe8\xf2\xd9\xd8\x64\xac\x96\x96\x86\xb2\xa6\x3a\x65\x76\x8a\
\x09\x9c\x2c\x6d\xee\xbd\xd5\xdd\xff\x00\x33\x6d\xdf\xba\xb6\x1f\
\xf2\xdc\xfe\x60\xdb\xe7\x62\xee\x5d\xc1\xb2\xf7\xb6\xcc\xf8\x43\
\xf2\xbf\x76\x6c\xfd\xe3\xb4\xf3\x39\x1d\xbb\xba\xb6\x9e\xe9\xdb\
\x9d\x0f\xbf\x73\x1b\x7b\x72\xed\x9d\xc3\x87\xa9\xa2\xcb\x60\x77\
\x06\x0b\x2d\x47\x0d\x55\x1d\x65\x2c\xd1\x54\xd2\xd4\x44\x92\x44\
\xea\xea\xac\x3d\xd7\xba\xf8\xb4\xfc\x4f\xef\x3f\xf6\x57\xfe\x53\
\x7c\x6a\xf9\x2d\xfd\xd7\xfe\xfc\x7f\xb2\xf1\xdf\xfd\x37\xde\x7f\
\xdc\xaf\xe3\x7f\xdd\xaf\xef\x87\xfa\x25\xec\x5d\xb9\xbf\xbf\xba\
\xff\x00\xde\x3f\xe1\x1b\x83\xfb\xbf\xfd\xe0\xfe\xef\xfd\xa7\xdf\
\x7d\x85\x6f\xda\x79\xbc\xbf\x6f\x36\x9f\x1b\x7b\xaf\x75\xb7\xd7\
\xcb\x0f\xf8\x59\x37\xfb\x34\x1f\x16\x7e\x4a\xfc\x69\xff\x00\x86\
\xe4\xfe\xe3\xff\x00\xb3\x0f\xd0\x1d\xc9\xd1\x9f\xdf\x5f\xf6\x6f\
\x7f\xbc\xbf\xdc\xff\x00\xf4\xb5\xd7\x5b\x8f\x60\xff\x00\x7a\x3f\
\xbb\x9f\xec\xaf\xed\xff\x00\xef\x07\xf7\x7f\xfb\xc1\xf7\x7f\x63\
\xf7\xf4\x5f\x77\xe1\xf1\x7d\xc4\x3a\xbc\x8b\xee\xbd\xd6\xa0\xbf\
\x13\xfa\x33\xfd\x9a\x0f\x94\xdf\x1a\xbe\x34\xff\x00\x7a\x3f\xb8\
\xff\x00\xec\xc3\xf7\xff\x00\x4d\xf4\x67\xf7\xd7\xf8\x27\xf7\x97\
\xfb\x9f\xfe\x96\xbb\x17\x6e\x6c\x1f\xef\x47\xf7\x73\xf8\xbe\xdf\
\xfe\xf0\x7f\x77\xff\x00\xbc\x1f\x77\xf6\x3f\x7f\x45\xf7\x7e\x1f\
\x17\xdc\x43\xab\xc8\xbe\xeb\xdd\x6d\xf5\xf2\xc3\xfe\x11\xb3\xfe\
\xca\xff\x00\xc5\x9f\x92\xbf\x25\xbf\xe1\xc6\xff\x00\xbf\x1f\xec\
\xbc\x74\x07\x72\x77\x9f\xf7\x2b\xfd\x94\x2f\xee\xd7\xf7\xc3\xfd\
\x12\xf5\xd6\xe3\xdf\xdf\xdd\x7f\xef\x1f\xfb\x34\x1b\x83\xfb\xbf\
\xfd\xe0\xfe\xef\xfd\xa7\xdf\x7d\x85\x6f\xda\x79\xbc\xbf\x6f\x36\
\x9f\x1b\x7b\xaf\x75\xac\x27\xf2\xba\xf8\x33\xff\x00\x0e\x4f\xf3\
\xaf\xa3\x7e\x15\x7f\xa5\x1f\xf4\x2f\xfe\x9a\x3f\xd2\x67\xfc\x64\
\xbf\xee\x4f\xfa\x45\xfe\xed\xff\x00\xa3\xae\x9e\xec\x1e\xd8\xff\
\x00\x8f\x37\xfb\xdd\xb1\x3f\x8c\x7f\x18\xfe\xe2\x7d\x87\xfc\x5d\
\x69\x7e\xdf\xee\xbc\xff\x00\xbb\xe2\xf0\xc9\xee\xbd\xd6\xdf\x5f\
\xf0\xc6\x7f\xf4\x0d\x8f\xfd\x8e\xa7\xfd\x9a\x2f\xf6\x73\xff\x00\
\xd9\x30\xff\x00\xb9\x6a\xff\x00\x42\x7f\xec\xba\xff\x00\xa4\x9f\
\xf6\x62\xbf\xe7\x13\xff\x00\xe6\x72\x7f\xa5\xce\xf6\xfe\xe7\x7f\
\x73\xbf\xd3\xb7\xf1\xff\x00\xf8\xf5\x72\xbf\xc4\x3f\x85\x7d\x8f\
\xf9\x37\xdc\xfd\xe5\x3f\xba\xf7\x5e\xff\x00\x87\xcc\xff\x00\xa0\
\x93\xbf\xec\x4a\xdf\xec\xae\xff\x00\xb2\x61\xfe\xce\x7f\xfd\xcc\
\xaf\xfa\x6c\xff\x00\x66\x2b\xfd\x1b\x7f\xb2\xeb\xff\x00\x39\x61\
\xff\x00\x32\x6f\xfd\x11\xf4\x4f\xf7\xc7\xfb\xe3\xfe\x82\x7f\x80\
\x7f\xc7\xd5\x8a\xfe\x1f\xfc\x57\xef\xbf\xca\x7e\xdb\xec\xea\x3d\
\xd7\xba\x20\x3f\xcd\x17\xfe\x12\x9b\xff\x00\x0d\xb1\xf0\x53\xbc\
\xbe\x6a\xff\x00\xb3\xe5\xfe\x9a\x3f\xd0\xbf\xfa\x33\xff\x00\x8c\
\x69\xfe\xca\xef\xfa\x3a\xfe\xf2\x7f\xa4\x5e\xe1\xeb\xee\xa7\xff\
\x00\x8f\xcb\xfd\x98\xad\xf7\xfc\x1f\xf8\x3f\xf7\xef\xef\xff\x00\
\xe2\xd5\x55\xf7\x1f\x6b\xe0\xfd\xaf\x2f\x9a\x3f\x75\xee\x88\x0f\
\xfc\x25\xd3\xfe\xdf\xab\xf0\x6b\xff\x00\x2e\x67\xff\x00\x80\xf7\
\xe4\x17\xbf\x75\xee\xb7\xf8\xff\x00\x85\x45\xff\x00\xdb\x8a\xbe\
\x72\xff\x00\xe5\xb3\x7f\xf0\x61\x7c\x7d\xf7\xee\xbd\xd7\xcc\x27\
\xf9\x5d\x7c\x19\xff\x00\x87\x27\xf9\xd7\xd1\xbf\x0a\xbf\xd2\x8f\
\xfa\x17\xff\x00\x4d\x1f\xe9\x33\xfe\x32\x5f\xf7\x27\xfd\x22\xff\
\x00\x76\xff\x00\xd1\xd7\x4f\x76\x0f\x6c\x7f\xc7\x9b\xfd\xee\xd8\
\x9f\xc6\x3f\x8c\x7f\x71\x3e\xc3\xfe\x2e\xb4\xbf\x6f\xf7\x5e\x7f\
\xdd\xf1\x78\x64\xf7\x5e\xeb\x7f\x8f\xe5\x75\xff\x00\x09\x4d\xff\
\x00\x86\xd8\xf9\xd7\xd1\xbf\x35\x7f\xd9\xf2\xff\x00\x4d\x1f\xe8\
\x5f\xfd\x26\x7f\xc6\x34\xff\x00\x65\x77\xfd\x1d\x7f\x79\x3f\xd2\
\x2f\x4f\x76\x0f\x53\xff\x00\xc7\xe5\xfe\xcc\x56\xfb\xfe\x0f\xfc\
\x1f\xfb\xf7\xf7\xff\x00\xf1\x6a\xaa\xfb\x8f\xb5\xf0\x7e\xd7\x97\
\xcd\x1f\xba\xf7\x57\xf9\xfc\xd1\x7e\x73\x7f\xc3\x6c\x7c\x14\xef\
\x2f\x9a\xbf\xe8\xbb\xfd\x34\x7f\xa1\x7f\xf4\x67\xff\x00\x18\xd3\
\xfb\xed\xfe\x8e\xbf\xbc\x9f\xe9\x17\xb8\x7a\xfb\xa9\xff\x00\xe3\
\xf2\xfe\xe8\xef\xbf\xe0\xff\x00\xc1\xff\x00\xbf\x7f\x7f\xff\x00\
\x16\xaa\xaf\xb8\xfb\x5f\x07\xed\x79\x7c\xd1\xfb\xaf\x75\xa8\x2f\
\xfc\x3e\x67\xfd\x04\x9d\xff\x00\x62\x56\xff\x00\x65\x77\xfd\x93\
\x0f\xf6\x73\xff\x00\xee\x65\x7f\xd3\x67\xfb\x31\x5f\xe8\xdb\xfd\
\x97\x5f\xf9\xcb\x0f\xf9\x93\x7f\xe8\x8f\xa2\x7f\xbe\x3f\xdf\x1f\
\xf4\x13\xfc\x03\xfe\x3e\xac\x57\xf0\xff\x00\xe2\xbf\x7d\xfe\x53\
\xf6\xdf\x67\x51\xee\xbd\xd5\xbe\xff\x00\x25\x6f\xf8\x4e\x07\xfc\
\x33\xf7\xca\x6d\xfd\xf2\x5b\xfd\x9c\xaf\xf6\x61\xff\x00\xbf\x1d\
\x01\xba\x7a\x33\xfb\x95\xfe\xcb\xc7\xfa\x25\xfe\x17\xfd\xe5\xec\
\x5e\xab\xdf\xdf\xde\x8f\xef\x1f\xfa\x73\xec\xdf\xbd\xfb\x2f\xf4\
\x65\xf6\x9f\x63\xf6\x10\xf9\x3e\xf7\xcb\xf7\x0b\xe1\xf1\xcb\xee\
\xbd\xd6\xcf\x83\xea\x3f\xd7\x1f\xef\x7e\xfd\xd7\xba\xcf\xef\xdd\
\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xff\xd4\xdf\xe3\xdf\xba\
\xf7\x58\xe4\xfc\x7f\xb1\xf7\xee\xbd\xd6\x3f\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xc4\x37\xf9\xb0\x7f\xdb\xd3\x3f\x99\
\x5f\xfe\x2f\xf7\xcc\x8f\xfe\x08\x9e\xc6\xf7\xee\xbd\xd1\x01\xf7\
\xee\xbd\xd6\xef\x3f\x13\xff\x00\xe1\x64\xdf\xec\xaf\xfc\x59\xf8\
\xd5\xf1\xa7\xfe\x1b\x93\xfb\xf1\xfe\xcb\xc7\x40\x74\xdf\x46\x7f\
\x7d\x7f\xd9\xbd\xfe\xed\x7f\x7c\x3f\xd1\x2f\x5d\x6d\xcd\x83\xfd\
\xe8\xfe\xee\x7f\xb2\xbf\xb8\x3f\xbb\xff\x00\xde\x0f\xee\xff\x00\
\xdd\xfd\x8f\xdf\xd6\xfd\xa7\x9b\xc5\xf7\x13\x69\xf2\x37\xba\xf7\
\x5a\x82\xfc\xb0\xef\x3f\xf6\x68\x3e\x53\x7c\x95\xf9\x2d\xfd\xd7\
\xfe\xe3\xff\x00\xb3\x0f\xdf\xfd\xc9\xde\x7f\xdc\xaf\xe3\x7f\xde\
\x5f\xee\x7f\xfa\x5a\xec\x5d\xc7\xbf\xbf\xba\xff\x00\xde\x3f\xe1\
\x1b\x7f\xfb\xc1\xfd\xdf\xfe\xf0\x7d\xa7\xdf\x7d\x85\x17\xdd\xf8\
\x7c\xbf\x6f\x0e\xaf\x1a\xfb\xaf\x74\x00\x7b\xf7\x5e\xeb\x77\x9f\
\x89\xff\x00\xf0\x8d\x9f\xf6\x68\x3e\x2c\xfc\x6a\xf9\x2d\xff\x00\
\x0e\x37\xfd\xc7\xff\x00\x66\x1f\xa0\x3a\x6f\xbc\xff\x00\xb9\x5f\
\xec\xa1\x7f\x79\x7f\xb9\xff\x00\xe9\x6b\xae\xb6\xe6\xfe\xfe\xeb\
\xff\x00\x78\xff\x00\xd9\xa0\xdb\xff\x00\xde\x0f\xee\xff\x00\xf7\
\x83\xed\x3e\xfb\xec\x28\xbe\xef\xc3\xe5\xfb\x78\x75\x78\xd7\xdd\
\x7b\xa1\xff\x00\xfe\x82\xb2\xff\x00\x86\xc0\xff\x00\xb1\x69\x7f\
\xb2\x1b\xfe\x9c\x3f\xe1\xbc\x3f\xe7\x06\x7f\xd3\x57\xfb\x34\x5f\
\xe8\xd3\xfd\x2f\xff\x00\xb2\x95\xff\x00\x18\x0b\xfd\x28\xff\x00\
\xa3\x8f\xf6\x5d\x7b\x03\xfd\x1f\xff\x00\x7f\xff\x00\xb8\x1f\xc5\
\xbf\x82\x7f\x1e\xcd\xff\x00\x0a\xfb\xbf\xb5\xfb\xfa\xcf\x17\xdc\
\x49\xee\xbd\xd6\x90\xdf\x2c\x3b\xcf\xfd\x9a\x0f\x94\xdf\x25\x7e\
\x4b\x7f\x75\xff\x00\xb8\xff\x00\xec\xc3\xf7\xff\x00\x72\x77\x9f\
\xf7\x2b\xf8\xdf\xf7\x97\xfb\x9f\xfe\x96\xbb\x17\x71\xef\xef\xee\
\xbf\xf7\x8f\xf8\x46\xdf\xfe\xf0\x7f\x77\xff\x00\xbc\x1f\x69\xf7\
\xdf\x61\x45\xf7\x7e\x1f\x2f\xdb\xc3\xab\xc6\xbe\xeb\xdd\x00\x1e\
\xfd\xd7\xba\xfb\x79\x7f\x29\xff\x00\xfb\x75\x9f\xf2\xd4\xff\x00\
\xc5\x01\xf8\x6f\xff\x00\xc0\xed\xd7\x3e\xfd\xd7\xba\x3f\xde\xfd\
\xd7\xba\xf7\xbf\x75\xee\xbe\x01\xfe\xfd\xd7\xba\xdf\xe3\xfe\x80\
\x66\xff\x00\xc1\xa1\xff\x00\xec\x93\xff\x00\xfa\xdb\xfb\xf7\x5e\
\xeb\xdf\xf4\x1c\xcf\xfe\x0a\xf3\xff\x00\x67\x63\xff\x00\xd5\x23\
\xdf\xba\xf7\x5a\x03\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xfb\xf8\x7b\
\xf7\x5e\xeb\xe0\x1f\xef\xdd\x7b\xad\xde\x7e\x58\x7f\xc2\xc9\xbf\
\xd9\xa0\xf8\xb3\xf2\x57\xe3\x4f\xfc\x37\x27\xf7\x1f\xfd\x98\x7e\
\x80\xee\x4e\x8c\xfe\xfa\xff\x00\xb3\x7b\xfd\xe5\xfe\xe7\xff\x00\
\xa5\xae\xba\xdc\x7b\x07\xfb\xd1\xfd\xdc\xff\x00\x65\x7f\x6f\xff\
\x00\x78\x3f\xbb\xff\x00\xde\x0f\xbb\xfb\x1f\xbf\xa2\xfb\xbf\x0f\
\x8b\xee\x21\xd5\xe4\x5f\x75\xee\xb5\x84\xfe\x53\xff\x00\xf6\xf4\
\xcf\xe5\xa9\xff\x00\x8b\xfd\xf0\xdf\xff\x00\x82\x27\xae\x7d\xfb\
\xaf\x75\xf5\xf4\xfe\x6c\x1f\xf6\xeb\x3f\xe6\x57\xff\x00\x8a\x03\
\xf3\x23\xff\x00\x81\xdb\xb1\xbd\xfb\xaf\x75\xf1\x8c\xf8\x9f\xd1\
\x9f\xec\xd0\x7c\xa6\xf8\xd5\xf1\xa7\xfb\xd1\xfd\xc7\xff\x00\x66\
\x1f\xbf\xfa\x6f\xa3\x3f\xbe\xbf\xc1\x3f\xbc\xbf\xdc\xff\x00\xf4\
\xb5\xd8\xbb\x73\x60\xff\x00\x7a\x3f\xbb\x9f\xc5\xf6\xff\x00\xf7\
\x83\xfb\xbf\xfd\xe0\xfb\xbf\xb1\xfb\xfa\x2f\xbb\xf0\xf8\xbe\xe2\
\x1d\x5e\x45\xf7\x5e\xeb\x77\x9f\xfa\x05\x37\xfe\x1b\x03\xfe\xc6\
\x5b\xfe\xcf\x97\xfa\x70\xff\x00\x86\xf0\xff\x00\x9c\xe6\xff\x00\
\x42\xbf\xec\xae\xff\x00\xa3\x4f\xf4\xbf\xfe\xca\x57\xfc\x67\xdf\
\xf4\x5d\xfe\x91\xff\x00\xd9\x8a\xec\x0f\xf4\x7f\xfd\xff\x00\xfe\
\xe0\x7f\x09\xfe\x37\xfc\x07\x37\xfc\x2b\xee\xfe\xeb\xec\x2b\x3c\
\x5f\x6f\x27\xba\xf7\x40\x07\xcb\x0f\xf8\x59\x37\xfb\x34\x1f\x16\
\x7e\x4a\xfc\x69\xff\x00\x86\xe4\xfe\xe3\xff\x00\xb3\x0f\xd0\x1d\
\xc9\xd1\x9f\xdf\x5f\xf6\x6f\x7f\xbc\xbf\xdc\xff\x00\xf4\xb5\xd7\
\x5b\x8f\x60\xff\x00\x7a\x3f\xbb\x9f\xec\xaf\xed\xff\x00\xef\x07\
\xf7\x7f\xfb\xc1\xf7\x7f\x63\xf7\xf4\x5f\x77\xe1\xf1\x7d\xc4\x3a\
\xbc\x8b\xee\xbd\xd6\x90\xde\xfd\xd7\xba\x1f\xfe\x27\xf4\x67\xfb\
\x34\x1f\x29\xbe\x35\x7c\x69\xfe\xf4\x7f\x71\xff\x00\xd9\x87\xef\
\xfe\x9b\xe8\xcf\xef\xaf\xf0\x4f\xef\x2f\xf7\x3f\xfd\x2d\x76\x2e\
\xdc\xd8\x3f\xde\x8f\xee\xe7\xf1\x7d\xbf\xfd\xe0\xfe\xef\xff\x00\
\x78\x3e\xef\xec\x7e\xfe\x8b\xee\xfc\x3e\x2f\xb8\x87\x57\x91\x7d\
\xd7\xba\xdf\xe3\xe2\x7f\xfc\x23\x67\xfd\x95\xff\x00\x94\xdf\x1a\
\xbe\x4b\x7f\xc3\x8d\xff\x00\x7e\x3f\xd9\x78\xef\xfe\x9b\xef\x3f\
\xee\x57\xfb\x28\x5f\xdd\xaf\xef\x87\xfa\x25\xec\x5d\xb9\xbf\xbf\
\xba\xff\x00\xde\x3f\xf6\x68\x37\x07\xf7\x7f\xfb\xc1\xfd\xdf\xfb\
\x4f\xbe\xfb\x0a\xdf\xb4\xf3\x79\x7e\xde\x6d\x3e\x36\xf7\x5e\xeb\
\x67\xbf\xe6\xc1\xff\x00\x6e\xb3\xfe\x65\x7f\xf8\xa0\x3f\x32\x3f\
\xf8\x1d\xbb\x1b\xdf\xba\xf7\x5f\x20\xbf\xe5\x75\xf3\x9b\xfe\x1b\
\x63\xe7\x5f\x46\xfc\xd5\xff\x00\x45\xdf\xe9\xa3\xfd\x0b\xff\x00\
\xa4\xcf\xf8\xc6\x9f\xdf\x6f\xf4\x75\xfd\xe4\xff\x00\x48\xbd\x3d\
\xd8\x3d\x4f\xff\x00\x1f\x97\xf7\x47\x7d\xff\x00\x07\xfe\x0f\xfd\
\xfb\xfb\xff\x00\xf8\xb5\x55\x7d\xc7\xda\xf8\x3f\x6b\xcb\xe6\x8f\
\xdd\x7b\xab\xfc\xfe\x68\xbf\xf0\xab\x2f\xf8\x72\x7f\x82\x9d\xe5\
\xf0\xab\xfd\x90\xdf\xf4\x2f\xfe\x9a\x3f\xd1\x9f\xfc\x64\xbf\xf6\
\x68\xbf\xd2\x2f\xf7\x6f\xfd\x1d\x77\x0f\x5f\x76\xc7\xfc\x79\xbf\
\xec\xba\xec\x4f\xe3\x1f\xc6\x3f\xb8\x9f\x61\xff\x00\x17\x5a\x5f\
\xb7\xfb\xaf\x3f\xee\xf8\xbc\x32\x7b\xaf\x75\x40\x7f\xca\xeb\xe7\
\x37\xfc\x36\xc7\xce\xbe\x8d\xf9\xab\xfe\x8b\xbf\xd3\x47\xfa\x17\
\xff\x00\x49\x9f\xf1\x8d\x3f\xbe\xdf\xe8\xeb\xfb\xc9\xfe\x91\x7a\
\x7b\xb0\x7a\x9f\xfe\x3f\x2f\xee\x8e\xfb\xfe\x0f\xfc\x1f\xfb\xf7\
\xf7\xff\x00\xf1\x6a\xaa\xfb\x8f\xb5\xf0\x7e\xd7\x97\xcd\x1f\xba\
\xf7\x57\xf9\xfc\xd1\x7f\xe1\x56\x5f\xf0\xe4\xff\x00\x05\x3b\xcb\
\xe1\x57\xfb\x21\xbf\xe8\x5f\xfd\x34\x7f\xa3\x3f\xf8\xc9\x7f\xec\
\xd1\x7f\xa4\x5f\xee\xdf\xfa\x3a\xee\x1e\xbe\xed\x8f\xf8\xf3\x7f\
\xd9\x75\xd8\x9f\xc6\x3f\x8c\x7f\x71\x3e\xc3\xfe\x2e\xb4\xbf\x6f\
\xf7\x5e\x7f\xdd\xf1\x78\x64\xf7\x5e\xea\x80\xff\x00\x95\xd7\xce\
\x6f\xf8\x6d\x8f\x9d\x7d\x1b\xf3\x57\xfd\x17\x7f\xa6\x8f\xf4\x2f\
\xfe\x93\x3f\xe3\x1a\x7f\x7d\xbf\xd1\xd7\xf7\x93\xfd\x22\xf4\xf7\
\x60\xf5\x3f\xfc\x7e\x5f\xdd\x1d\xf7\xfc\x1f\xf8\x3f\xf7\xef\xef\
\xff\x00\xe2\xd5\x55\xf7\x1f\x6b\xe0\xfd\xaf\x2f\x9a\x3f\x75\xee\
\xaf\xf3\xf9\xa2\xff\x00\xc2\xac\xbf\xe1\xc9\xfe\x0a\x77\x97\xc2\
\xaf\xf6\x43\x7f\xd0\xbf\xfa\x68\xff\x00\x46\x7f\xf1\x92\xff\x00\
\xd9\xa2\xff\x00\x48\xbf\xdd\xbf\xf4\x75\xdc\x3d\x7d\xdb\x1f\xf1\
\xe6\xff\x00\xb2\xeb\xb1\x3f\x8c\x7f\x18\xfe\xe2\x7d\x87\xfc\x5d\
\x69\x7e\xdf\xee\xbc\xff\x00\xbb\xe2\xf0\xc9\xee\xbd\xd5\x01\xff\
\x00\x2b\xaf\x9c\xdf\xf0\xdb\x1f\x3a\xfa\x37\xe6\xaf\xfa\x2e\xff\
\x00\x4d\x1f\xe8\x5f\xfd\x26\x7f\xc6\x34\xfe\xfb\x7f\xa3\xaf\xef\
\x27\xfa\x45\xe9\xee\xc1\xea\x7f\xf8\xfc\xbf\xba\x3b\xef\xf8\x3f\
\xf0\x7f\xef\xdf\xdf\xff\x00\xc5\xaa\xab\xee\x3e\xd7\xc1\xfb\x5e\
\x5f\x34\x7e\xeb\xdd\x6f\xf1\xfc\xae\xbf\xe1\x56\x5f\xf0\xe4\xff\
\x00\x3a\xfa\x37\xe1\x57\xfb\x21\xbf\xe8\x5f\xfd\x34\x7f\xa4\xcf\
\xf8\xc9\x7f\xec\xd1\x7f\xa4\x5f\xee\xdf\xfa\x3a\xe9\xee\xc1\xed\
\x8f\xf8\xf3\x7f\xd9\x75\xd8\x9f\xc6\x3f\x8c\x7f\x71\x3e\xc3\xfe\
\x2e\xb4\xbf\x6f\xf7\x5e\x7f\xdd\xf1\x78\x64\xf7\x5e\xea\xff\x00\
\x3f\x9a\x2f\xc1\x9f\xf8\x72\x7f\x82\x9d\xe5\xf0\xab\xfd\x28\xff\
\x00\xa1\x7f\xf4\xd1\xfe\x8c\xff\x00\xe3\x25\xff\x00\x72\x7f\xd2\
\x2f\xf7\x6f\xfd\x1d\x77\x0f\x5f\x76\xc7\xfc\x79\xbf\xde\xed\x89\
\xfc\x63\xf8\xc7\xf7\x13\xec\x3f\xe2\xeb\x4b\xf6\xff\x00\x75\xe7\
\xfd\xdf\x17\x86\x4f\x75\xee\xb5\x05\xff\x00\x86\x33\xff\x00\xa0\
\x6c\x7f\xec\x75\x3f\xec\xd1\x7f\xb3\x9f\xfe\xc9\x87\xfd\xcb\x57\
\xfa\x13\xff\x00\x65\xd7\xfd\x24\xff\x00\xb3\x15\xff\x00\x38\x9f\
\xff\x00\x33\x93\xfd\x2e\x77\xb7\xf7\x3b\xfb\x9d\xfe\x9d\xbf\x8f\
\xff\x00\xc7\xab\x95\xfe\x21\xfc\x2b\xec\x7f\xc9\xbe\xe7\xef\x29\
\xfd\xd7\xba\xb7\xdf\xe4\xad\xff\x00\x0a\x3f\xff\x00\x87\x81\xf9\
\x4d\xbf\xbe\x34\xff\x00\xb2\x6b\xfe\xcb\xc7\xf7\x1f\xa0\x37\x4f\
\x79\xff\x00\x7d\x7f\xd9\x87\xff\x00\x4b\x5f\xc5\x3f\xbb\x5d\x8b\
\xd5\x7b\x07\xfb\xaf\xfd\xdc\xff\x00\x41\x9d\x65\xf6\x5f\x7b\xfe\
\x93\x7e\xef\xef\xbe\xfe\x6f\x1f\xd9\x78\xbe\xdd\xbc\xde\x48\xbd\
\xd7\xba\xd9\xf5\x7f\x50\xf7\xee\xbd\xd6\x6f\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\xd5\xdf\xe3\xdf\xba\xf7\x58\xe4\
\xfc\x7f\xb1\xff\x00\x88\xf7\xee\xbd\xd6\x3f\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xc4\x37\xf9\xb0\x7f\xdb\xd3\x3f\x99\
\x5f\xfe\x2f\xf7\xcc\x8f\xfe\x08\x9e\xc6\xf7\xee\xbd\xd6\xcf\x7f\
\x13\xff\x00\xe1\x1b\x3f\xec\xd0\x7c\x59\xf8\xd5\xf2\x5b\xfe\x1c\
\x6f\xfb\x8f\xfe\xcc\x3f\x40\x74\xdf\x79\xff\x00\x72\xbf\xd9\x42\
\xfe\xf2\xff\x00\x73\xff\x00\xd2\xd7\x5d\x6d\xcd\xfd\xfd\xd7\xfe\
\xf1\xff\x00\xb3\x41\xb7\xff\x00\xbc\x1f\xdd\xff\x00\xef\x07\xda\
\x7d\xf7\xd8\x51\x7d\xdf\x87\xcb\xf6\xf0\xea\xf1\xaf\xba\xf7\x43\
\xff\x00\xfd\x00\xcd\xff\x00\x83\x43\xff\x00\xd9\x27\xff\x00\xf5\
\xb7\xf7\xee\xbd\xd6\x90\xdf\x2c\x3a\x33\xfd\x95\xff\x00\x94\xdf\
\x25\x7e\x34\xff\x00\x7a\x3f\xbf\x1f\xec\xbc\x77\xff\x00\x72\x74\
\x67\xf7\xd7\xf8\x27\xf7\x6b\xfb\xe1\xfe\x89\x7b\x17\x71\xec\x1f\
\xef\x47\xf7\x73\xf8\xbe\xe0\xfe\xef\xff\x00\x78\x3f\xbb\xff\x00\
\x77\xf6\x3f\x7f\x5b\xf6\x9e\x6f\x17\xdc\x4d\xa7\xc8\xde\xeb\xdd\
\x6d\xf5\xf1\x3f\xfe\x11\xb3\xfe\xcd\x07\xc5\x9f\x8d\x5f\x25\xbf\
\xe1\xc6\xff\x00\xb8\xff\x00\xec\xc3\xf4\x07\x4d\xf7\x9f\xf7\x2b\
\xfd\x94\x2f\xef\x2f\xf7\x3f\xfd\x2d\x75\xd6\xdc\xdf\xdf\xdd\x7f\
\xef\x1f\xfb\x34\x1b\x7f\xfb\xc1\xfd\xdf\xfe\xf0\x7d\xa7\xdf\x7d\
\x85\x17\xdd\xf8\x7c\xbf\x6f\x0e\xaf\x1a\xfb\xaf\x74\x3f\xff\x00\
\xd0\x56\x5f\xf0\xd8\x1f\xf6\x2d\x2f\xf6\x43\x7f\xd3\x87\xfc\x37\
\x87\xfc\xe0\xcf\xfa\x6a\xff\x00\x66\x8b\xfd\x1a\x7f\xa5\xff\x00\
\xf6\x52\xbf\xe3\x01\x7f\xa5\x1f\xf4\x71\xfe\xcb\xaf\x60\x7f\xa3\
\xff\x00\xef\xff\x00\xf7\x03\xf8\xb7\xf0\x4f\xe3\xd9\xbf\xe1\x5f\
\x77\xf6\xbf\x7f\x59\xe2\xfb\x89\x3d\xd7\xba\xf7\xfd\x02\x9b\xff\
\x00\x0e\x7f\xff\x00\x63\x2d\xff\x00\x67\xcb\xfd\x07\xff\x00\xc3\
\x87\xff\x00\xce\x73\x7f\xa1\x5f\xf6\x57\x7f\xd2\x5f\xfa\x20\xff\
\x00\x66\xd7\xfe\x33\xef\xfa\x2e\xff\x00\x48\xff\x00\xec\xc5\x75\
\xff\x00\xfa\x40\xfe\xe0\x7f\x7f\xff\x00\x84\xff\x00\x1b\xfe\x03\
\x84\xfe\x2b\xf6\x9f\x75\xf6\x14\x7e\x5f\xb7\x8f\xdd\x7b\xad\x21\
\xbe\x58\x74\x67\xfb\x2b\xff\x00\x29\xbe\x4a\xfc\x69\xfe\xf4\x7f\
\x7e\x3f\xd9\x78\xef\xfe\xe4\xe8\xcf\xef\xaf\xf0\x4f\xee\xd7\xf7\
\xc3\xfd\x12\xf6\x2e\xe3\xd8\x3f\xde\x8f\xee\xe7\xf1\x7d\xc1\xfd\
\xdf\xfe\xf0\x7f\x77\xfe\xef\xec\x7e\xfe\xb7\xed\x3c\xde\x2f\xb8\
\x9b\x4f\x91\xbd\xd7\xba\x00\x3d\xfb\xaf\x75\xbb\xcf\xc4\xff\x00\
\xf8\x59\x37\xfb\x2b\xff\x00\x16\x7e\x35\x7c\x69\xff\x00\x86\xe4\
\xfe\xfc\x7f\xb2\xf1\xd0\x1d\x37\xd1\x9f\xdf\x5f\xf6\x6f\x7f\xbb\
\x5f\xdf\x0f\xf4\x4b\xd7\x5b\x73\x60\xff\x00\x7a\x3f\xbb\x9f\xec\
\xaf\xee\x0f\xee\xff\x00\xf7\x83\xfb\xbf\xf7\x7f\x63\xf7\xf5\xbf\
\x69\xe6\xf1\x7d\xc4\xda\x7c\x8d\xee\xbd\xd7\xd1\xdf\xdf\xba\xf7\
\x5a\x03\xff\x00\xd0\x73\x3f\xf8\x2b\xcf\xfd\x9d\x8f\xff\x00\x54\
\x8f\x7e\xeb\xdd\x68\x0f\xef\xdd\x7b\xaf\xbf\x87\xbf\x75\xee\xbe\
\x01\xfe\xfd\xd7\xba\xf7\xbf\x75\xee\xb7\xf8\xff\x00\xa0\x19\xbf\
\xf0\x68\x7f\xfb\x24\xff\x00\xfe\xb6\xfe\xfd\xd7\xba\xf7\xfd\x07\
\x33\xff\x00\x82\xbc\xff\x00\xd9\xd8\xff\x00\xf5\x48\xf7\xee\xbd\
\xd6\x80\xfe\xfd\xd7\xba\x1f\xfe\x27\xf4\x67\xfb\x34\x1f\x29\xbe\
\x35\x7c\x69\xfe\xf4\x7f\x71\xff\x00\xd9\x87\xef\xfe\x9b\xe8\xcf\
\xef\xaf\xf0\x4f\xef\x2f\xf7\x3f\xfd\x2d\x76\x2e\xdc\xd8\x3f\xde\
\x8f\xee\xe7\xf1\x7d\xbf\xfd\xe0\xfe\xef\xff\x00\x78\x3e\xef\xec\
\x7e\xfe\x8b\xee\xfc\x3e\x2f\xb8\x87\x57\x91\x7d\xd7\xba\xdd\xe7\
\xfe\x81\x4d\xff\x00\x86\xc0\xff\x00\xb1\x96\xff\x00\xb3\xe5\xfe\
\x9c\x3f\xe1\xbc\x3f\xe7\x39\xbf\xd0\xaf\xfb\x2b\xbf\xe8\xd3\xfd\
\x2f\xff\x00\xb2\x95\xff\x00\x19\xf7\xfd\x17\x7f\xa4\x7f\xf6\x62\
\xbb\x03\xfd\x1f\xff\x00\x7f\xff\x00\xb8\x1f\xc2\x7f\x8d\xff\x00\
\x01\xcd\xff\x00\x0a\xfb\xbf\xba\xfb\x0a\xcf\x17\xdb\xc9\xee\xbd\
\xd7\xbf\xe8\x2b\x2f\xf8\x73\xff\x00\xfb\x16\x97\xfb\x21\xbf\xe8\
\x3f\xfe\x1c\x3f\xfe\x70\x67\xfd\x35\x7f\xb3\x45\xfe\x92\xff\x00\
\xd1\x07\xfb\x36\xbf\xf1\x80\xbf\xd2\x8f\xfa\x38\xff\x00\x65\xd7\
\xaf\xff\x00\xd2\x07\xf7\x03\xfb\xff\x00\xfc\x5b\xf8\x27\xf1\xec\
\x27\xf1\x5f\xb4\xfb\x5f\xbf\xa3\xf2\xfd\xc4\x7e\xeb\xdd\x7b\xfe\
\x81\x4d\xff\x00\x86\xc0\xff\x00\xb1\x96\xff\x00\xb3\xe5\xfe\x9c\
\x3f\xe1\xbc\x3f\xe7\x39\xbf\xd0\xaf\xfb\x2b\xbf\xe8\xd3\xfd\x2f\
\xff\x00\xb2\x95\xff\x00\x19\xf7\xfd\x17\x7f\xa4\x7f\xf6\x62\xbb\
\x03\xfd\x1f\xff\x00\x7f\xff\x00\xb8\x1f\xc2\x7f\x8d\xff\x00\x01\
\xcd\xff\x00\x0a\xfb\xbf\xba\xfb\x0a\xcf\x17\xdb\xc9\xee\xbd\xd0\
\x01\xf2\xc3\xfe\x16\x4d\xfe\xcd\x07\xc5\x9f\x92\xbf\x1a\x7f\xe1\
\xb9\x3f\xb8\xff\x00\xec\xc3\xf4\x07\x72\x74\x67\xf7\xd7\xfd\x9b\
\xdf\xef\x2f\xf7\x3f\xfd\x2d\x75\xd6\xe3\xd8\x3f\xde\x8f\xee\xe7\
\xfb\x2b\xfb\x7f\xfb\xc1\xfd\xdf\xfe\xf0\x7d\xdf\xd8\xfd\xfd\x17\
\xdd\xf8\x7c\x5f\x71\x0e\xaf\x22\xfb\xaf\x75\xa8\x2f\xc4\xfe\x8c\
\xff\x00\x66\x83\xe5\x37\xc6\xaf\x8d\x3f\xde\x8f\xee\x3f\xfb\x30\
\xfd\xff\x00\xd3\x7d\x19\xfd\xf5\xfe\x09\xfd\xe5\xfe\xe7\xff\x00\
\xa5\xae\xc5\xdb\x9b\x07\xfb\xd1\xfd\xdc\xfe\x2f\xb7\xff\x00\xbc\
\x1f\xdd\xff\x00\xef\x07\xdd\xfd\x8f\xdf\xd1\x7d\xdf\x87\xc5\xf7\
\x10\xea\xf2\x2f\xba\xf7\x5b\x7d\x7c\xb0\xff\x00\x84\x6c\xff\x00\
\xb2\xbf\xf1\x67\xe4\xaf\xc9\x6f\xf8\x71\xbf\xef\xc7\xfb\x2f\x1d\
\x01\xdc\x9d\xe7\xfd\xca\xff\x00\x65\x0b\xfb\xb5\xfd\xf0\xff\x00\
\x44\xbd\x75\xb8\xf7\xf7\xf7\x5f\xfb\xc7\xfe\xcd\x06\xe0\xfe\xef\
\xff\x00\x78\x3f\xbb\xff\x00\x69\xf7\xdf\x61\x5b\xf6\x9e\x6f\x2f\
\xdb\xcd\xa7\xc6\xde\xeb\xdd\x6b\x09\xfc\xa7\xff\x00\xed\xe9\x9f\
\xcb\x53\xff\x00\x17\xfb\xe1\xbf\xff\x00\x04\x4f\x5c\xfb\xf7\x5e\
\xeb\xec\xe7\xf2\xc3\xbc\xff\x00\xd9\x5f\xf8\xb3\xf2\x57\xe4\xb7\
\xf7\x5f\xfb\xf1\xfe\xcb\xc7\x40\x77\x27\x79\xff\x00\x72\xbf\x8d\
\xff\x00\x76\xbf\xbe\x1f\xe8\x97\xae\xb7\x1e\xfe\xfe\xeb\xff\x00\
\x78\xff\x00\x84\x6e\x0f\xee\xff\x00\xf7\x83\xfb\xbf\xf6\x9f\x7d\
\xf6\x15\xbf\x69\xe6\xf2\xfd\xbc\xda\x7c\x6d\xee\xbd\xd6\x80\xff\
\x00\x2c\x3f\xe1\x64\xdf\xec\xd0\x7c\x59\xf9\x2b\xf1\xa7\xfe\x1b\
\x93\xfb\x8f\xfe\xcc\x3f\x40\x77\x27\x46\x7f\x7d\x7f\xd9\xbd\xfe\
\xf2\xff\x00\x73\xff\x00\xd2\xd7\x5d\x6e\x3d\x83\xfd\xe8\xfe\xee\
\x7f\xb2\xbf\xb7\xff\x00\xbc\x1f\xdd\xff\x00\xef\x07\xdd\xfd\x8f\
\xdf\xd1\x7d\xdf\x87\xc5\xf7\x10\xea\xf2\x2f\xba\xf7\x5a\x43\x7b\
\xf7\x5e\xeb\xde\xfd\xd7\xba\x3f\xdf\xca\xeb\xe0\xcf\xfc\x39\x3f\
\xce\xbe\x8d\xf8\x55\xfe\x94\x7f\xd0\xbf\xfa\x68\xff\x00\x49\x9f\
\xf1\x92\xff\x00\xb9\x3f\xe9\x17\xfb\xb7\xfe\x8e\xba\x7b\xb0\x7b\
\x63\xfe\x3c\xdf\xef\x76\xc4\xfe\x31\xfc\x63\xfb\x89\xf6\x1f\xf1\
\x75\xa5\xfb\x7f\xba\xf3\xfe\xef\x8b\xc3\x27\xba\xf7\x57\xf9\xfc\
\xd1\x7f\xe1\x29\xbf\xf0\xdb\x1f\x05\x3b\xcb\xe6\xaf\xfb\x3e\x5f\
\xe9\xa3\xfd\x0b\xff\x00\xa3\x3f\xf8\xc6\x9f\xec\xae\xff\x00\xa3\
\xaf\xef\x27\xfa\x45\xee\x1e\xbe\xea\x7f\xf8\xfc\xbf\xd9\x8a\xdf\
\x7f\xc1\xff\x00\x83\xff\x00\x7e\xfe\xff\x00\xfe\x2d\x55\x5f\x71\
\xf6\xbe\x0f\xda\xf2\xf9\xa3\xf7\x5e\xea\x80\xff\x00\x95\xd7\xc1\
\x9f\xf8\x72\x7f\x9d\x7d\x1b\xf0\xab\xfd\x28\xff\x00\xa1\x7f\xf4\
\xd1\xfe\x93\x3f\xe3\x25\xff\x00\x72\x7f\xd2\x2f\xf7\x6f\xfd\x1d\
\x74\xf7\x60\xf6\xc7\xfc\x79\xbf\xde\xed\x89\xfc\x63\xf8\xc7\xf7\
\x13\xec\x3f\xe2\xeb\x4b\xf6\xff\x00\x75\xe7\xfd\xdf\x17\x86\x4f\
\x75\xee\xb6\xfa\xff\x00\xa0\x19\xbf\xf0\x68\x7f\xfb\x24\xff\x00\
\xfe\xb6\xfe\xfd\xd7\xba\x20\x3f\xcd\x17\xfe\x12\x9b\xff\x00\x0d\
\xb1\xf0\x53\xbc\xbe\x6a\xff\x00\xb3\xe5\xfe\x9a\x3f\xd0\xbf\xfa\
\x33\xff\x00\x8c\x69\xfe\xca\xef\xfa\x3a\xfe\xf2\x7f\xa4\x5e\xe1\
\xeb\xee\xa7\xff\x00\x8f\xcb\xfd\x98\xad\xf7\xfc\x1f\xf8\x3f\xf7\
\xef\xef\xff\x00\xe2\xd5\x55\xf7\x1f\x6b\xe0\xfd\xaf\x2f\x9a\x3f\
\x75\xee\xa8\x0f\xf9\x5d\x7c\xe6\xff\x00\x86\xd8\xf9\xd7\xd1\xbf\
\x35\x7f\xd1\x77\xfa\x68\xff\x00\x42\xff\x00\xe9\x33\xfe\x31\xa7\
\xf7\xdb\xfd\x1d\x7f\x79\x3f\xd2\x2f\x4f\x76\x0f\x53\xff\x00\xc7\
\xe5\xfd\xd1\xdf\x7f\xc1\xff\x00\x83\xff\x00\x7e\xfe\xff\x00\xfe\
\x2d\x55\x5f\x71\xf6\xbe\x0f\xda\xf2\xf9\xa3\xf7\x5e\xeb\x6f\xaf\
\xfa\x0e\x67\xff\x00\x05\x79\xff\x00\xb3\xb1\xff\x00\xea\x91\xef\
\xdd\x7b\xaf\x7f\xc3\xe6\x7f\xd0\x49\xdf\xf6\x25\x6f\xf6\x57\x7f\
\xd9\x30\xff\x00\x67\x3f\xfe\xe6\x57\xfd\x36\x7f\xb3\x15\xfe\x8d\
\xbf\xd9\x75\xff\x00\x9c\xb0\xff\x00\x99\x37\xfe\x88\xfa\x27\xfb\
\xe3\xfd\xf1\xff\x00\x41\x3f\xc0\x3f\xe3\xea\xc5\x7f\x0f\xfe\x2b\
\xf7\xdf\xe5\x3f\x6d\xf6\x75\x1e\xeb\xdd\x5b\xef\xf2\x56\xff\x00\
\x84\xe0\x7f\xc3\x3f\x7c\xa6\xdf\xdf\x25\xbf\xd9\xca\xff\x00\x66\
\x1f\xfb\xf1\xd0\x1b\xa7\xa3\x3f\xb9\x5f\xec\xbc\x7f\xa2\x5f\xe1\
\x7f\xde\x5e\xc5\xea\xbd\xfd\xfd\xe8\xfe\xf1\xff\x00\xa7\x3e\xcd\
\xfb\xdf\xb2\xff\x00\x46\x5f\x69\xf6\x3f\x61\x0f\x93\xef\x7c\xbf\
\x70\xbe\x1f\x1c\xbe\xeb\xdd\x6c\xf8\xbf\x51\xfe\xbf\xbf\x75\xee\
\xb3\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbf\xff\xd6\
\xdf\xe3\xdf\xba\xf7\x58\x9f\xea\x3f\xa5\xbd\xfb\xaf\x75\xc3\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd6\xa0\xbf\xcd\x17\xfe\x15\x65\xff\x00\
\x0d\xb1\xf3\xaf\xbc\xbe\x15\x7f\xb2\x1b\xfe\x9a\x3f\xd0\xbf\xfa\
\x33\xff\x00\x8c\x97\xfe\xcd\x17\xfa\x3a\xfe\xf2\x7f\xa4\x5e\x9e\
\xeb\xee\xd8\xff\x00\x8f\x37\xfd\x97\x5d\xf7\xfc\x1f\xf8\x3f\xf7\
\xef\xec\x3f\xe2\xeb\x55\xf7\x1f\x6b\xe7\xfd\xaf\x2f\x86\x3f\x75\
\xee\x88\x0f\xfd\x02\x9b\xff\x00\x0e\x7f\xff\x00\x63\x2d\xff\x00\
\x67\xcb\xfd\x07\xff\x00\xc3\x87\xff\x00\xce\x73\x7f\xa1\x5f\xf6\
\x57\x7f\xd2\x5f\xfa\x20\xff\x00\x66\xd7\xfe\x33\xef\xfa\x2e\xff\
\x00\x48\xff\x00\xec\xc5\x75\xff\x00\xfa\x40\xfe\xe0\x7f\x7f\xff\
\x00\x84\xff\x00\x1b\xfe\x03\x84\xfe\x2b\xf6\x9f\x75\xf6\x14\x7e\
\x5f\xb7\x8f\xdd\x7b\xaf\x7f\xd0\x56\x5f\xf0\xd8\x1f\xf6\x2d\x2f\
\xf6\x43\x7f\xd3\x87\xfc\x37\x87\xfc\xe0\xcf\xfa\x6a\xff\x00\x66\
\x8b\xfd\x1a\x7f\xa5\xff\x00\xf6\x52\xbf\xe3\x01\x7f\xa5\x1f\xf4\
\x71\xfe\xcb\xaf\x60\x7f\xa3\xff\x00\xef\xff\x00\xf7\x03\xf8\xb7\
\xf0\x4f\xe3\xd9\xbf\xe1\x5f\x77\xf6\xbf\x7f\x59\xe2\xfb\x89\x3d\
\xd7\xba\xf7\xfd\x07\x33\xff\x00\x82\xbc\xff\x00\xd9\xd8\xff\x00\
\xf5\x48\xf7\xee\xbd\xd6\x90\xdf\x2c\x3b\xcf\xfd\x9a\x0f\x94\xdf\
\x25\x7e\x4b\x7f\x75\xff\x00\xb8\xff\x00\xec\xc3\xf7\xff\x00\x72\
\x77\x9f\xf7\x2b\xf8\xdf\xf7\x97\xfb\x9f\xfe\x96\xbb\x17\x71\xef\
\xef\xee\xbf\xf7\x8f\xf8\x46\xdf\xfe\xf0\x7f\x77\xff\x00\xbc\x1f\
\x69\xf7\xdf\x61\x45\xf7\x7e\x1f\x2f\xdb\xc3\xab\xc6\xbe\xeb\xdd\
\x7d\x9c\xff\x00\x94\xff\x00\xfd\xba\xcf\xf9\x6a\x7f\xe2\x80\xfc\
\x37\xff\x00\xe0\x76\xeb\x9f\x7e\xeb\xdd\x6b\x09\xf2\xc3\xfe\x11\
\xb3\xfe\xcd\x07\xca\x6f\x92\xbf\x25\xbf\xe1\xc6\xff\x00\xb8\xff\
\x00\xec\xc3\xf7\xff\x00\x72\x77\x9f\xf7\x2b\xfd\x94\x2f\xef\x2f\
\xf7\x3f\xfd\x2d\x76\x2e\xe3\xdf\xdf\xdd\x7f\xef\x1f\xfb\x34\x1b\
\x7f\xfb\xc1\xfd\xdf\xfe\xf0\x7d\xa7\xdf\x7d\x85\x17\xdd\xf8\x7c\
\xbf\x6f\x0e\xaf\x1a\xfb\xaf\x75\xb7\xd7\xc4\xfe\x8c\xff\x00\x65\
\x7f\xe2\xcf\xc6\xaf\x8d\x3f\xde\x8f\xef\xc7\xfb\x2f\x1d\x01\xd3\
\x7d\x19\xfd\xf5\xfe\x09\xfd\xda\xfe\xf8\x7f\xa2\x5e\xba\xdb\x9b\
\x07\xfb\xd1\xfd\xdc\xfe\x2f\xb8\x3f\xbb\xff\x00\xde\x0f\xee\xff\
\x00\xdd\xfd\x8f\xdf\xd6\xfd\xa7\x9b\xc5\xf7\x13\x69\xf2\x37\xba\
\xf7\x5f\x18\xcf\xe6\xc1\xff\x00\x6f\x4c\xfe\x65\x7f\xf8\xbf\xdf\
\x32\x3f\xf8\x22\x7b\x1b\xdf\xba\xf7\x5b\x3d\xfc\x4f\xff\x00\x84\
\x6c\xff\x00\xb3\x41\xf1\x67\xe3\x57\xc9\x6f\xf8\x71\xbf\xee\x3f\
\xfb\x30\xfd\x01\xd3\x7d\xe7\xfd\xca\xff\x00\x65\x0b\xfb\xcb\xfd\
\xcf\xff\x00\x4b\x5d\x75\xb7\x37\xf7\xf7\x5f\xfb\xc7\xfe\xcd\x06\
\xdf\xfe\xf0\x7f\x77\xff\x00\xbc\x1f\x69\xf7\xdf\x61\x45\xf7\x7e\
\x1f\x2f\xdb\xc3\xab\xc6\xbe\xeb\xdd\x6a\x0b\xf2\xc3\xa3\x3f\xd9\
\x5f\xf9\x4d\xf2\x57\xe3\x4f\xf7\xa3\xfb\xf1\xfe\xcb\xc7\x7f\xf7\
\x27\x46\x7f\x7d\x7f\x82\x7f\x76\xbf\xbe\x1f\xe8\x97\xb1\x77\x1e\
\xc1\xfe\xf4\x7f\x77\x3f\x8b\xee\x0f\xee\xff\x00\xf7\x83\xfb\xbf\
\xf7\x7f\x63\xf7\xf5\xbf\x69\xe6\xf1\x7d\xc4\xda\x7c\x8d\xee\xbd\
\xd6\xef\x3f\xf4\x1c\xcf\xfe\x0a\xf3\xff\x00\x67\x63\xff\x00\xd5\
\x23\xdf\xba\xf7\x5e\xff\x00\xa0\x19\xbf\xf0\x68\x7f\xfb\x24\xff\
\x00\xfe\xb6\xfe\xfd\xd7\xba\xf7\xfd\x00\xcd\xff\x00\x83\x43\xff\
\x00\xd9\x27\xff\x00\xf5\xb7\xf7\xee\xbd\xd6\xff\x00\x1e\xfd\xd7\
\xba\xd0\x1f\xfe\x80\x66\xff\x00\xc1\xa1\xff\x00\xec\x93\xff\x00\
\xfa\xdb\xfb\xf7\x5e\xeb\xdf\xf4\x03\x37\xfe\x0d\x0f\xff\x00\x64\
\x9f\xff\x00\xd6\xdf\xdf\xba\xf7\x5b\xfc\x7b\xf7\x5e\xeb\x40\x7f\
\xfa\x01\x9b\xff\x00\x06\x87\xff\x00\xb2\x4f\xff\x00\xeb\x6f\xef\
\xdd\x7b\xaf\x7f\xd0\x0c\xdf\xf8\x34\x3f\xfd\x92\x7f\xff\x00\x5b\
\x7f\x7e\xeb\xdd\x0f\xff\x00\x13\xff\x00\xe1\x1b\x3f\xec\xaf\xfc\
\xa6\xf8\xd5\xf2\x5b\xfe\x1c\x6f\xfb\xf1\xfe\xcb\xc7\x7f\xf4\xdf\
\x79\xff\x00\x72\xbf\xd9\x42\xfe\xed\x7f\x7c\x3f\xd1\x2f\x62\xed\
\xcd\xfd\xfd\xd7\xfe\xf1\xff\x00\xb3\x41\xb8\x3f\xbb\xff\x00\xde\
\x0f\xee\xff\x00\xda\x7d\xf7\xd8\x56\xfd\xa7\x9b\xcb\xf6\xf3\x69\
\xf1\xb7\xba\xf7\x5b\x3d\xff\x00\x36\x0f\xfb\x75\x9f\xf3\x2b\xff\
\x00\xc5\x01\xf9\x91\xff\x00\xc0\xed\xd8\xde\xfd\xd7\xba\xf9\x05\
\xff\x00\x29\xff\x00\xfb\x7a\x67\xf2\xd4\xff\x00\xc5\xfe\xf8\x6f\
\xff\x00\xc1\x13\xd7\x3e\xfd\xd7\xba\xfb\x39\xfc\xb0\xe8\xcf\xf6\
\x68\x3e\x2c\xfc\x95\xf8\xd3\xfd\xe8\xfe\xe3\xff\x00\xb3\x0f\xd0\
\x1d\xc9\xd1\x9f\xdf\x5f\xe0\x9f\xde\x5f\xee\x7f\xfa\x5a\xeb\xad\
\xc7\xb0\x7f\xbd\x1f\xdd\xcf\xe2\xfb\x7f\xfb\xc1\xfd\xdf\xfe\xf0\
\x7d\xdf\xd8\xfd\xfd\x17\xdd\xf8\x7c\x5f\x71\x0e\xaf\x22\xfb\xaf\
\x75\xa0\x3f\xcb\x0f\xf8\x46\xcf\xfb\x2b\xff\x00\x16\x7e\x4a\xfc\
\x96\xff\x00\x87\x1b\xfe\xfc\x7f\xb2\xf1\xd0\x1d\xc9\xde\x7f\xdc\
\xaf\xf6\x50\xbf\xbb\x5f\xdf\x0f\xf4\x4b\xd7\x5b\x8f\x7f\x7f\x75\
\xff\x00\xbc\x7f\xec\xd0\x6e\x0f\xee\xff\x00\xf7\x83\xfb\xbf\xf6\
\x9f\x7d\xf6\x15\xbf\x69\xe6\xf2\xfd\xbc\xda\x7c\x6d\xee\xbd\xd6\
\xa0\xbf\x13\xfb\xcf\xfd\x95\xff\x00\x94\xdf\x1a\xbe\x4b\x7f\x75\
\xff\x00\xbf\x1f\xec\xbc\x77\xff\x00\x4d\xf7\x9f\xf7\x2b\xf8\xdf\
\xf7\x6b\xfb\xe1\xfe\x89\x7b\x17\x6e\x6f\xef\xee\xbf\xf7\x8f\xf8\
\x46\xe0\xfe\xef\xff\x00\x78\x3f\xbb\xff\x00\x69\xf7\xdf\x61\x5b\
\xf6\x9e\x6f\x2f\xdb\xcd\xa7\xc6\xde\xeb\xdd\x6d\xf5\xf2\xc3\xfe\
\x16\x4d\xfe\xcd\x07\xc5\x9f\x92\xbf\x1a\x7f\xe1\xb9\x3f\xb8\xff\
\x00\xec\xc3\xf4\x07\x72\x74\x67\xf7\xd7\xfd\x9b\xdf\xef\x2f\xf7\
\x3f\xfd\x2d\x75\xd6\xe3\xd8\x3f\xde\x8f\xee\xe7\xfb\x2b\xfb\x7f\
\xfb\xc1\xfd\xdf\xfe\xf0\x7d\xdf\xd8\xfd\xfd\x17\xdd\xf8\x7c\x5f\
\x71\x0e\xaf\x22\xfb\xaf\x75\xa8\x2f\xc4\xfe\xf3\xff\x00\x65\x7f\
\xe5\x37\xc6\xaf\x92\xdf\xdd\x7f\xef\xc7\xfb\x2f\x1d\xff\x00\xd3\
\x7d\xe7\xfd\xca\xfe\x37\xfd\xda\xfe\xf8\x7f\xa2\x5e\xc5\xdb\x9b\
\xfb\xfb\xaf\xfd\xe3\xfe\x11\xb8\x3f\xbb\xff\x00\xde\x0f\xee\xff\
\x00\xda\x7d\xf7\xd8\x56\xfd\xa7\x9b\xcb\xf6\xf3\x69\xf1\xb7\xba\
\xf7\x5b\xbc\xff\x00\xd0\x56\x5f\xf0\xe7\xff\x00\xf6\x2d\x2f\xf6\
\x43\x7f\xd0\x7f\xfc\x38\x7f\xfc\xe0\xcf\xfa\x6a\xff\x00\x66\x8b\
\xfd\x25\xff\x00\xa2\x0f\xf6\x6d\x7f\xe3\x01\x7f\xa5\x1f\xf4\x71\
\xfe\xcb\xaf\x5f\xff\x00\xa4\x0f\xee\x07\xf7\xff\x00\xf8\xb7\xf0\
\x4f\xe3\xd8\x4f\xe2\xbf\x69\xf6\xbf\x7f\x47\xe5\xfb\x88\xfd\xd7\
\xba\xf7\xfd\x00\xcd\xff\x00\x83\x43\xff\x00\xd9\x27\xff\x00\xf5\
\xb7\xf7\xee\xbd\xd7\xbf\xe8\x06\x6f\xfc\x1a\x1f\xfe\xc9\x3f\xff\
\x00\xad\xbf\xbf\x75\xee\xbd\xff\x00\x40\x33\x7f\xe0\xd0\xff\x00\
\xf6\x49\xff\x00\xfd\x6d\xfd\xfb\xaf\x75\xef\xf8\x63\x3f\xfa\x06\
\xc7\xfe\xc7\x53\xfe\xcd\x17\xfb\x39\xff\x00\xec\x98\x7f\xdc\xb5\
\x7f\xa1\x3f\xf6\x5d\x7f\xd2\x4f\xfb\x31\x5f\xf3\x89\xff\x00\xf3\
\x39\x3f\xd2\xe7\x7b\x7f\x73\xbf\xb9\xdf\xe9\xdb\xf8\xff\x00\xfc\
\x7a\xb9\x5f\xe2\x1f\xc2\xbe\xc7\xfc\x9b\xee\x7e\xf2\x9f\xdd\x7b\
\xaf\x7f\xc3\xe6\x7f\xd0\x49\xdf\xf6\x25\x6f\xf6\x57\x7f\xd9\x30\
\xff\x00\x67\x3f\xfe\xe6\x57\xfd\x36\x7f\xb3\x15\xfe\x8d\xbf\xd9\
\x75\xff\x00\x9c\xb0\xff\x00\x99\x37\xfe\x88\xfa\x27\xfb\xe3\xfd\
\xf1\xff\x00\x41\x3f\xc0\x3f\xe3\xea\xc5\x7f\x0f\xfe\x2b\xf7\xdf\
\xe5\x3f\x6d\xf6\x75\x1e\xeb\xdd\x7b\xfe\x18\xcf\xfe\x81\xb1\xff\
\x00\xb1\xd4\xff\x00\xb3\x45\xfe\xce\x7f\xfb\x26\x1f\xf7\x2d\x5f\
\xe8\x4f\xfd\x97\x5f\xf4\x93\xfe\xcc\x57\xfc\xe2\x7f\xfc\xce\x4f\
\xf4\xb9\xde\xdf\xdc\xef\xee\x77\xfa\x76\xfe\x3f\xff\x00\x1e\xae\
\x57\xf8\x87\xf0\xaf\xb1\xff\x00\x26\xfb\x9f\xbc\xa7\xf7\x5e\xeb\
\xdf\xf4\x1c\xcf\xfe\x0a\xf3\xff\x00\x67\x63\xff\x00\xd5\x23\xdf\
\xba\xf7\x5e\xff\x00\x87\xcc\xff\x00\xa0\x93\xbf\xec\x4a\xdf\xec\
\xae\xff\x00\xb2\x61\xfe\xce\x7f\xfd\xcc\xaf\xfa\x6c\xff\x00\x66\
\x2b\xfd\x1b\x7f\xb2\xeb\xff\x00\x39\x61\xff\x00\x32\x6f\xfd\x11\
\xf4\x4f\xf7\xc7\xfb\xe3\xfe\x82\x7f\x80\x7f\xc7\xd5\x8a\xfe\x1f\
\xfc\x57\xef\xbf\xca\x7e\xdb\xec\xea\x3d\xd7\xba\x20\x3f\xcd\x17\
\xfe\x12\x9b\xff\x00\x0d\xb1\xf0\x53\xbc\xbe\x6a\xff\x00\xb3\xe5\
\xfe\x9a\x3f\xd0\xbf\xfa\x33\xff\x00\x8c\x69\xfe\xca\xef\xfa\x3a\
\xfe\xf2\x7f\xa4\x5e\xe1\xeb\xee\xa7\xff\x00\x8f\xcb\xfd\x98\xad\
\xf7\xfc\x1f\xf8\x3f\xf7\xef\xef\xff\x00\xe2\xd5\x55\xf7\x1f\x6b\
\xe0\xfd\xaf\x2f\x9a\x3f\x75\xee\xa8\x0f\xf9\x5d\x7c\x19\xff\x00\
\x87\x27\xf9\xd7\xd1\xbf\x0a\xbf\xd2\x8f\xfa\x17\xff\x00\x4d\x1f\
\xe9\x33\xfe\x32\x5f\xf7\x27\xfd\x22\xff\x00\x76\xff\x00\xd1\xd7\
\x4f\x76\x0f\x6c\x7f\xc7\x9b\xfd\xee\xd8\x9f\xc6\x3f\x8c\x7f\x71\
\x3e\xc3\xfe\x2e\xb4\xbf\x6f\xf7\x5e\x7f\xdd\xf1\x78\x64\xf7\x5e\
\xeb\x6f\xaf\xf8\x63\x3f\xfa\x06\xc7\xfe\xc7\x53\xfe\xcd\x17\xfb\
\x39\xff\x00\xec\x98\x7f\xdc\xb5\x7f\xa1\x3f\xf6\x5d\x7f\xd2\x4f\
\xfb\x31\x5f\xf3\x89\xff\x00\xf3\x39\x3f\xd2\xe7\x7b\x7f\x73\xbf\
\xb9\xdf\xe9\xdb\xf8\xff\x00\xfc\x7a\xb9\x5f\xe2\x1f\xc2\xbe\xc7\
\xfc\x9b\xee\x7e\xf2\x9f\xdd\x7b\xab\x7d\xfe\x4a\xdf\xf0\xa3\xff\
\x00\xf8\x78\x1f\x94\xdb\xfb\xe3\x4f\xfb\x26\xbf\xec\xbc\x7f\x71\
\xfa\x03\x74\xf7\x9f\xf7\xd7\xfd\x98\x7f\xf4\xb5\xfc\x53\xfb\xb5\
\xd8\xbd\x57\xb0\x7f\xba\xff\x00\xdd\xcf\xf4\x19\xd6\x5f\x65\xf7\
\xbf\xe9\x37\xee\xfe\xfb\xef\xe6\xf1\xfd\x97\x8b\xed\xdb\xcd\xe4\
\x8b\xdd\x7b\xad\x9f\x17\xea\x3f\xd7\x1e\xfd\xd7\xba\xcf\xef\xdd\
\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xff\xd7\xdf\xe3\xdf\xba\
\xf7\x58\xe4\xfc\x1f\xf7\xdf\xef\xb8\xf7\xee\xbd\xd6\x3f\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5f\x20\xbf\xf8\x54\x5f\xfd\xbf\x57\xe7\x2f\
\xfe\x5b\x37\xff\x00\x01\xef\xc7\xdf\x7e\xeb\xdd\x7d\x3d\xbf\x94\
\xff\x00\xfd\xba\xcf\xf9\x6a\x7f\xe2\x80\xfc\x37\xff\x00\xe0\x76\
\xeb\x9f\x7e\xeb\xdd\x7c\x82\xff\x00\x9b\x07\xfd\xbd\x33\xf9\x95\
\xff\x00\xe2\xff\x00\x7c\xc8\xff\x00\xe0\x89\xec\x6f\x7e\xeb\xdd\
\x10\x1f\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5b\xbc\xfc\x4f\xff\x00\x85\
\x93\x7f\xb2\xbf\xf1\x67\xe3\x57\xc6\x9f\xf8\x6e\x4f\xef\xc7\xfb\
\x2f\x1d\x01\xd3\x7d\x19\xfd\xf5\xff\x00\x66\xf7\xfb\xb5\xfd\xf0\
\xff\x00\x44\xbd\x75\xb7\x36\x0f\xf7\xa3\xfb\xb9\xfe\xca\xfe\xe0\
\xfe\xef\xff\x00\x78\x3f\xbb\xff\x00\x77\xf6\x3f\x7f\x5b\xf6\x9e\
\x6f\x17\xdc\x4d\xa7\xc8\xde\xeb\xdd\x0f\xff\x00\xf4\x1c\xcf\xfe\
\x0a\xf3\xff\x00\x67\x63\xff\x00\xd5\x23\xdf\xba\xf7\x5e\xff\x00\
\xa0\xe6\x7f\xf0\x57\x9f\xfb\x3b\x1f\xfe\xa9\x1e\xfd\xd7\xba\xd2\
\x1b\xe5\x87\x79\xff\x00\xb3\x41\xf2\x9b\xe4\xaf\xc9\x6f\xee\xbf\
\xf7\x1f\xfd\x98\x7e\xff\x00\xee\x4e\xf3\xfe\xe5\x7f\x1b\xfe\xf2\
\xff\x00\x73\xff\x00\xd2\xd7\x62\xee\x3d\xfd\xfd\xd7\xfe\xf1\xff\
\x00\x08\xdb\xff\x00\xde\x0f\xee\xff\x00\xf7\x83\xed\x3e\xfb\xec\
\x28\xbe\xef\xc3\xe5\xfb\x78\x75\x78\xd7\xdd\x7b\xaf\xb3\x9f\xf2\
\x9f\xff\x00\xb7\x59\xff\x00\x2d\x4f\xfc\x50\x1f\x86\xff\x00\xfc\
\x0e\xdd\x73\xef\xdd\x7b\xad\x61\x3e\x58\x7f\xc2\x36\x7f\xd9\xa0\
\xf9\x4d\xf2\x57\xe4\xb7\xfc\x38\xdf\xf7\x1f\xfd\x98\x7e\xff\x00\
\xee\x4e\xf3\xfe\xe5\x7f\xb2\x85\xfd\xe5\xfe\xe7\xff\x00\xa5\xae\
\xc5\xdc\x7b\xfb\xfb\xaf\xfd\xe3\xff\x00\x66\x83\x6f\xff\x00\x78\
\x3f\xbb\xff\x00\xde\x0f\xb4\xfb\xef\xb0\xa2\xfb\xbf\x0f\x97\xed\
\xe1\xd5\xe3\x5f\x75\xee\x80\x0f\xfa\x01\x9b\xff\x00\x06\x87\xff\
\x00\xb2\x4f\xff\x00\xeb\x6f\xef\xdd\x7b\xaf\x7f\xd0\x73\x3f\xf8\
\x2b\xcf\xfd\x9d\x8f\xff\x00\x54\x8f\x7e\xeb\xdd\x7b\xfe\x83\x99\
\xff\x00\xc1\x5e\x7f\xec\xec\x7f\xfa\xa4\x7b\xf7\x5e\xeb\x7f\x8f\
\x7e\xeb\xdd\x68\x0f\xff\x00\x41\xcc\xff\x00\xe0\xaf\x3f\xf6\x76\
\x3f\xfd\x52\x3d\xfb\xaf\x75\xef\xfa\x0e\x67\xff\x00\x05\x79\xff\
\x00\xb3\xb1\xff\x00\xea\x91\xef\xdd\x7b\xad\xfe\x3d\xfb\xaf\x75\
\xa0\x3f\xfd\x07\x33\xff\x00\x82\xbc\xff\x00\xd9\xd8\xff\x00\xf5\
\x48\xf7\xee\xbd\xd7\xbf\xe8\x39\x9f\xfc\x15\xe7\xfe\xce\xc7\xff\
\x00\xaa\x47\xbf\x75\xee\xbd\xff\x00\x41\xcc\xff\x00\xe0\xaf\x3f\
\xf6\x76\x3f\xfd\x52\x3d\xfb\xaf\x74\x00\x7c\xb0\xff\x00\x85\x93\
\x7f\xb3\x41\xf1\x67\xe4\xaf\xc6\x9f\xf8\x6e\x4f\xee\x3f\xfb\x30\
\xfd\x01\xdc\x9d\x19\xfd\xf5\xff\x00\x66\xf7\xfb\xcb\xfd\xcf\xff\
\x00\x4b\x5d\x75\xb8\xf6\x0f\xf7\xa3\xfb\xb9\xfe\xca\xfe\xdf\xfe\
\xf0\x7f\x77\xff\x00\xbc\x1f\x77\xf6\x3f\x7f\x45\xf7\x7e\x1f\x17\
\xdc\x43\xab\xc8\xbe\xeb\xdd\x6b\x09\xfc\xa7\xff\x00\xed\xe9\x9f\
\xcb\x53\xff\x00\x17\xfb\xe1\xbf\xff\x00\x04\x4f\x5c\xfb\xf7\x5e\
\xeb\xec\xe7\xf2\xc3\xbc\xff\x00\xd9\x5f\xf8\xb3\xf2\x57\xe4\xb7\
\xf7\x5f\xfb\xf1\xfe\xcb\xc7\x40\x77\x27\x79\xff\x00\x72\xbf\x8d\
\xff\x00\x76\xbf\xbe\x1f\xe8\x97\xae\xb7\x1e\xfe\xfe\xeb\xff\x00\
\x78\xff\x00\x84\x6e\x0f\xee\xff\x00\xf7\x83\xfb\xbf\xf6\x9f\x7d\
\xf6\x15\xbf\x69\xe6\xf2\xfd\xbc\xda\x7c\x6d\xee\xbd\xd6\x90\xdf\
\xf4\x15\x97\xfc\x39\xff\x00\xfd\x8b\x4b\xfd\x90\xdf\xf4\x1f\xff\
\x00\x0e\x1f\xff\x00\x38\x33\xfe\x9a\xbf\xd9\xa2\xff\x00\x49\x7f\
\xe8\x83\xfd\x9b\x5f\xf8\xc0\x5f\xe9\x47\xfd\x1c\x7f\xb2\xeb\xd7\
\xff\x00\xe9\x03\xfb\x81\xfd\xff\x00\xfe\x2d\xfc\x13\xf8\xf6\x13\
\xf8\xaf\xda\x7d\xaf\xdf\xd1\xf9\x7e\xe2\x3f\x75\xee\xbd\xff\x00\
\x40\x33\x7f\xe0\xd0\xff\x00\xf6\x49\xff\x00\xfd\x6d\xfd\xfb\xaf\
\x75\xef\xfa\x01\x9b\xff\x00\x06\x87\xff\x00\xb2\x4f\xff\x00\xeb\
\x6f\xef\xdd\x7b\xaf\x7f\xd0\x0c\xdf\xf8\x34\x3f\xfd\x92\x7f\xff\
\x00\x5b\x7f\x7e\xeb\xdd\x7b\xfe\x81\x4d\xff\x00\x86\xc0\xff\x00\
\xb1\x96\xff\x00\xb3\xe5\xfe\x9c\x3f\xe1\xbc\x3f\xe7\x39\xbf\xd0\
\xaf\xfb\x2b\xbf\xe8\xd3\xfd\x2f\xff\x00\xb2\x95\xff\x00\x19\xf7\
\xfd\x17\x7f\xa4\x7f\xf6\x62\xbb\x03\xfd\x1f\xff\x00\x7f\xff\x00\
\xb8\x1f\xc2\x7f\x8d\xff\x00\x01\xcd\xff\x00\x0a\xfb\xbf\xba\xfb\
\x0a\xcf\x17\xdb\xc9\xee\xbd\xd7\xbf\xe8\x39\x9f\xfc\x15\xe7\xfe\
\xce\xc7\xff\x00\xaa\x47\xbf\x75\xee\x8f\xf7\xf2\xba\xff\x00\x85\
\x59\x7f\xc3\x93\xfc\xeb\xe8\xdf\x85\x5f\xec\x86\xff\x00\xa1\x7f\
\xf4\xd1\xfe\x93\x3f\xe3\x25\xff\x00\xb3\x45\xfe\x91\x7f\xbb\x7f\
\xe8\xeb\xa7\xbb\x07\xb6\x3f\xe3\xcd\xff\x00\x65\xd7\x62\x7f\x18\
\xfe\x31\xfd\xc4\xfb\x0f\xf8\xba\xd2\xfd\xbf\xdd\x79\xff\x00\x77\
\xc5\xe1\x93\xdd\x7b\xab\xfc\xfe\x68\xbf\x39\xbf\xe1\xb6\x3e\x0a\
\x77\x97\xcd\x5f\xf4\x5d\xfe\x9a\x3f\xd0\xbf\xfa\x33\xff\x00\x8c\
\x69\xfd\xf6\xff\x00\x47\x5f\xde\x4f\xf4\x8b\xdc\x3d\x7d\xd4\xff\
\x00\xf1\xf9\x7f\x74\x77\xdf\xf0\x7f\xe0\xff\x00\xdf\xbf\xbf\xff\
\x00\x8b\x55\x57\xdc\x7d\xaf\x83\xf6\xbc\xbe\x68\xfd\xd7\xba\xd0\
\x1f\xf9\xa2\xff\x00\xc2\xac\xbf\xe1\xc9\xfe\x0a\x77\x97\xc2\xaf\
\xf6\x43\x7f\xd0\xbf\xfa\x68\xff\x00\x46\x7f\xf1\x92\xff\x00\xd9\
\xa2\xff\x00\x48\xbf\xdd\xbf\xf4\x75\xdc\x3d\x7d\xdb\x1f\xf1\xe6\
\xff\x00\xb2\xeb\xb1\x3f\x8c\x7f\x18\xfe\xe2\x7d\x87\xfc\x5d\x69\
\x7e\xdf\xee\xbc\xff\x00\xbb\xe2\xf0\xc9\xee\xbd\xd5\x01\xff\x00\
\x2b\xaf\x9c\xdf\xf0\xdb\x1f\x3a\xfa\x37\xe6\xaf\xfa\x2e\xff\x00\
\x4d\x1f\xe8\x5f\xfd\x26\x7f\xc6\x34\xfe\xfb\x7f\xa3\xaf\xef\x27\
\xfa\x45\xe9\xee\xc1\xea\x7f\xf8\xfc\xbf\xba\x3b\xef\xf8\x3f\xf0\
\x7f\xef\xdf\xdf\xff\x00\xc5\xaa\xab\xee\x3e\xd7\xc1\xfb\x5e\x5f\
\x34\x7e\xeb\xdd\x6d\xf5\xff\x00\x0f\x99\xff\x00\x41\x27\x7f\xd8\
\x95\xbf\xd9\x5d\xff\x00\x64\xc3\xfd\x9c\xff\x00\xfb\x99\x5f\xf4\
\xd9\xfe\xcc\x57\xfa\x36\xff\x00\x65\xd7\xfe\x72\xc3\xfe\x64\xdf\
\xfa\x23\xe8\x9f\xef\x8f\xf7\xc7\xfd\x04\xff\x00\x00\xff\x00\x8f\
\xab\x15\xfc\x3f\xf8\xaf\xdf\x7f\x94\xfd\xb7\xd9\xd4\x7b\xaf\x75\
\xef\xfa\x01\x9b\xff\x00\x06\x87\xff\x00\xb2\x4f\xff\x00\xeb\x6f\
\xef\xdd\x7b\xaf\x7f\xc3\x19\xff\x00\xd0\x36\x3f\xf6\x3a\x9f\xf6\
\x68\xbf\xd9\xcf\xff\x00\x64\xc3\xfe\xe5\xab\xfd\x09\xff\x00\xb2\
\xeb\xfe\x92\x7f\xd9\x8a\xff\x00\x9c\x4f\xff\x00\x99\xc9\xfe\x97\
\x3b\xdb\xfb\x9d\xfd\xce\xff\x00\x4e\xdf\xc7\xff\x00\xe3\xd5\xca\
\xff\x00\x10\xfe\x15\xf6\x3f\xe4\xdf\x73\xf7\x94\xfe\xeb\xdd\x7b\
\xfe\x1f\x33\xfe\x82\x4e\xff\x00\xb1\x2b\x7f\xb2\xbb\xfe\xc9\x87\
\xfb\x39\xff\x00\xf7\x32\xbf\xe9\xb3\xfd\x98\xaf\xf4\x6d\xfe\xcb\
\xaf\xfc\xe5\x87\xfc\xc9\xbf\xf4\x47\xd1\x3f\xdf\x1f\xef\x8f\xfa\
\x09\xfe\x01\xff\x00\x1f\x56\x2b\xf8\x7f\xf1\x5f\xbe\xff\x00\x29\
\xfb\x6f\xb3\xa8\xf7\x5e\xeb\xdf\xf0\xc6\x7f\xf4\x0d\x8f\xfd\x8e\
\xa7\xfd\x9a\x2f\xf6\x73\xff\x00\xd9\x30\xff\x00\xb9\x6a\xff\x00\
\x42\x7f\xec\xba\xff\x00\xa4\x9f\xf6\x62\xbf\xe7\x13\xff\x00\xe6\
\x72\x7f\xa5\xce\xf6\xfe\xe7\x7f\x73\xbf\xd3\xb7\xf1\xff\x00\xf8\
\xf5\x72\xbf\xc4\x3f\x85\x7d\x8f\xf9\x37\xdc\xfd\xe5\x3f\xba\xf7\
\x5e\xff\x00\x87\xcc\xff\x00\xa0\x93\xbf\xec\x4a\xdf\xec\xae\xff\
\x00\xb2\x61\xfe\xce\x7f\xfd\xcc\xaf\xfa\x6c\xff\x00\x66\x2b\xfd\
\x1b\x7f\xb2\xeb\xff\x00\x39\x61\xff\x00\x32\x6f\xfd\x11\xf4\x4f\
\xf7\xc7\xfb\xe3\xfe\x82\x7f\x80\x7f\xc7\xd5\x8a\xfe\x1f\xfc\x57\
\xef\xbf\xca\x7e\xdb\xec\xea\x3d\xd7\xba\xb7\xdf\xe4\xad\xff\x00\
\x09\xc0\xff\x00\x86\x7e\xf9\x4d\xbf\xbe\x4b\x7f\xb3\x95\xfe\xcc\
\x3f\xf7\xe3\xa0\x37\x4f\x46\x7f\x72\xbf\xd9\x78\xff\x00\x44\xbf\
\xc2\xff\x00\xbc\xbd\x8b\xd5\x7b\xfb\xfb\xd1\xfd\xe3\xff\x00\x4e\
\x7d\x9b\xf7\xbf\x65\xfe\x8c\xbe\xd3\xec\x7e\xc2\x1f\x27\xde\xf9\
\x7e\xe1\x7c\x3e\x39\x7d\xd7\xba\xd9\xf5\x7f\x50\xff\x00\x7d\xf8\
\xf7\xee\xbd\xd6\x6f\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\
\xd7\xff\xd0\xdf\xe3\xdf\xba\xf7\x58\xe4\xfc\x7f\xb1\xf7\xee\xbd\
\xd6\x3f\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\x20\xbf\xf8\x54\x5f\xfd\
\xbf\x57\xe7\x2f\xfe\x5b\x37\xff\x00\x01\xef\xc7\xdf\x7e\xeb\xdd\
\x7d\x3d\xbf\x94\xff\x00\xfd\xba\xcf\xf9\x6a\x7f\xe2\x80\xfc\x37\
\xff\x00\xe0\x76\xeb\x9f\x7e\xeb\xdd\x53\x17\xc8\x4f\xf8\x48\xbf\
\xf2\xdd\xf9\x27\xdf\x9d\xe1\xf2\x2f\x7d\x77\x67\xcd\xec\x56\xf6\
\xef\xde\xdf\xec\xbe\xea\xde\x38\xbd\xa7\xd9\x1d\x0f\x43\xb5\xb1\
\xbb\xa7\xb5\x37\xa6\x6b\x7d\x6e\x1a\x0d\xb5\x45\x98\xf8\xd7\x9d\
\xcb\x51\xed\xfa\x3c\xb6\x76\x68\xe8\xe2\xaa\xae\xac\xa9\x8e\x99\
\x51\x65\x9e\x67\x0d\x23\x7b\xaf\x75\xf3\x49\xf9\xb9\xd2\xbb\x5b\
\xe3\x67\xcc\xff\x00\x97\x7f\x1d\x36\x2d\x7e\xe0\xca\xec\x9e\x82\
\xf9\x3f\xdf\xbd\x2b\xb3\xb2\x9b\xb2\xab\x1d\x5d\xba\x72\x5b\x5b\
\xaa\xfb\x5b\x76\x6c\x5d\xbd\x5f\xb9\x6b\x70\xf8\xac\x16\x26\xb3\
\x70\x56\x62\x70\x50\xc9\x59\x2d\x2d\x0d\x1d\x34\x95\x2c\xed\x14\
\x10\xa1\x58\xd7\xdd\x7b\xa2\xc1\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\
\xe8\xaf\xf0\x8f\xfe\x12\x2f\xfc\xb7\x7e\x49\xfc\x30\xf8\x89\xf2\
\x2f\x7d\x77\x67\xcd\xec\x56\xf6\xef\xdf\x8c\x1d\x05\xdd\x5b\xc7\
\x17\xb4\xfb\x23\xa1\xe8\x76\xb6\x37\x74\xf6\xa7\x54\xed\x3d\xf5\
\xb8\x68\x36\xd5\x16\x63\xe3\x5e\x77\x2d\x47\xb7\xe8\xf2\xd9\xd9\
\xa3\xa3\x8a\xaa\xba\xb2\xa6\x3a\x65\x45\x96\x79\x9c\x34\x8d\xee\
\xbd\xd6\x88\xff\x00\x37\x3a\x57\x6b\x7c\x6c\xf9\x9f\xf2\xef\xe3\
\xa6\xc5\xaf\xdc\x19\x5d\x93\xd0\x5f\x27\xfb\xf7\xa5\x76\x76\x53\
\x76\x55\x63\xab\xb7\x4e\x4b\x6b\x75\x5f\x6b\x6e\xcd\x8b\xb7\xab\
\xf7\x2d\x6e\x1f\x15\x82\xc4\xd6\x6e\x0a\xcc\x4e\x0a\x19\x2b\x25\
\xa5\xa1\xa3\xa6\x92\xa5\x9d\xa2\x82\x14\x2b\x1a\xfb\xaf\x74\x58\
\x3d\xfb\xaf\x75\xf6\xf2\xfe\x53\xff\x00\xf6\xeb\x3f\xe5\xa9\xff\
\x00\x8a\x03\xf0\xdf\xff\x00\x81\xdb\xae\x7d\xfb\xaf\x75\xa5\x37\
\xcd\xcf\xf8\x57\x47\xf3\x22\xf8\xd9\xf3\x3f\xe5\xdf\xc7\x4d\x8b\
\xd2\x7f\x08\x72\xbb\x27\xa0\xbe\x4f\xf7\xef\x4a\xec\xec\xa6\xec\
\xeb\x7e\xf8\xae\xdd\x39\x2d\xad\xd5\x7d\xad\xbb\x36\x2e\xde\xaf\
\xdc\xb5\xb8\x7f\x92\x98\x2c\x4d\x66\xe0\xac\xc4\xe0\xa1\x92\xb2\
\x5a\x5a\x1a\x3a\x69\x2a\x59\xda\x28\x21\x42\xb1\xaf\xba\xf7\x45\
\x83\xfe\x83\x53\xfe\x69\x9f\xf3\xe0\xfe\x00\xff\x00\xe8\xac\xf9\
\x13\xff\x00\xdd\x53\xef\xdd\x7b\xad\x41\x7d\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x6d\xf5\xff\x00\x41\xa9\xff\x00\x34\xcf\xf9\xf0\x7f\x00\
\x7f\xf4\x56\x7c\x89\xff\x00\xee\xa9\xf7\xee\xbd\xd5\xfe\x7f\xd0\
\x15\x9f\xca\xcf\xfe\x7f\xe7\xcf\xef\xfd\x1a\x7f\x1d\xbf\xfb\x95\
\xbd\xfb\xaf\x75\xef\xfa\x02\xb3\xf9\x59\xff\x00\xcf\xfc\xf9\xfd\
\xff\x00\xa3\x4f\xe3\xb7\xff\x00\x72\xb7\xbf\x75\xee\xa8\x0f\xfe\
\x83\x53\xfe\x69\x9f\xf3\xe0\xfe\x00\xff\x00\xe8\xac\xf9\x13\xff\
\x00\xdd\x53\xef\xdd\x7b\xab\xfc\xff\x00\xa0\x2b\x3f\x95\x9f\xfc\
\xff\x00\xcf\x9f\xdf\xfa\x34\xfe\x3b\x7f\xf7\x2b\x7b\xf7\x5e\xeb\
\xe6\x13\xef\xdd\x7b\xa3\x3f\xf0\x8f\xa5\x76\xb7\xc9\x3f\x99\xff\
\x00\x11\x3e\x3a\x6f\xaa\xfd\xc1\x8a\xd9\x3d\xfb\xf2\x7f\xa0\xba\
\x57\x78\xe5\x36\x9d\x56\x3a\x87\x74\xe3\x76\xb7\x6a\x76\xb6\xd3\
\xd8\xbb\x86\xbf\x6d\x56\xe6\x31\x59\xdc\x4d\x1e\xe0\xa3\xc4\xe7\
\x66\x92\x8e\x5a\xaa\x1a\xca\x68\xea\x55\x1a\x58\x26\x40\xd1\xb7\
\xba\xf7\x5f\x45\x7f\xfa\x02\xb3\xf9\x59\xff\x00\xcf\xfc\xf9\xfd\
\xff\x00\xa3\x4f\xe3\xb7\xff\x00\x72\xb7\xbf\x75\xee\x85\xff\x00\
\x8f\x7f\xf0\x91\x7f\xe5\xbb\xf1\xb3\xbf\x3a\x3f\xe4\x5e\xc5\xee\
\xcf\x9b\xd9\x5d\xed\xd0\x5d\xbf\xd6\x9d\xd5\xb3\xb1\x7b\xb3\xb2\
\x3a\x1e\xbb\x6b\x64\xb7\x4f\x55\xef\x4c\x2e\xfa\xdb\xd4\x1b\x96\
\x8b\x0f\xf1\xaf\x05\x96\xac\xdb\xf5\x99\x6c\x14\x31\xd6\x45\x4b\
\x5d\x47\x53\x25\x33\x3a\xc5\x3c\x2e\x56\x45\xf7\x5e\xeb\x63\xcf\
\x90\x9d\x2b\xb5\xbe\x49\xf4\x1f\x78\x7c\x74\xdf\x55\xfb\x83\x15\
\xb2\x7b\xf7\xa8\x3b\x2f\xa5\x77\x8e\x53\x69\xd5\x63\xa8\x77\x4e\
\x37\x6b\x76\xa6\xcb\xcd\x6c\x5d\xc3\x5f\xb6\xab\x73\x18\xac\xee\
\x26\x8f\x70\x51\xe2\x73\xb3\x49\x47\x2d\x55\x0d\x65\x34\x75\x2a\
\x8d\x2c\x13\x20\x68\xdb\xdd\x7b\xad\x49\x7b\x63\xfe\x13\x03\xf0\
\x1b\xf9\x6c\x75\x67\x65\xff\x00\x31\x6e\x8c\xed\xdf\x97\xfb\xaf\
\xbb\x3e\x02\xf5\xfe\xf2\xf9\xab\xd3\xbb\x5f\xb6\x37\xf7\x4c\x67\
\x7a\xb3\x72\x76\x9f\xc5\x8d\xbb\x92\xef\x3e\xbe\xc0\x76\x5e\x13\
\x67\xf4\x06\xc4\xdd\xb9\x8e\xbf\xcc\x6e\xdd\x89\x49\x4f\x99\xa5\
\xc5\xe7\x30\xd9\x1a\x8c\x74\x93\x47\x4d\x5d\x49\x33\x25\x44\x7e\
\xeb\xdd\x57\x0f\xc2\x3f\xf8\x57\x47\xf3\x22\xf9\x27\xf3\x3f\xe2\
\x27\xc7\x4d\xf5\xd2\x7f\x08\x71\x5b\x27\xbf\x7e\x4f\xf4\x17\x4a\
\xef\x1c\xa6\xd3\xeb\x7e\xf8\xa1\xdd\x38\xdd\xad\xda\x9d\xad\xb4\
\xf6\x2e\xe1\xaf\xdb\x55\xb9\x8f\x92\x99\xdc\x4d\x1e\xe0\xa3\xc4\
\xe7\x66\x92\x8e\x5a\xaa\x1a\xca\x68\xea\x55\x1a\x58\x26\x40\xd1\
\xb7\xba\xf7\x5f\x45\x7f\x7e\xeb\xdd\x16\x0f\x9b\x9d\xd5\xba\x7e\
\x36\x7c\x30\xf9\x77\xf2\x2f\x62\xd0\x6d\xfc\xae\xf6\xe8\x2f\x8c\
\x1d\xfb\xdd\x5b\x3b\x17\xbb\x29\x72\x35\xdb\x5b\x25\xba\x7a\xaf\
\xaa\x77\x66\xfa\xdb\xd4\x1b\x96\x8b\x0f\x95\xc1\x65\xab\x36\xfd\
\x66\x5b\x05\x0c\x75\x91\x52\xd7\x51\xd4\xc9\x4c\xce\xb1\x4f\x0b\
\x95\x91\x7d\xd7\xba\xf9\xf3\xf5\x3f\xfc\x29\xfb\xe7\xcf\xf3\x27\
\xed\x3e\xb4\xfe\x5d\x3d\xe7\xd4\x5f\x10\x36\xa7\x49\xfc\xfa\xec\
\x0d\x9b\xf0\xab\xb8\xb7\x47\x53\xec\x1e\xe7\xc1\x76\x9e\xdb\xea\
\xcf\x94\xfb\x8b\x1b\xd1\x9d\x83\x9f\xeb\x4c\xde\xf0\xef\xfd\xf7\
\xb4\xb0\xfd\x81\x87\xda\x5b\xee\xae\xa3\x0d\x55\x94\xc1\xe6\x71\
\xd4\xf9\x18\xe1\x92\xa6\x86\xae\x15\x7a\x79\x3d\xd7\xba\xbb\xdf\
\xfa\x02\xb3\xf9\x59\xff\x00\xcf\xfc\xf9\xfd\xff\x00\xa3\x4f\xe3\
\xb7\xff\x00\x72\xb7\xbf\x75\xee\x8d\xff\x00\xc0\xbf\xf8\x4c\x0f\
\xc0\x6f\xe5\xdf\xf2\xc3\xaa\x7e\x62\x74\xaf\x6e\xfc\xbf\xdd\x1d\
\x9b\xd3\xff\x00\xdf\x9f\xee\xd6\x0b\xb4\x77\xf7\x4c\x66\xb6\x25\
\x77\xfa\x40\xeb\x6d\xe3\xd5\xd9\x9f\xe3\xb8\xcd\xa7\xd0\x1b\x27\
\x70\x54\xfd\xb6\xdf\xde\xd5\x73\x52\xfd\xbe\x52\x97\x45\x64\x71\
\x3b\xf9\x23\x57\x8a\x4f\x75\xee\xad\xf7\xe7\xa7\xc2\xae\xac\xfe\
\x62\x1f\x13\xfb\x5b\xe1\xdf\x75\x67\xfb\x03\x6b\xf5\x97\x70\x7f\
\x71\xbf\xbc\xb9\xde\xae\xca\xed\xdc\x2e\xfb\xa1\xff\x00\x47\xfd\
\x93\xb3\xbb\x47\x0d\xfc\x0b\x27\xbb\x36\xae\xf6\xdb\xf4\xdf\x73\
\xb8\x36\x4d\x24\x35\x5f\x71\x8b\xaa\xd7\x47\x24\xa8\x9e\x39\x19\
\x25\x8f\xdd\x7b\xad\x21\x7f\x9c\xbf\xfc\x26\x07\xe0\x37\xf2\xef\
\xfe\x5b\x5f\x23\xfe\x62\x74\xaf\x6e\xfc\xbf\xdd\x1d\x9b\xd3\xff\
\x00\xe8\x83\xfb\xb5\x82\xed\x1d\xfd\xd3\x19\xad\x89\x5d\xfe\x90\
\x3b\xe7\xab\xba\xbb\x33\xfc\x77\x19\xb4\xfa\x03\x64\xee\x0a\x9f\
\xb6\xdb\xfb\xda\xae\x6a\x5f\xb7\xca\x52\xe8\xac\x8e\x27\x7f\x24\
\x6a\xf1\x49\xee\xbd\xd6\x88\xfe\xfd\xd7\xba\x37\xdf\x02\xfe\x6a\
\xf6\x9f\xf2\xef\xf9\x61\xd5\x3f\x31\x3a\x57\x01\xd7\xfb\xa3\xb3\
\x7a\x7f\xfb\xf3\xfd\xda\xc1\x76\x8e\x2b\x71\x66\xb6\x25\x77\xfa\
\x40\xeb\x6d\xe3\xd5\xd9\x9f\xe3\xb8\xcd\xa7\xba\xb6\x4e\xe0\xa9\
\xfb\x6d\xbf\xbd\xaa\xe6\xa5\xfb\x7c\xa5\x2e\x8a\xc8\xe2\x77\xf2\
\x46\xaf\x14\x9e\xeb\xdd\x6e\xf5\xfc\x9a\x3f\xe1\x4f\xdf\x3e\x7f\
\x98\x87\xf3\x25\xf8\xe1\xf0\xef\xba\xba\x8b\xe2\x06\xd7\xeb\x2e\
\xe0\xff\x00\x4b\xff\x00\xde\x5c\xef\x57\x6c\x1e\xe7\xc2\xef\xba\
\x1f\xf4\x7f\xd0\xdd\xa3\xda\x38\x6f\xe0\x59\x3d\xd9\xdf\xfb\xdb\
\x6f\xd3\x7d\xce\xe0\xd9\x34\x90\xd5\x7d\xc6\x2e\xab\x5d\x1c\x92\
\xa2\x78\xe4\x64\x96\x3f\x75\xee\xb6\xfa\xf9\xe9\xf0\xab\xab\x3f\
\x98\x87\xc4\xfe\xd6\xf8\x77\xdd\x59\xfe\xc0\xda\xfd\x65\xdc\x1f\
\xdc\x6f\xef\x2e\x77\xab\xb2\xbb\x77\x0b\xbe\xe8\x7f\xd1\xff\x00\
\x64\xec\xee\xd1\xc3\x7f\x02\xc9\xee\xcd\xab\xbd\xb6\xfd\x37\xdc\
\xee\x0d\x93\x49\x0d\x57\xdc\x62\xea\xb5\xd1\xc9\x2a\x27\x8e\x46\
\x49\x63\xf7\x5e\xea\xa0\xbe\x05\xff\x00\xc2\x60\x7e\x03\x7f\x2e\
\xff\x00\x96\x1d\x53\xf3\x13\xa5\x7b\x77\xe5\xfe\xe8\xec\xde\x9f\
\xfe\xfc\xff\x00\x76\xb0\x5d\xa3\xbf\xba\x63\x35\xb1\x2b\xbf\xd2\
\x07\x5b\x6f\x1e\xae\xcc\xff\x00\x1d\xc6\x6d\x3e\x80\xd9\x3b\x82\
\xa7\xed\xb6\xfe\xf6\xab\x9a\x97\xed\xf2\x94\xba\x2b\x23\x89\xdf\
\xc9\x1a\xbc\x52\x7b\xaf\x75\x6f\xbf\x3d\x3e\x15\x75\x67\xf3\x10\
\xf8\x9f\xda\xdf\x0e\xfb\xab\x3f\xd8\x1b\x5f\xac\xbb\x83\xfb\x8d\
\xfd\xe5\xce\xf5\x76\x57\x6e\xe1\x77\xdd\x0f\xfa\x3f\xec\x9d\x9d\
\xda\x38\x6f\xe0\x59\x3d\xd9\xb5\x77\xb6\xdf\xa6\xfb\x9d\xc1\xb2\
\x69\x21\xaa\xfb\x8c\x5d\x56\xba\x39\x25\x44\xf1\xc8\xc9\x2c\x7e\
\xeb\xdd\x6a\x89\xf2\x8f\xf9\x2b\x7c\x59\xff\x00\x84\xef\x74\x56\
\xf9\xfe\x71\x3f\x0a\xb7\xf7\x7f\xf6\x7f\xc9\x9f\x88\x1f\xdd\x9f\
\xf4\x69\xb1\xbe\x51\xee\x9e\xba\xde\xbd\x15\x9c\xff\x00\x66\x03\
\x78\xed\xff\x00\x8b\x9b\xcb\xfb\xf3\xb6\x7a\x9f\xaa\xfa\x4f\xb0\
\x32\x7f\xc3\x36\x07\x76\xe5\x6b\x31\x9f\x61\xb9\xf1\x9e\x1c\xc5\
\x3d\x24\xb3\xfd\xc5\x34\x73\x52\x4f\xee\xbd\xd0\xbf\xff\x00\x09\
\xeb\xff\x00\x85\x0a\x7c\xcf\xfe\x6c\x9f\x33\xfb\x37\xe3\xa7\xc8\
\xbe\xb2\xf8\xc1\xb2\xf6\x4e\xcb\xf8\xc1\xbd\x3b\xab\x17\x94\xe9\
\x5d\x97\xda\xdb\x73\x74\xd4\x6e\x9d\xb9\xda\xdd\x2b\xb1\x68\xa8\
\x2b\xeb\x77\xd7\x75\x76\x3e\x26\x5d\xbf\x2e\x27\xb1\xeb\xa4\x96\
\x28\xe8\x62\xa9\x6a\x98\xa0\x65\x9d\x51\x64\x8e\x5f\x75\xee\xb7\
\x1b\x1f\x51\xfe\xb8\xff\x00\x7b\xf7\xee\xbd\xd6\x7f\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\xd1\xdf\xe3\xdf\xba\xf7\
\x5c\x1f\xe8\x3f\xd7\xf7\xee\xbd\xd6\x2f\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5f\x20\xbf\xf8\x54\x5f\xfd\xbf\x57\xe7\x2f\xfe\x5b\x37\xff\
\x00\x01\xef\xc7\xdf\x7e\xeb\xdd\x7d\x3d\xbf\x94\xff\x00\xfd\xba\
\xcf\xf9\x6a\x7f\xe2\x80\xfc\x37\xff\x00\xe0\x76\xeb\x9f\x7e\xeb\
\xdd\x69\x4d\xf3\x73\xfe\x15\xd1\xfc\xc8\xbe\x36\x7c\xcf\xf9\x77\
\xf1\xd3\x62\xf4\x9f\xc2\x1c\xae\xc9\xe8\x2f\x93\xfd\xfb\xd2\xbb\
\x3b\x29\xbb\x3a\xdf\xbe\x2b\xb7\x4e\x4b\x6b\x75\x5f\x6b\x6e\xcd\
\x8b\xb7\xab\xf7\x2d\x6e\x1f\xe4\xa6\x0b\x13\x59\xb8\x2b\x31\x38\
\x28\x64\xac\x96\x96\x86\x8e\x9a\x4a\x96\x76\x8a\x08\x50\xac\x6b\
\xee\xbd\xd5\x8f\x75\x3f\xfc\x26\x07\xe0\x37\xf3\x27\xea\xce\xb4\
\xfe\x62\xdd\xe7\xdb\xbf\x2f\xf6\xa7\x76\x7c\xfa\xeb\xfd\x9b\xf3\
\x57\xb8\xb6\xbf\x53\xef\xee\x98\xc1\x75\x66\xdb\xed\x3f\x94\xfb\
\x77\x1b\xde\x7d\x83\x80\xeb\x4c\x26\xf0\xe8\x0d\xf7\xbb\x70\xfd\
\x7f\x87\xdd\xbb\xee\xae\x9f\x0d\x4b\x94\xce\x66\x72\x34\xf8\xe8\
\xe1\x8e\xa6\xba\xae\x65\x7a\x89\x3d\xd7\xba\x5f\xff\x00\xd0\x15\
\x9f\xca\xcf\xfe\x7f\xe7\xcf\xef\xfd\x1a\x7f\x1d\xbf\xfb\x95\xbd\
\xfb\xaf\x75\xef\xfa\x02\xb3\xf9\x59\xff\x00\xcf\xfc\xf9\xfd\xff\
\x00\xa3\x4f\xe3\xb7\xff\x00\x72\xb7\xbf\x75\xee\xa9\x0b\xb6\x3f\
\xe1\x4f\xdf\x3e\x7f\x96\xc7\x69\xf6\x5f\xf2\xe9\xe8\xce\xa2\xf8\
\x81\xba\xfa\x4f\xe0\x2f\x60\x6f\x2f\x85\x5d\x3b\xba\x3b\x63\x60\
\xf7\x3e\x77\xb4\xf7\x27\x56\x7c\x58\xdc\x59\x2e\x8c\xeb\xec\xff\
\x00\x65\xe6\xf6\x7f\x7f\xec\x4d\xa5\x98\xec\x0c\xc6\xd2\xd8\x94\
\x95\x19\x9a\xac\x5e\x0f\x0d\x8e\xa8\xc8\xc9\x34\x94\xd4\x34\x90\
\xb2\x53\xc7\xee\xbd\xd5\xbf\x75\x3f\xfc\x26\x07\xe0\x37\xf3\x27\
\xea\xce\xb4\xfe\x62\xdd\xe7\xdb\xbf\x2f\xf6\xa7\x76\x7c\xfa\xeb\
\xfd\x9b\xf3\x57\xb8\xb6\xbf\x53\xef\xee\x98\xc1\x75\x66\xdb\xed\
\x3f\x94\xfb\x77\x1b\xde\x7d\x83\x80\xeb\x4c\x26\xf0\xe8\x0d\xf7\
\xbb\x70\xfd\x7f\x87\xdd\xbb\xee\xae\x9f\x0d\x4b\x94\xce\x66\x72\
\x34\xf8\xe8\xe1\x8e\xa6\xba\xae\x65\x7a\x89\x3d\xd7\xba\x5f\xff\
\x00\xd0\x15\x9f\xca\xcf\xfe\x7f\xe7\xcf\xef\xfd\x1a\x7f\x1d\xbf\
\xfb\x95\xbd\xfb\xaf\x75\xb4\xdf\xc7\xbe\x95\xda\xdf\x1b\x3a\x0f\
\xa3\xfe\x3a\x6c\x5a\xfd\xc1\x95\xd9\x3d\x05\xd4\x1d\x69\xd2\xbb\
\x3b\x29\xbb\x2a\xb1\xd5\xdb\xa7\x25\xb5\xba\xaf\x65\xe1\x76\x2e\
\xde\xaf\xdc\xb5\xb8\x7c\x56\x0b\x13\x59\xb8\x2b\x31\x38\x28\x64\
\xac\x96\x96\x86\x8e\x9a\x4a\x96\x76\x8a\x08\x50\xac\x6b\xee\xbd\
\xd6\xb8\x7f\x21\x3f\xe1\x22\xff\x00\xcb\x77\xe4\x9f\x7e\x77\x87\
\xc8\xbd\xf5\xdd\x9f\x37\xb1\x5b\xdb\xbf\x7b\x7f\xb2\xfb\xab\x78\
\xe2\xf6\x9f\x64\x74\x3d\x0e\xd6\xc6\xee\x9e\xd4\xde\x99\xad\xf5\
\xb8\x68\x36\xd5\x16\x63\xe3\x5e\x77\x2d\x47\xb7\xe8\xf2\xd9\xd9\
\xa3\xa3\x8a\xaa\xba\xb2\xa6\x3a\x65\x45\x96\x79\x9c\x34\x8d\xee\
\xbd\xd7\xca\xab\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xd3\xdb\xfe\x80\
\xac\xfe\x56\x7f\xf3\xff\x00\x3e\x7f\x7f\xe8\xd3\xf8\xed\xff\x00\
\xdc\xad\xef\xdd\x7b\xaf\x7f\xd0\x15\x9f\xca\xcf\xfe\x7f\xe7\xcf\
\xef\xfd\x1a\x7f\x1d\xbf\xfb\x95\xbd\xfb\xaf\x75\xb7\xd7\xbf\x75\
\xee\xbd\xef\xdd\x7b\xaf\x80\x7f\xbf\x75\xee\xbe\xfe\x1e\xfd\xd7\
\xba\xf8\x07\xfb\xf7\x5e\xe8\xff\x00\x7f\x29\xff\x00\xfb\x7a\x67\
\xf2\xd4\xff\x00\xc5\xfe\xf8\x6f\xff\x00\xc1\x13\xd7\x3e\xfd\xd7\
\xba\xfb\x29\xfc\xdc\xee\xad\xd3\xf1\xb3\xe1\x87\xcb\xbf\x91\x7b\
\x16\x83\x6f\xe5\x77\xb7\x41\x7c\x60\xef\xde\xea\xd9\xd8\xbd\xd9\
\x4b\x91\xae\xda\xd9\x2d\xd3\xd5\x7d\x53\xbb\x37\xd6\xde\xa0\xdc\
\xb4\x58\x7c\xae\x0b\x2d\x59\xb7\xeb\x32\xd8\x28\x63\xac\x8a\x96\
\xba\x8e\xa6\x4a\x66\x75\x8a\x78\x5c\xac\x8b\xee\xbd\xd7\xce\xa3\
\xfe\x83\x53\xfe\x69\x9f\xf3\xe0\xfe\x00\xff\x00\xe8\xac\xf9\x13\
\xff\x00\xdd\x53\xef\xdd\x7b\xaf\x7f\xd0\x6a\x7f\xcd\x33\xfe\x7c\
\x1f\xc0\x1f\xfd\x15\x9f\x22\x7f\xfb\xaa\x7d\xfb\xaf\x74\x10\x7c\
\x84\xff\x00\x85\x74\x7f\x32\x2f\x92\x7d\x07\xde\x1f\x1d\x37\xd7\
\x49\xfc\x21\xc5\x6c\x9e\xfd\xea\x0e\xcb\xe9\x5d\xe3\x94\xda\x7d\
\x6f\xdf\x14\x3b\xa7\x1b\xb5\xbb\x53\x65\xe6\xb6\x2e\xe1\xaf\xdb\
\x55\xb9\x8f\x92\x99\xdc\x4d\x1e\xe0\xa3\xc4\xe7\x66\x92\x8e\x5a\
\xaa\x1a\xca\x68\xea\x55\x1a\x58\x26\x40\xd1\xb7\xba\xf7\x54\xc5\
\xfc\xa7\xff\x00\xed\xe9\x9f\xcb\x53\xff\x00\x17\xfb\xe1\xbf\xff\
\x00\x04\x4f\x5c\xfb\xf7\x5e\xeb\xed\xe5\xef\xdd\x7b\xa0\x83\xe4\
\x27\x4a\xed\x6f\x92\x7d\x07\xde\x1f\x1d\x37\xd5\x7e\xe0\xc5\x6c\
\x9e\xfd\xea\x0e\xcb\xe9\x5d\xe3\x94\xda\x75\x58\xea\x1d\xd3\x8d\
\xda\xdd\xa9\xb2\xf3\x5b\x17\x70\xd7\xed\xaa\xdc\xc6\x2b\x3b\x89\
\xa3\xdc\x14\x78\x9c\xec\xd2\x51\xcb\x55\x43\x59\x4d\x1d\x4a\xa3\
\x4b\x04\xc8\x1a\x36\xf7\x5e\xeb\x52\x5e\xd8\xff\x00\x84\xc0\xfc\
\x06\xfe\x5b\x1d\x59\xd9\x7f\xcc\x5b\xa3\x3b\x77\xe5\xfe\xeb\xee\
\xcf\x80\xbd\x7f\xbc\xbe\x6a\xf4\xee\xd7\xed\x8d\xfd\xd3\x19\xde\
\xac\xdc\x9d\xa7\xf1\x63\x6e\xe4\xbb\xcf\xaf\xb0\x1d\x97\x84\xd9\
\xfd\x01\xb1\x37\x6e\x63\xaf\xf3\x1b\xb7\x62\x52\x53\xe6\x69\x71\
\x79\xcc\x36\x46\xa3\x1d\x24\xd1\xd3\x57\x52\x4c\xc9\x51\x1f\xba\
\xf7\x55\xc3\xf0\x8f\xfe\x15\xd1\xfc\xc8\xbe\x49\xfc\xcf\xf8\x89\
\xf1\xd3\x7d\x74\x9f\xc2\x1c\x56\xc9\xef\xdf\x93\xfd\x05\xd2\xbb\
\xc7\x29\xb4\xfa\xdf\xbe\x28\x77\x4e\x37\x6b\x76\xa7\x6b\x6d\x3d\
\x8b\xb8\x6b\xf6\xd5\x6e\x63\xe4\xa6\x77\x13\x47\xb8\x28\xf1\x39\
\xd9\xa4\xa3\x96\xaa\x86\xb2\x9a\x3a\x95\x46\x96\x09\x90\x34\x6d\
\xee\xbd\xd7\xd1\x5f\xdf\xba\xf7\x55\x85\xfc\xe5\xfe\x6a\xf6\x9f\
\xf2\xef\xfe\x5b\x5f\x23\xfe\x62\x74\xae\x03\xaf\xf7\x47\x66\xf4\
\xff\x00\xfa\x20\xfe\xed\x60\xbb\x47\x15\xb8\xb3\x5b\x12\xbb\xfd\
\x20\x77\xcf\x57\x75\x76\x67\xf8\xee\x33\x69\xee\xad\x93\xb8\x2a\
\x7e\xdb\x6f\xef\x6a\xb9\xa9\x7e\xdf\x29\x4b\xa2\xb2\x38\x9d\xfc\
\x91\xab\xc5\x27\xba\xf7\x5f\x38\x7f\x9e\x9f\xf0\xa7\xef\x9f\x3f\
\xcc\x43\xe2\x7f\x6b\x7c\x3b\xee\xae\xa2\xf8\x81\xb5\xfa\xcb\xb8\
\x3f\xb8\xdf\xde\x5c\xef\x57\x6c\x1e\xe7\xc2\xef\xba\x1f\xf4\x7f\
\xd9\x3b\x3b\xb4\x70\xdf\xc0\xb2\x7b\xb3\xbf\xf7\xb6\xdf\xa6\xfb\
\x9d\xc1\xb2\x69\x21\xaa\xfb\x8c\x5d\x56\xba\x39\x25\x44\xf1\xc8\
\xc9\x2c\x7e\xeb\xdd\x6b\x89\xef\xdd\x7b\xaf\x7b\xf7\x5e\xe8\xdf\
\x7c\x0b\xf9\xab\xda\x7f\xcb\xbf\xe5\x87\x54\xfc\xc4\xe9\x5c\x07\
\x5f\xee\x8e\xcd\xe9\xff\x00\xef\xcf\xf7\x6b\x05\xda\x38\xad\xc5\
\x9a\xd8\x95\xdf\xe9\x03\xad\xb7\x8f\x57\x66\x7f\x8e\xe3\x36\x9e\
\xea\xd9\x3b\x82\xa7\xed\xb6\xfe\xf6\xab\x9a\x97\xed\xf2\x94\xba\
\x2b\x23\x89\xdf\xc9\x1a\xbc\x52\x7b\xaf\x75\xbb\xd7\xf2\x68\xff\
\x00\x85\x3f\x7c\xf9\xfe\x62\x1f\xcc\x97\xe3\x87\xc3\xbe\xea\xea\
\x2f\x88\x1b\x5f\xac\xbb\x83\xfd\x2f\xff\x00\x79\x73\xbd\x5d\xb0\
\x7b\x9f\x0b\xbe\xe8\x7f\xd1\xff\x00\x43\x76\x8f\x68\xe1\xbf\x81\
\x64\xf7\x67\x7f\xef\x6d\xbf\x4d\xf7\x3b\x83\x64\xd2\x43\x55\xf7\
\x18\xba\xad\x74\x72\x4a\x89\xe3\x91\x92\x58\xfd\xd7\xba\xd9\xef\
\xf9\xcb\xfc\xd5\xed\x3f\xe5\xdf\xfc\xb6\xbe\x47\xfc\xc4\xe9\x5c\
\x07\x5f\xee\x8e\xcd\xe9\xff\x00\xf4\x41\xfd\xda\xc1\x76\x8e\x2b\
\x71\x66\xb6\x25\x77\xfa\x40\xef\x9e\xae\xea\xec\xcf\xf1\xdc\x66\
\xd3\xdd\x5b\x27\x70\x54\xfd\xb6\xdf\xde\xd5\x73\x52\xfd\xbe\x52\
\x97\x45\x64\x71\x3b\xf9\x23\x57\x8a\x4f\x75\xee\xb5\x84\xfe\x4d\
\x1f\xf0\xa7\xef\x9f\x3f\xcc\x43\xf9\x92\xfc\x70\xf8\x77\xdd\x5d\
\x45\xf1\x03\x6b\xf5\x97\x70\x7f\xa5\xff\x00\xef\x2e\x77\xab\xb6\
\x0f\x73\xe1\x77\xdd\x0f\xfa\x3f\xe8\x6e\xd1\xed\x1c\x37\xf0\x2c\
\x9e\xec\xef\xfd\xed\xb7\xe9\xbe\xe7\x70\x6c\x9a\x48\x6a\xbe\xe3\
\x17\x55\xae\x8e\x49\x51\x3c\x72\x32\x4b\x1f\xba\xf7\x5b\x7d\x7c\
\xf4\xf8\x55\xd5\x9f\xcc\x43\xe2\x7f\x6b\x7c\x3b\xee\xac\xff\x00\
\x60\x6d\x7e\xb2\xee\x0f\xee\x37\xf7\x97\x3b\xd5\xd9\x5d\xbb\x85\
\xdf\x74\x3f\xe8\xff\x00\xb2\x76\x77\x68\xe1\xbf\x81\x64\xf7\x66\
\xd5\xde\xdb\x7e\x9b\xee\x77\x06\xc9\xa4\x86\xab\xee\x31\x75\x5a\
\xe8\xe4\x95\x13\xc7\x23\x24\xb1\xfb\xaf\x75\x5c\x3f\xcb\x03\xfe\
\x13\xd7\xf0\xc3\xf9\x4d\xf7\xe6\xee\xf9\x17\xf1\xd3\xb3\x7e\x4f\
\xef\x4d\xed\xbd\x3a\x83\x3f\xd2\xb9\x4c\x5f\x75\x6f\x4e\xa9\xdc\
\x7b\x5a\x9f\x6b\x6e\x3d\xe9\xb0\x37\xd5\x6d\x7d\x05\x16\xc5\xe9\
\x5e\xb8\xcb\x45\xb8\x22\xcb\x75\xc5\x0c\x71\x4b\x25\x74\xb4\xcb\
\x4d\x2c\xea\xd0\x33\xb4\x72\x45\xee\xbd\xd5\xef\x2f\x2c\x3f\xd7\
\xff\x00\x7a\xe7\xdf\xba\xf7\x59\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5f\xff\xd2\xdf\xe3\xdf\xba\xf7\x5c\x5f\xf4\x9f\
\xf6\x1f\xef\x63\xdf\xba\xf7\x58\x7d\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x6b\x89\xf3\xd3\xfe\x13\x03\xf0\x1b\xf9\x88\x7c\xb0\xed\x6f\x98\
\x9d\xd5\xdb\xbf\x2f\xf6\xbf\x66\xf7\x07\xf7\x1b\xfb\xcb\x82\xea\
\xed\xfd\xd3\x18\x5d\x89\x43\xfe\x8f\xfa\xdb\x67\x75\x76\x1b\xf8\
\x16\x33\x76\x74\x06\xf6\xdc\x14\xdf\x73\xb7\xf6\x4d\x24\xd5\x5f\
\x71\x94\xaa\xd7\x59\x24\xae\x9e\x38\xd9\x22\x8f\xdd\x7b\xab\xdc\
\xf8\xf7\xd2\xbb\x5b\xe3\x67\x41\xf4\x7f\xc7\x4d\x8b\x5f\xb8\x32\
\xbb\x27\xa0\xba\x83\xad\x3a\x57\x67\x65\x37\x65\x56\x3a\xbb\x74\
\xe4\xb6\xb7\x55\xec\xbc\x2e\xc5\xdb\xd5\xfb\x96\xb7\x0f\x8a\xc1\
\x62\x6b\x37\x05\x66\x27\x05\x0c\x95\x92\xd2\xd0\xd1\xd3\x49\x52\
\xce\xd1\x41\x0a\x15\x8d\x7d\xd7\xba\xd7\x0f\xe4\x27\xfc\x24\x5f\
\xf9\x6e\xfc\x93\xef\xce\xf0\xf9\x17\xbe\xbb\xb3\xe6\xf6\x2b\x7b\
\x77\xef\x6f\xf6\x5f\x75\x6f\x1c\x5e\xd3\xec\x8e\x87\xa1\xda\xd8\
\xdd\xd3\xda\x9b\xd3\x35\xbe\xb7\x0d\x06\xda\xa2\xcc\x7c\x6b\xce\
\xe5\xa8\xf6\xfd\x1e\x5b\x3b\x34\x74\x71\x55\x57\x56\x54\xc7\x4c\
\xa8\xb2\xcf\x33\x86\x91\xbd\xd7\xba\xd8\xf3\xe3\xdf\x4a\xed\x6f\
\x8d\x9d\x07\xd1\xff\x00\x1d\x36\x2d\x7e\xe0\xca\xec\x9e\x82\xea\
\x0e\xb4\xe9\x5d\x9d\x94\xdd\x95\x58\xea\xed\xd3\x92\xda\xdd\x57\
\xb2\xf0\xbb\x17\x6f\x57\xee\x5a\xdc\x3e\x2b\x05\x89\xac\xdc\x15\
\x98\x9c\x14\x32\x56\x4b\x4b\x43\x47\x4d\x25\x4b\x3b\x45\x04\x28\
\x56\x35\xf7\x5e\xe8\x5f\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xab\x27\
\xc8\x4f\xf8\x48\xbf\xf2\xdd\xf9\x27\xdf\x9d\xe1\xf2\x2f\x7d\x77\
\x67\xcd\xec\x56\xf6\xef\xde\xdf\xec\xbe\xea\xde\x38\xbd\xa7\xd9\
\x1d\x0f\x43\xb5\xb1\xbb\xa7\xb5\x37\xa6\x6b\x7d\x6e\x1a\x0d\xb5\
\x45\x98\xf8\xd7\x9d\xcb\x51\xed\xfa\x3c\xb6\x76\x68\xe8\xe2\xaa\
\xae\xac\xa9\x8e\x99\x51\x65\x9e\x67\x0d\x23\x7b\xaf\x75\xb1\xe7\
\xc7\xbe\x95\xda\xdf\x1b\x3a\x0f\xa3\xfe\x3a\x6c\x5a\xfd\xc1\x95\
\xd9\x3d\x05\xd4\x1d\x69\xd2\xbb\x3b\x29\xbb\x2a\xb1\xd5\xdb\xa7\
\x25\xb5\xba\xaf\x65\xe1\x76\x2e\xde\xaf\xdc\xb5\xb8\x7c\x56\x0b\
\x13\x59\xb8\x2b\x31\x38\x28\x64\xac\x96\x96\x86\x8e\x9a\x4a\x96\
\x76\x8a\x08\x50\xac\x6b\xee\xbd\xd6\x80\xff\x00\x37\x3f\xe1\x5d\
\x1f\xcc\x8b\xe3\x67\xcc\xff\x00\x97\x7f\x1d\x36\x2f\x49\xfc\x21\
\xca\xec\x9e\x82\xf9\x3f\xdf\xbd\x2b\xb3\xb2\x9b\xb3\xad\xfb\xe2\
\xbb\x74\xe4\xb6\xb7\x55\xf6\xb6\xec\xd8\xbb\x7a\xbf\x72\xd6\xe1\
\xfe\x4a\x60\xb1\x35\x9b\x82\xb3\x13\x82\x86\x4a\xc9\x69\x68\x68\
\xe9\xa4\xa9\x67\x68\xa0\x85\x0a\xc6\xbe\xeb\xdd\x16\x0f\xfa\x0d\
\x4f\xf9\xa6\x7f\xcf\x83\xf8\x03\xff\x00\xa2\xb3\xe4\x4f\xff\x00\
\x75\x4f\xbf\x75\xee\xbe\x8a\xff\x00\x08\xfb\xab\x74\xfc\x93\xf8\
\x61\xf1\x13\xe4\x5e\xfa\xa0\xdb\xf8\xad\xed\xdf\xbf\x18\x3a\x0b\
\xba\xb7\x8e\x2f\x69\xd2\xe4\x68\x76\xb6\x37\x74\xf6\xa7\x54\xed\
\x3d\xf5\xb8\x68\x36\xd5\x16\x63\x2b\x9d\xcb\x51\xed\xfa\x3c\xb6\
\x76\x68\xe8\xe2\xaa\xae\xac\xa9\x8e\x99\x51\x65\x9e\x67\x0d\x23\
\x7b\xaf\x75\xf0\xae\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xf7\xf0\xf7\
\xee\xbd\xd7\xbd\xfb\xaf\x75\xf3\x09\xff\x00\xa0\xd4\xff\x00\x9a\
\x67\xfc\xf8\x3f\x80\x3f\xfa\x2b\x3e\x44\xff\x00\xf7\x54\xfb\xf7\
\x5e\xeb\xdf\xf4\x1a\x9f\xf3\x4c\xff\x00\x9f\x07\xf0\x07\xff\x00\
\x45\x67\xc8\x9f\xfe\xea\x9f\x7e\xeb\xdd\x5f\xe7\xfd\x01\x59\xfc\
\xac\xff\x00\xe7\xfe\x7c\xfe\xff\x00\xd1\xa7\xf1\xdb\xff\x00\xb9\
\x5b\xdf\xba\xf7\x54\x07\xff\x00\x41\xa9\xff\x00\x34\xcf\xf9\xf0\
\x7f\x00\x7f\xf4\x56\x7c\x89\xff\x00\xee\xa9\xf7\xee\xbd\xd6\xa0\
\xbe\xfd\xd7\xba\x17\xfe\x3d\xf7\x56\xe9\xf8\xd9\xdf\x9d\x1f\xf2\
\x2f\x62\xd0\x6d\xfc\xae\xf6\xe8\x2e\xdf\xeb\x4e\xea\xd9\xd8\xbd\
\xd9\x4b\x91\xae\xda\xd9\x2d\xd3\xd5\x7b\xd3\x0b\xbe\xb6\xf5\x06\
\xe5\xa2\xc3\xe5\x70\x59\x6a\xcd\xbf\x59\x96\xc1\x43\x1d\x64\x54\
\xb5\xd4\x75\x32\x53\x33\xac\x53\xc2\xe5\x64\x5f\x75\xee\xb6\x3c\
\xf9\x09\xff\x00\x0a\xe8\xfe\x64\x5f\x24\xfa\x0f\xbc\x3e\x3a\x6f\
\xae\x93\xf8\x43\x8a\xd9\x3d\xfb\xd4\x1d\x97\xd2\xbb\xc7\x29\xb4\
\xfa\xdf\xbe\x28\x77\x4e\x37\x6b\x76\xa6\xcb\xcd\x6c\x5d\xc3\x5f\
\xb6\xab\x73\x1f\x25\x33\xb8\x9a\x3d\xc1\x47\x89\xce\xcd\x25\x1c\
\xb5\x54\x35\x94\xd1\xd4\xaa\x34\xb0\x4c\x81\xa3\x6f\x75\xee\xa8\
\x0f\xe1\x1f\x4a\xed\x6f\x92\x7f\x33\xfe\x22\x7c\x74\xdf\x55\xfb\
\x83\x15\xb2\x7b\xf7\xe4\xff\x00\x41\x74\xae\xf1\xca\x6d\x3a\xac\
\x75\x0e\xe9\xc6\xed\x6e\xd4\xed\x6d\xa7\xb1\x77\x0d\x7e\xda\xad\
\xcc\x62\xb3\xb8\x9a\x3d\xc1\x47\x89\xce\xcd\x25\x1c\xb5\x54\x35\
\x94\xd1\xd4\xaa\x34\xb0\x4c\x81\xa3\x6f\x75\xee\xb7\xb8\xf9\xb9\
\xff\x00\x09\x17\xfe\x5b\xbf\x1b\x3e\x18\x7c\xbb\xf9\x17\xb1\x7b\
\xb3\xe6\xf6\x57\x7b\x74\x17\xc6\x0e\xfd\xee\xad\x9d\x8b\xdd\x9d\
\x91\xd0\xf5\xdb\x5b\x25\xba\x7a\xaf\xaa\x77\x66\xfa\xdb\xd4\x1b\
\x96\x8b\x0f\xf1\xaf\x05\x96\xac\xdb\xf5\x99\x6c\x14\x31\xd6\x45\
\x4b\x5d\x47\x53\x25\x33\x3a\xc5\x3c\x2e\x56\x45\xf7\x5e\xeb\x44\
\x7f\x84\x7d\x2b\xb5\xbe\x49\xfc\xcf\xf8\x89\xf1\xd3\x7d\x57\xee\
\x0c\x56\xc9\xef\xdf\x93\xfd\x05\xd2\xbb\xc7\x29\xb4\xea\xb1\xd4\
\x3b\xa7\x1b\xb5\xbb\x53\xb5\xb6\x9e\xc5\xdc\x35\xfb\x6a\xb7\x31\
\x8a\xce\xe2\x68\xf7\x05\x1e\x27\x3b\x34\x94\x72\xd5\x50\xd6\x53\
\x47\x52\xa8\xd2\xc1\x32\x06\x8d\xbd\xd7\xba\xfa\x0c\x76\xc7\xfc\
\x26\x07\xe0\x37\xf2\xd8\xea\xce\xcb\xfe\x62\xdd\x19\xdb\xbf\x2f\
\xf7\x5f\x76\x7c\x05\xeb\xfd\xe5\xf3\x57\xa7\x76\xbf\x6c\x6f\xee\
\x98\xce\xf5\x66\xe4\xed\x3f\x8b\x1b\x77\x25\xde\x7d\x7d\x80\xec\
\xbc\x26\xcf\xe8\x0d\x89\xbb\x73\x1d\x7f\x98\xdd\xbb\x12\x92\x9f\
\x33\x4b\x8b\xce\x61\xb2\x35\x18\xe9\x26\x8e\x9a\xba\x92\x66\x4a\
\x88\xfd\xd7\xba\xae\x1f\x84\x7f\xf0\xae\x8f\xe6\x45\xf2\x4f\xe6\
\x7f\xc4\x4f\x8e\x9b\xeb\xa4\xfe\x10\xe2\xb6\x4f\x7e\xfc\x9f\xe8\
\x2e\x95\xde\x39\x4d\xa7\xd6\xfd\xf1\x43\xba\x71\xbb\x5b\xb5\x3b\
\x5b\x69\xec\x5d\xc3\x5f\xb6\xab\x73\x1f\x25\x33\xb8\x9a\x3d\xc1\
\x47\x89\xce\xcd\x25\x1c\xb5\x54\x35\x94\xd1\xd4\xaa\x34\xb0\x4c\
\x81\xa3\x6f\x75\xee\xb7\xb8\xf9\xb9\xdd\x5b\xa7\xe3\x67\xc3\x0f\
\x97\x7f\x22\xf6\x2d\x06\xdf\xca\xef\x6e\x82\xf8\xc1\xdf\xbd\xd5\
\xb3\xb1\x7b\xb2\x97\x23\x5d\xb5\xb2\x5b\xa7\xaa\xfa\xa7\x76\x6f\
\xad\xbd\x41\xb9\x68\xb0\xf9\x5c\x16\x5a\xb3\x6f\xd6\x65\xb0\x50\
\xc7\x59\x15\x2d\x75\x1d\x4c\x94\xcc\xeb\x14\xf0\xb9\x59\x17\xdd\
\x7b\xaf\x9f\x3f\x53\xff\x00\xc2\x9f\xbe\x7c\xff\x00\x32\x7e\xd3\
\xeb\x4f\xe5\xd3\xde\x7d\x45\xf1\x03\x6a\x74\x9f\xcf\xae\xc0\xd9\
\xbf\x0a\xbb\x8b\x74\x75\x3e\xc1\xee\x7c\x17\x69\xed\xbe\xac\xf9\
\x4f\xb8\xb1\xbd\x19\xd8\x39\xfe\xb4\xcd\xef\x0e\xff\x00\xdf\x7b\
\x4b\x0f\xd8\x18\x7d\xa5\xbe\xea\xea\x30\xd5\x59\x4c\x1e\x67\x1d\
\x4f\x91\x8e\x19\x2a\x68\x6a\xe1\x57\xa7\x93\xdd\x7b\xab\x7e\xed\
\x8f\xf8\x4c\x0f\xc0\x6f\xe5\xb1\xd5\x9d\x97\xfc\xc5\xba\x33\xb7\
\x7e\x5f\xee\xbe\xec\xf8\x0b\xd7\xfb\xcb\xe6\xaf\x4e\xed\x7e\xd8\
\xdf\xdd\x31\x9d\xea\xcd\xc9\xda\x7f\x16\x36\xee\x4b\xbc\xfa\xfb\
\x01\xd9\x78\x4d\x9f\xd0\x1b\x13\x76\xe6\x3a\xff\x00\x31\xbb\x76\
\x25\x25\x3e\x66\x97\x17\x9c\xc3\x64\x6a\x31\xd2\x4d\x1d\x35\x75\
\x24\xcc\x95\x11\xfb\xaf\x75\x48\x5f\xf4\x1a\x9f\xf3\x4c\xff\x00\
\x9f\x07\xf0\x07\xff\x00\x45\x67\xc8\x9f\xfe\xea\x9f\x7e\xeb\xdd\
\x14\x0f\x9e\x9f\xf0\xa7\xef\x9f\x3f\xcc\x43\xe2\x7f\x6b\x7c\x3b\
\xee\xae\xa2\xf8\x81\xb5\xfa\xcb\xb8\x3f\xb8\xdf\xde\x5c\xef\x57\
\x6c\x1e\xe7\xc2\xef\xba\x1f\xf4\x7f\xd9\x3b\x3b\xb4\x70\xdf\xc0\
\xb2\x7b\xb3\xbf\xf7\xb6\xdf\xa6\xfb\x9d\xc1\xb2\x69\x21\xaa\xfb\
\x8c\x5d\x56\xba\x39\x25\x44\xf1\xc8\xc9\x2c\x7e\xeb\xdd\x10\x1f\
\xe4\xd1\xf0\xab\xab\x3f\x98\x87\xf3\x25\xf8\xe1\xf0\xef\xba\xb3\
\xfd\x81\xb5\xfa\xcb\xb8\x3f\xd2\xff\x00\xf7\x97\x3b\xd5\xd9\x5d\
\xbb\x85\xdf\x74\x3f\xe8\xff\x00\xa1\xbb\x47\xb4\x70\xdf\xc0\xb2\
\x7b\xb3\x6a\xef\x6d\xbf\x4d\xf7\x3b\x83\x64\xd2\x43\x55\xf7\x18\
\xba\xad\x74\x72\x4a\x89\xe3\x91\x92\x58\xfd\xd7\xba\xde\xe7\xfe\
\x80\xac\xfe\x56\x7f\xf3\xff\x00\x3e\x7f\x7f\xe8\xd3\xf8\xed\xff\
\x00\xdc\xad\xef\xdd\x7b\xaf\x7f\xd0\x15\x9f\xca\xcf\xfe\x7f\xe7\
\xcf\xef\xfd\x1a\x7f\x1d\xbf\xfb\x95\xbd\xfb\xaf\x75\x58\x3f\xce\
\x5f\xfe\x13\x03\xf0\x1b\xf9\x77\xff\x00\x2d\xaf\x91\xff\x00\x31\
\x3a\x57\xb7\x7e\x5f\xee\x8e\xcd\xe9\xff\x00\xf4\x41\xfd\xda\xc1\
\x76\x8e\xfe\xe9\x8c\xd6\xc4\xae\xff\x00\x48\x1d\xf3\xd5\xdd\x5d\
\x99\xfe\x3b\x8c\xda\x7d\x01\xb2\x77\x05\x4f\xdb\x6d\xfd\xed\x57\
\x35\x2f\xdb\xe5\x29\x74\x56\x47\x13\xbf\x92\x35\x78\xa4\xf7\x5e\
\xeb\x50\x5f\x81\x7f\x35\x7b\x4f\xf9\x77\xfc\xb0\xea\x9f\x98\x9d\
\x2b\x80\xeb\xfd\xd1\xd9\xbd\x3f\xfd\xf9\xfe\xed\x60\xbb\x47\x15\
\xb8\xb3\x5b\x12\xbb\xfd\x20\x75\xb6\xf1\xea\xec\xcf\xf1\xdc\x66\
\xd3\xdd\x5b\x27\x70\x54\xfd\xb6\xdf\xde\xd5\x73\x52\xfd\xbe\x52\
\x97\x45\x64\x71\x3b\xf9\x23\x57\x8a\x4f\x75\xee\xad\xf7\xe7\xa7\
\xfc\x29\xfb\xe7\xcf\xf3\x10\xf8\x9f\xda\xdf\x0e\xfb\xab\xa8\xbe\
\x20\x6d\x7e\xb2\xee\x0f\xee\x37\xf7\x97\x3b\xd5\xdb\x07\xb9\xf0\
\xbb\xee\x87\xfd\x1f\xf6\x4e\xce\xed\x1c\x37\xf0\x2c\x9e\xec\xef\
\xfd\xed\xb7\xe9\xbe\xe7\x70\x6c\x9a\x48\x6a\xbe\xe3\x17\x55\xae\
\x8e\x49\x51\x3c\x72\x32\x4b\x1f\xba\xf7\x48\x0f\xf8\x4b\xa7\xfd\
\xbf\x57\xe0\xd7\xfe\x5c\xcf\xff\x00\x01\xef\xc8\x2f\x7e\xeb\xdd\
\x7d\x2d\xff\x00\x9c\xbf\xcd\x5e\xd3\xfe\x5d\xff\x00\xcb\x6b\xe4\
\x7f\xcc\x4e\x95\xc0\x75\xfe\xe8\xec\xde\x9f\xff\x00\x44\x1f\xdd\
\xac\x17\x68\xe2\xb7\x16\x6b\x62\x57\x7f\xa4\x0e\xf9\xea\xee\xae\
\xcc\xff\x00\x1d\xc6\x6d\x3d\xd5\xb2\x77\x05\x4f\xdb\x6d\xfd\xed\
\x57\x35\x2f\xdb\xe5\x29\x74\x56\x47\x13\xbf\x92\x35\x78\xa4\xf7\
\x5e\xea\x88\xbf\xe1\x3d\x7f\xf0\xa1\x4f\x99\xff\x00\xcd\x93\xe6\
\x7f\x66\xfc\x74\xf9\x17\xd6\x5f\x18\x36\x5e\xc9\xd9\x7f\x18\x37\
\xa7\x75\x62\xf2\x9d\x2b\xb2\xfb\x5b\x6e\x6e\x9a\x8d\xd3\xb7\x3b\
\x5b\xa5\x76\x2d\x15\x05\x7d\x6e\xfa\xee\xae\xc7\xc4\xcb\xb7\xe5\
\xc4\xf6\x3d\x74\x92\xc5\x1d\x0c\x55\x2d\x53\x14\x0c\xb3\xaa\x2c\
\x91\xcb\xee\xbd\xd6\xe3\x8b\xc3\x0f\xf5\xff\x00\xde\xf8\xf7\xee\
\xbd\xd6\x6f\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\
\xd3\xdf\xe3\xdf\xba\xf7\x5c\x1f\xe9\xfe\xc7\xfe\x2b\xef\xdd\x7b\
\xac\x5e\xfd\xd7\xba\xf7\xbf\x75\xee\xb4\x47\xfe\x72\xff\x00\xf0\
\xa7\xef\x9f\x3f\xcb\xbf\xf9\x92\xfc\x8f\xf8\x77\xd2\xbd\x45\xf1\
\x03\x74\x75\x97\x4f\xff\x00\xa2\x0f\xee\xd6\x77\xb4\x76\x0f\x73\
\xe6\xb7\xdd\x77\xfa\x40\xe8\x6e\xae\xed\x1c\xcf\xf1\xdc\x9e\xd3\
\xef\xfd\x93\xb7\xea\x7e\xdb\x70\x6f\x6a\xb8\x69\x7e\xdf\x17\x4b\
\xa2\x8e\x38\x91\xfc\x92\x2b\xcb\x27\xba\xf7\x55\x83\xff\x00\x41\
\xa9\xff\x00\x34\xcf\xf9\xf0\x7f\x00\x7f\xf4\x56\x7c\x89\xff\x00\
\xee\xa9\xf7\xee\xbd\xd7\xbf\xe8\x35\x3f\xe6\x99\xff\x00\x3e\x0f\
\xe0\x0f\xfe\x8a\xcf\x91\x3f\xfd\xd5\x3e\xfd\xd7\xba\xf7\xfd\x06\
\xa7\xfc\xd3\x3f\xe7\xc1\xfc\x01\xff\x00\xd1\x59\xf2\x27\xff\x00\
\xba\xa7\xdf\xba\xf7\x5e\xff\x00\xa0\xd4\xff\x00\x9a\x67\xfc\xf8\
\x3f\x80\x3f\xfa\x2b\x3e\x44\xff\x00\xf7\x54\xfb\xf7\x5e\xeb\xdf\
\xf4\x1a\x9f\xf3\x4c\xff\x00\x9f\x07\xf0\x07\xff\x00\x45\x67\xc8\
\x9f\xfe\xea\x9f\x7e\xeb\xdd\x7b\xfe\x83\x53\xfe\x69\x9f\xf3\xe0\
\xfe\x00\xff\x00\xe8\xac\xf9\x13\xff\x00\xdd\x53\xef\xdd\x7b\xaf\
\xa2\xbf\xc2\x3e\xea\xdd\x3f\x24\xfe\x18\x7c\x44\xf9\x17\xbe\xa8\
\x36\xfe\x2b\x7b\x77\xef\xc6\x0e\x82\xee\xad\xe3\x8b\xda\x74\xb9\
\x1a\x1d\xad\x8d\xdd\x3d\xa9\xd5\x3b\x4f\x7d\x6e\x1a\x0d\xb5\x45\
\x98\xca\xe7\x72\xd4\x7b\x7e\x8f\x2d\x9d\x9a\x3a\x38\xaa\xab\xab\
\x2a\x63\xa6\x54\x59\x67\x99\xc3\x48\xde\xeb\xdd\x50\x1f\xc8\x4f\
\xf8\x48\xbf\xf2\xdd\xf9\x27\xdf\x9d\xe1\xf2\x2f\x7d\x77\x67\xcd\
\xec\x56\xf6\xef\xde\xdf\xec\xbe\xea\xde\x38\xbd\xa7\xd9\x1d\x0f\
\x43\xb5\xb1\xbb\xa7\xb5\x37\xa6\x6b\x7d\x6e\x1a\x0d\xb5\x45\x98\
\xf8\xd7\x9d\xcb\x51\xed\xfa\x3c\xb6\x76\x68\xe8\xe2\xaa\xae\xac\
\xa9\x8e\x99\x51\x65\x9e\x67\x0d\x23\x7b\xaf\x74\x10\x7f\xd0\x15\
\x9f\xca\xcf\xfe\x7f\xe7\xcf\xef\xfd\x1a\x7f\x1d\xbf\xfb\x95\xbd\
\xfb\xaf\x75\x48\x5d\xb1\xff\x00\x0a\x7e\xf9\xf3\xfc\xb6\x3b\x4f\
\xb2\xff\x00\x97\x4f\x46\x75\x17\xc4\x0d\xd7\xd2\x7f\x01\x7b\x03\
\x79\x7c\x2a\xe9\xdd\xd1\xdb\x1b\x07\xb9\xf3\xbd\xa7\xb9\x3a\xb3\
\xe2\xc6\xe2\xc9\x74\x67\x5f\x67\xfb\x2f\x37\xb3\xfb\xff\x00\x62\
\x6d\x2c\xc7\x60\x66\x36\x96\xc4\xa4\xa8\xcc\xd5\x62\xf0\x78\x6c\
\x75\x46\x46\x49\xa4\xa6\xa1\xa4\x85\x92\x9e\x3f\x75\xee\xae\xf7\
\xfe\x80\xac\xfe\x56\x7f\xf3\xff\x00\x3e\x7f\x7f\xe8\xd3\xf8\xed\
\xff\x00\xdc\xad\xef\xdd\x7b\xaf\x98\x4f\xbf\x75\xee\xbe\xfe\x1e\
\xfd\xd7\xba\xf7\xbf\x75\xee\xbe\x01\xfe\xfd\xd7\xba\xf7\xbf\x75\
\xee\xb6\xfa\xff\x00\xa0\xd4\xff\x00\x9a\x67\xfc\xf8\x3f\x80\x3f\
\xfa\x2b\x3e\x44\xff\x00\xf7\x54\xfb\xf7\x5e\xeb\x50\x5f\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5f\x4f\x6f\xfa\x02\xb3\xf9\x59\xff\x00\xcf\
\xfc\xf9\xfd\xff\x00\xa3\x4f\xe3\xb7\xff\x00\x72\xb7\xbf\x75\xee\
\x8b\x07\xcd\xcf\xf8\x48\xbf\xf2\xdd\xf8\xd9\xf0\xc3\xe5\xdf\xc8\
\xbd\x8b\xdd\x9f\x37\xb2\xbb\xdb\xa0\xbe\x30\x77\xef\x75\x6c\xec\
\x5e\xec\xec\x8e\x87\xae\xda\xd9\x2d\xd3\xd5\x7d\x53\xbb\x37\xd6\
\xde\xa0\xdc\xb4\x58\x7f\x8d\x78\x2c\xb5\x66\xdf\xac\xcb\x60\xa1\
\x8e\xb2\x2a\x5a\xea\x3a\x99\x29\x99\xd6\x29\xe1\x72\xb2\x2f\xba\
\xf7\x5a\x53\x7f\x29\xff\x00\xfb\x7a\x67\xf2\xd4\xff\x00\xc5\xfe\
\xf8\x6f\xff\x00\xc1\x13\xd7\x3e\xfd\xd7\xba\xfb\x49\xfc\x84\xe9\
\x5d\xad\xf2\x4f\xa0\xfb\xc3\xe3\xa6\xfa\xaf\xdc\x18\xad\x93\xdf\
\xbd\x41\xd9\x7d\x2b\xbc\x72\x9b\x4e\xab\x1d\x43\xba\x71\xbb\x5b\
\xb5\x36\x5e\x6b\x62\xee\x1a\xfd\xb5\x5b\x98\xc5\x67\x71\x34\x7b\
\x82\x8f\x13\x9d\x9a\x4a\x39\x6a\xa8\x6b\x29\xa3\xa9\x54\x69\x60\
\x99\x03\x46\xde\xeb\xdd\x6a\x4b\xdb\x1f\xf0\x98\x1f\x80\xdf\xcb\
\x63\xab\x3b\x2f\xf9\x8b\x74\x67\x6e\xfc\xbf\xdd\x7d\xd9\xf0\x17\
\xaf\xf7\x97\xcd\x5e\x9d\xda\xfd\xb1\xbf\xba\x63\x3b\xd5\x9b\x93\
\xb4\xfe\x2c\x6d\xdc\x97\x79\xf5\xf6\x03\xb2\xf0\x9b\x3f\xa0\x36\
\x26\xed\xcc\x75\xfe\x63\x76\xec\x4a\x4a\x7c\xcd\x2e\x2f\x39\x86\
\xc8\xd4\x63\xa4\x9a\x3a\x6a\xea\x49\x99\x2a\x23\xf7\x5e\xeb\x5e\
\x3f\x90\x9f\xf0\xae\x8f\xe6\x45\xf2\x4f\xa0\xfb\xc3\xe3\xa6\xfa\
\xe9\x3f\x84\x38\xad\x93\xdf\xbd\x41\xd9\x7d\x2b\xbc\x72\x9b\x4f\
\xad\xfb\xe2\x87\x74\xe3\x76\xb7\x6a\x6c\xbc\xd6\xc5\xdc\x35\xfb\
\x6a\xb7\x31\xf2\x53\x3b\x89\xa3\xdc\x14\x78\x9c\xec\xd2\x51\xcb\
\x55\x43\x59\x4d\x1d\x4a\xa3\x4b\x04\xc8\x1a\x36\xf7\x5e\xeb\x5c\
\x3f\x8f\x7d\xd5\xba\x7e\x36\x77\xe7\x47\xfc\x8b\xd8\xb4\x1b\x7f\
\x2b\xbd\xba\x0b\xb7\xfa\xd3\xba\xb6\x76\x2f\x76\x52\xe4\x6b\xb6\
\xb6\x4b\x74\xf5\x5e\xf4\xc2\xef\xad\xbd\x41\xb9\x68\xb0\xf9\x5c\
\x16\x5a\xb3\x6f\xd6\x65\xb0\x50\xc7\x59\x15\x2d\x75\x1d\x4c\x94\
\xcc\xeb\x14\xf0\xb9\x59\x17\xdd\x7b\xad\xb6\xba\x9f\xfe\x14\xfd\
\xf3\xe7\xf9\x93\xf6\x9f\x5a\x7f\x2e\x9e\xf3\xea\x2f\x88\x1b\x53\
\xa4\xfe\x7d\x76\x06\xcd\xf8\x55\xdc\x5b\xa3\xa9\xf6\x0f\x73\xe0\
\xbb\x4f\x6d\xf5\x67\xca\x7d\xc5\x8d\xe8\xce\xc1\xcf\xf5\xa6\x6f\
\x78\x77\xfe\xfb\xda\x58\x7e\xc0\xc3\xed\x2d\xf7\x57\x51\x86\xaa\
\xca\x60\xf3\x38\xea\x7c\x8c\x70\xc9\x53\x43\x57\x0a\xbd\x3c\x9e\
\xeb\xdd\x6c\x39\xf1\xef\xfe\x12\x2f\xfc\xb7\x7e\x36\x77\xe7\x47\
\xfc\x8b\xd8\xbd\xd9\xf3\x7b\x2b\xbd\xba\x0b\xb7\xfa\xd3\xba\xb6\
\x76\x2f\x76\x76\x47\x43\xd7\x6d\x6c\x96\xe9\xea\xbd\xe9\x85\xdf\
\x5b\x7a\x83\x72\xd1\x61\xfe\x35\xe0\xb2\xd5\x9b\x7e\xb3\x2d\x82\
\x86\x3a\xc8\xa9\x6b\xa8\xea\x64\xa6\x67\x58\xa7\x85\xca\xc8\xbe\
\xeb\xdd\x5c\xef\xf3\x60\xff\x00\xb7\x59\xff\x00\x32\xbf\xfc\x50\
\x1f\x99\x1f\xfc\x0e\xdd\x8d\xef\xdd\x7b\xaf\x88\x6f\xbf\x75\xee\
\xbd\xef\xdd\x7b\xab\xfc\xff\x00\x84\xba\x7f\xdb\xf5\x7e\x0d\x7f\
\xe5\xcc\xff\x00\xf0\x1e\xfc\x82\xf7\xee\xbd\xd7\xd2\xdf\xf9\xcb\
\xfc\xd5\xed\x3f\xe5\xdf\xfc\xb6\xbe\x47\xfc\xc4\xe9\x5c\x07\x5f\
\xee\x8e\xcd\xe9\xff\x00\xf4\x41\xfd\xda\xc1\x76\x8e\x2b\x71\x66\
\xb6\x25\x77\xfa\x40\xef\x9e\xae\xea\xec\xcf\xf1\xdc\x66\xd3\xdd\
\x5b\x27\x70\x54\xfd\xb6\xdf\xde\xd5\x73\x52\xfd\xbe\x52\x97\x45\
\x64\x71\x3b\xf9\x23\x57\x8a\x4f\x75\xee\xb5\x84\xfe\x4d\x1f\xf0\
\xa7\xef\x9f\x3f\xcc\x43\xf9\x92\xfc\x70\xf8\x77\xdd\x5d\x45\xf1\
\x03\x6b\xf5\x97\x70\x7f\xa5\xff\x00\xef\x2e\x77\xab\xb6\x0f\x73\
\xe1\x77\xdd\x0f\xfa\x3f\xe8\x6e\xd1\xed\x1c\x37\xf0\x2c\x9e\xec\
\xef\xfd\xed\xb7\xe9\xbe\xe7\x70\x6c\x9a\x48\x6a\xbe\xe3\x17\x55\
\xae\x8e\x49\x51\x3c\x72\x32\x4b\x1f\xba\xf7\x57\x79\xff\x00\x0a\
\x8b\xff\x00\xb7\x15\x7c\xe5\xff\x00\xcb\x66\xff\x00\xe0\xc2\xf8\
\xfb\xef\xdd\x7b\xaf\x90\x5f\xbf\x75\xee\xac\xf7\xf9\x34\x7c\x2a\
\xea\xcf\xe6\x21\xfc\xc9\x7e\x38\x7c\x3b\xee\xac\xff\x00\x60\x6d\
\x7e\xb2\xee\x0f\xf4\xbf\xfd\xe5\xce\xf5\x76\x57\x6e\xe1\x77\xdd\
\x0f\xfa\x3f\xe8\x6e\xd1\xed\x1c\x37\xf0\x2c\x9e\xec\xda\xbb\xdb\
\x6f\xd3\x7d\xce\xe0\xd9\x34\x90\xd5\x7d\xc6\x2e\xab\x5d\x1c\x92\
\xa2\x78\xe4\x64\x96\x3f\x75\xee\xbe\x8f\x1f\x02\xff\x00\xe1\x30\
\x3f\x01\xbf\x97\x7f\xcb\x0e\xa9\xf9\x89\xd2\xbd\xbb\xf2\xff\x00\
\x74\x76\x6f\x4f\xff\x00\x7e\x7f\xbb\x58\x2e\xd1\xdf\xdd\x31\x9a\
\xd8\x95\xdf\xe9\x03\xad\xb7\x8f\x57\x66\x7f\x8e\xe3\x36\x9f\x40\
\x6c\x9d\xc1\x53\xf6\xdb\x7f\x7b\x55\xcd\x4b\xf6\xf9\x4a\x5d\x15\
\x91\xc4\xef\xe4\x8d\x5e\x29\x3d\xd7\xba\xb7\xdf\x9e\x9f\x0a\xba\
\xb3\xf9\x88\x7c\x4f\xed\x6f\x87\x7d\xd5\x9f\xec\x0d\xaf\xd6\x5d\
\xc1\xfd\xc6\xfe\xf2\xe7\x7a\xbb\x2b\xb7\x70\xbb\xee\x87\xfd\x1f\
\xf6\x4e\xce\xed\x1c\x37\xf0\x2c\x9e\xec\xda\xbb\xdb\x6f\xd3\x7d\
\xce\xe0\xd9\x34\x90\xd5\x7d\xc6\x2e\xab\x5d\x1c\x92\xa2\x78\xe4\
\x64\x96\x3f\x75\xee\xab\x87\xf9\x60\x7f\xc2\x7a\xfe\x18\x7f\x29\
\xbe\xfc\xdd\xdf\x22\xfe\x3a\x76\x6f\xc9\xfd\xe9\xbd\xb7\xa7\x50\
\x67\xfa\x57\x29\x8b\xee\xad\xe9\xd5\x3b\x8f\x6b\x53\xed\x6d\xc7\
\xbd\x36\x06\xfa\xad\xaf\xa0\xa2\xd8\xbd\x2b\xd7\x19\x68\xb7\x04\
\x59\x6e\xb8\xa1\x8e\x29\x64\xae\x96\x99\x69\xa5\x9d\x5a\x06\x76\
\x8e\x48\xbd\xd7\xba\xbd\xd1\xf5\x1f\xeb\x8f\xf7\xbf\x7e\xeb\xdd\
\x67\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7f\xff\xd4\
\xdf\xe3\xdf\xba\xf7\x5c\x5f\xf4\xff\x00\xac\x7f\xe3\x5f\xf1\x3e\
\xfd\xd7\xba\xc3\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xe4\x17\xff\x00\
\x0a\x8b\xff\x00\xb7\xea\xfc\xe5\xff\x00\xcb\x66\xff\x00\xe0\x3d\
\xf8\xfb\xef\xdd\x7b\xad\x96\xfe\x11\xff\x00\xc2\x45\xff\x00\x96\
\xef\xc9\x3f\x86\x1f\x11\x3e\x45\xef\xae\xec\xf9\xbd\x8a\xde\xdd\
\xfb\xf1\x83\xa0\xbb\xab\x78\xe2\xf6\x9f\x64\x74\x3d\x0e\xd6\xc6\
\xee\x9e\xd4\xea\x9d\xa7\xbe\xb7\x0d\x06\xda\xa2\xcc\x7c\x6b\xce\
\xe5\xa8\xf6\xfd\x1e\x5b\x3b\x34\x74\x71\x55\x57\x56\x54\xc7\x4c\
\xa8\xb2\xcf\x33\x86\x91\xbd\xd7\xba\x33\xff\x00\xf4\x05\x67\xf2\
\xb3\xff\x00\x9f\xf9\xf3\xfb\xff\x00\x46\x9f\xc7\x6f\xfe\xe5\x6f\
\x7e\xeb\xdd\x7b\xfe\x80\xac\xfe\x56\x7f\xf3\xff\x00\x3e\x7f\x7f\
\xe8\xd3\xf8\xed\xff\x00\xdc\xad\xef\xdd\x7b\xaf\x7f\xd0\x15\x9f\
\xca\xcf\xfe\x7f\xe7\xcf\xef\xfd\x1a\x7f\x1d\xbf\xfb\x95\xbd\xfb\
\xaf\x75\xef\xfa\x02\xb3\xf9\x59\xff\x00\xcf\xfc\xf9\xfd\xff\x00\
\xa3\x4f\xe3\xb7\xff\x00\x72\xb7\xbf\x75\xee\xbe\x75\x1f\x37\x3a\
\x57\x6b\x7c\x6c\xf9\x9f\xf2\xef\xe3\xa6\xc5\xaf\xdc\x19\x5d\x93\
\xd0\x5f\x27\xfb\xf7\xa5\x76\x76\x53\x76\x55\x63\xab\xb7\x4e\x4b\
\x6b\x75\x5f\x6b\x6e\xcd\x8b\xb7\xab\xf7\x2d\x6e\x1f\x15\x82\xc4\
\xd6\x6e\x0a\xcc\x4e\x0a\x19\x2b\x25\xa5\xa1\xa3\xa6\x92\xa5\x9d\
\xa2\x82\x14\x2b\x1a\xfb\xaf\x75\xf6\x53\xfe\x53\xff\x00\xf6\xeb\
\x3f\xe5\xa9\xff\x00\x8a\x03\xf0\xdf\xff\x00\x81\xdb\xae\x7d\xfb\
\xaf\x74\x7f\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7c\x43\x7f\x9b\x07\
\xfd\xbd\x33\xf9\x95\xff\x00\xe2\xff\x00\x7c\xc8\xff\x00\xe0\x89\
\xec\x6f\x7e\xeb\xdd\x7d\xbc\xbd\xfb\xaf\x75\xa8\x2f\xfd\x01\x59\
\xfc\xac\xff\x00\xe7\xfe\x7c\xfe\xff\x00\xd1\xa7\xf1\xdb\xff\x00\
\xb9\x5b\xdf\xba\xf7\x54\x07\xff\x00\x41\xa9\xff\x00\x34\xcf\xf9\
\xf0\x7f\x00\x7f\xf4\x56\x7c\x89\xff\x00\xee\xa9\xf7\xee\xbd\xd7\
\xd3\xdb\xdf\xba\xf7\x5f\x00\xff\x00\x7e\xeb\xdd\x7d\x3d\xbf\xe8\
\x0a\xcf\xe5\x67\xff\x00\x3f\xf3\xe7\xf7\xfe\x8d\x3f\x8e\xdf\xfd\
\xca\xde\xfd\xd7\xba\xf7\xfd\x01\x59\xfc\xac\xff\x00\xe7\xfe\x7c\
\xfe\xff\x00\xd1\xa7\xf1\xdb\xff\x00\xb9\x5b\xdf\xba\xf7\x5f\x30\
\x9f\x7e\xeb\xdd\x7d\x3d\xbf\xe8\x0a\xcf\xe5\x67\xff\x00\x3f\xf3\
\xe7\xf7\xfe\x8d\x3f\x8e\xdf\xfd\xca\xde\xfd\xd7\xba\xa0\x3f\xfa\
\x0d\x4f\xf9\xa6\x7f\xcf\x83\xf8\x03\xff\x00\xa2\xb3\xe4\x4f\xff\
\x00\x75\x4f\xbf\x75\xee\x97\xfd\x4f\xff\x00\x0a\x7e\xf9\xf3\xfc\
\xc9\xfb\x4f\xad\x3f\x97\x4f\x79\xf5\x17\xc4\x0d\xa9\xd2\x7f\x3e\
\xbb\x03\x66\xfc\x2a\xee\x2d\xd1\xd4\xfb\x07\xb9\xf0\x5d\xa7\xb6\
\xfa\xb3\xe5\x3e\xe2\xc6\xf4\x67\x60\xe7\xfa\xd3\x37\xbc\x3b\xff\
\x00\x7d\xed\x2c\x3f\x60\x61\xf6\x96\xfb\xab\xa8\xc3\x55\x65\x30\
\x79\x9c\x75\x3e\x46\x38\x64\xa9\xa1\xab\x85\x5e\x9e\x4f\x75\xee\
\xb6\x1c\xf8\xf7\xff\x00\x09\x17\xfe\x5b\xbf\x1b\x3b\xf3\xa3\xfe\
\x45\xec\x5e\xec\xf9\xbd\x95\xde\xdd\x05\xdb\xfd\x69\xdd\x5b\x3b\
\x17\xbb\x3b\x23\xa1\xeb\xb6\xb6\x4b\x74\xf5\x5e\xf4\xc2\xef\xad\
\xbd\x41\xb9\x68\xb0\xff\x00\x1a\xf0\x59\x6a\xcd\xbf\x59\x96\xc1\
\x43\x1d\x64\x54\xb5\xd4\x75\x32\x53\x33\xac\x53\xc2\xe5\x64\x5f\
\x75\xee\xaf\xf3\xe6\xe7\x75\x6e\x9f\x8d\x9f\x0c\x3e\x5d\xfc\x8b\
\xd8\xb4\x1b\x7f\x2b\xbd\xba\x0b\xe3\x07\x7e\xf7\x56\xce\xc5\xee\
\xca\x5c\x8d\x76\xd6\xc9\x6e\x9e\xab\xea\x9d\xd9\xbe\xb6\xf5\x06\
\xe5\xa2\xc3\xe5\x70\x59\x6a\xcd\xbf\x59\x96\xc1\x43\x1d\x64\x54\
\xb5\xd4\x75\x32\x53\x33\xac\x53\xc2\xe5\x64\x5f\x75\xee\xbe\x69\
\x3f\x21\x3f\xe1\x5d\x1f\xcc\x8b\xe4\x9f\x41\xf7\x87\xc7\x4d\xf5\
\xd2\x7f\x08\x71\x5b\x27\xbf\x7a\x83\xb2\xfa\x57\x78\xe5\x36\x9f\
\x5b\xf7\xc5\x0e\xe9\xc6\xed\x6e\xd4\xd9\x79\xad\x8b\xb8\x6b\xf6\
\xd5\x6e\x63\xe4\xa6\x77\x13\x47\xb8\x28\xf1\x39\xd9\xa4\xa3\x96\
\xaa\x86\xb2\x9a\x3a\x95\x46\x96\x09\x90\x34\x6d\xee\xbd\xd5\x01\
\xfc\x23\xe9\x5d\xad\xf2\x4f\xe6\x7f\xc4\x4f\x8e\x9b\xea\xbf\x70\
\x62\xb6\x4f\x7e\xfc\x9f\xe8\x2e\x95\xde\x39\x4d\xa7\x55\x8e\xa1\
\xdd\x38\xdd\xad\xda\x9d\xad\xb4\xf6\x2e\xe1\xaf\xdb\x55\xb9\x8c\
\x56\x77\x13\x47\xb8\x28\xf1\x39\xd9\xa4\xa3\x96\xaa\x86\xb2\x9a\
\x3a\x95\x46\x96\x09\x90\x34\x6d\xee\xbd\xd7\xd1\x5f\xfe\x80\xac\
\xfe\x56\x7f\xf3\xff\x00\x3e\x7f\x7f\xe8\xd3\xf8\xed\xff\x00\xdc\
\xad\xef\xdd\x7b\xa4\x07\x6c\x7f\xc2\x60\x7e\x03\x7f\x2d\x8e\xac\
\xec\xbf\xe6\x2d\xd1\x9d\xbb\xf2\xff\x00\x75\xf7\x67\xc0\x5e\xbf\
\xde\x5f\x35\x7a\x77\x6b\xf6\xc6\xfe\xe9\x8c\xef\x56\x6e\x4e\xd3\
\xf8\xb1\xb7\x72\x5d\xe7\xd7\xd8\x0e\xcb\xc2\x6c\xfe\x80\xd8\x9b\
\xb7\x31\xd7\xf9\x8d\xdb\xb1\x29\x29\xf3\x34\xb8\xbc\xe6\x1b\x23\
\x51\x8e\x92\x68\xe9\xab\xa9\x26\x64\xa8\x8f\xdd\x7b\xaa\xe1\xf8\
\x47\xff\x00\x0a\xe8\xfe\x64\x5f\x24\xfe\x67\xfc\x44\xf8\xe9\xbe\
\xba\x4f\xe1\x0e\x2b\x64\xf7\xef\xc9\xfe\x82\xe9\x5d\xe3\x94\xda\
\x7d\x6f\xdf\x14\x3b\xa7\x1b\xb5\xbb\x53\xb5\xb6\x9e\xc5\xdc\x35\
\xfb\x6a\xb7\x31\xf2\x53\x3b\x89\xa3\xdc\x14\x78\x9c\xec\xd2\x51\
\xcb\x55\x43\x59\x4d\x1d\x4a\xa3\x4b\x04\xc8\x1a\x36\xf7\x5e\xeb\
\x7f\x8f\x90\x9d\x2b\xb5\xbe\x49\xf4\x1f\x78\x7c\x74\xdf\x55\xfb\
\x83\x15\xb2\x7b\xf7\xa8\x3b\x2f\xa5\x77\x8e\x53\x69\xd5\x63\xa8\
\x77\x4e\x37\x6b\x76\xa6\xcb\xcd\x6c\x5d\xc3\x5f\xb6\xab\x73\x18\
\xac\xee\x26\x8f\x70\x51\xe2\x73\xb3\x49\x47\x2d\x55\x0d\x65\x34\
\x75\x2a\x8d\x2c\x13\x20\x68\xdb\xdd\x7b\xad\x09\xbf\x9c\xbf\xfc\
\x26\x07\xe0\x37\xf2\xef\xfe\x5b\x5f\x23\xfe\x62\x74\xaf\x6e\xfc\
\xbf\xdd\x1d\x9b\xd3\xff\x00\xe8\x83\xfb\xb5\x82\xed\x1d\xfd\xd3\
\x19\xad\x89\x5d\xfe\x90\x3b\xe7\xab\xba\xbb\x33\xfc\x77\x19\xb4\
\xfa\x03\x64\xee\x0a\x9f\xb6\xdb\xfb\xda\xae\x6a\x5f\xb7\xca\x52\
\xe8\xac\x8e\x27\x7f\x24\x6a\xf1\x49\xee\xbd\xd6\x88\xfe\xfd\xd7\
\xba\xbf\xcf\xf8\x4b\xa7\xfd\xbf\x57\xe0\xd7\xfe\x5c\xcf\xff\x00\
\x01\xef\xc8\x2f\x7e\xeb\xdd\x7d\x4d\xbe\x7a\x7c\x2a\xea\xcf\xe6\
\x21\xf1\x3f\xb5\xbe\x1d\xf7\x56\x7f\xb0\x36\xbf\x59\x77\x07\xf7\
\x1b\xfb\xcb\x9d\xea\xec\xae\xdd\xc2\xef\xba\x1f\xf4\x7f\xd9\x3b\
\x3b\xb4\x70\xdf\xc0\xb2\x7b\xb3\x6a\xef\x6d\xbf\x4d\xf7\x3b\x83\
\x64\xd2\x43\x55\xf7\x18\xba\xad\x74\x72\x4a\x89\xe3\x91\x92\x58\
\xfd\xd7\xba\xa8\x2f\x81\x7f\xf0\x98\x1f\x80\xdf\xcb\xbf\xe5\x87\
\x54\xfc\xc4\xe9\x5e\xdd\xf9\x7f\xba\x3b\x37\xa7\xff\x00\xbf\x3f\
\xdd\xac\x17\x68\xef\xee\x98\xcd\x6c\x4a\xef\xf4\x81\xd6\xdb\xc7\
\xab\xb3\x3f\xc7\x71\x9b\x4f\xa0\x36\x4e\xe0\xa9\xfb\x6d\xbf\xbd\
\xaa\xe6\xa5\xfb\x7c\xa5\x2e\x8a\xc8\xe2\x77\xf2\x46\xaf\x14\x9e\
\xeb\xdd\x2f\xff\x00\xe1\x51\x7f\xf6\xe2\xaf\x9c\xbf\xf9\x6c\xdf\
\xfc\x18\x5f\x1f\x7d\xfb\xaf\x75\xf2\x0b\xf7\xee\xbd\xd5\xfe\x7f\
\xc2\x5d\x3f\xed\xfa\xbf\x06\xbf\xf2\xe6\x7f\xf8\x0f\x7e\x41\x7b\
\xf7\x5e\xeb\xeb\xe9\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\
\xba\xe4\xbf\xa8\x7f\xbe\xfc\x7b\xf7\x5e\xeb\x37\xbf\x75\xee\xbd\
\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xff\xd5\xdf\xe3\xdf\xba\xf7\x5c\
\x5f\xf4\x9f\xf6\x1f\xef\x7e\xfd\xd7\xba\xc3\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xeb\xe4\x17\xff\x00\x0a\x8b\xff\x00\xb7\xea\xfc\xe5\xff\
\x00\xcb\x66\xff\x00\xe0\x3d\xf8\xfb\xef\xdd\x7b\xaf\xa7\xb7\xf2\
\x9f\xff\x00\xb7\x59\xff\x00\x2d\x4f\xfc\x50\x1f\x86\xff\x00\xfc\
\x0e\xdd\x73\xef\xdd\x7b\xad\x29\xbe\x6e\x7f\xc2\xba\x3f\x99\x17\
\xc6\xcf\x99\xff\x00\x2e\xfe\x3a\x6c\x5e\x93\xf8\x43\x95\xd9\x3d\
\x05\xf2\x7f\xbf\x7a\x57\x67\x65\x37\x67\x5b\xf7\xc5\x76\xe9\xc9\
\x6d\x6e\xab\xed\x6d\xd9\xb1\x76\xf5\x7e\xe5\xad\xc3\xfc\x94\xc1\
\x62\x6b\x37\x05\x66\x27\x05\x0c\x95\x92\xd2\xd0\xd1\xd3\x49\x52\
\xce\xd1\x41\x0a\x15\x8d\x7d\xd7\xba\x2c\x1f\xf4\x1a\x9f\xf3\x4c\
\xff\x00\x9f\x07\xf0\x07\xff\x00\x45\x67\xc8\x9f\xfe\xea\x9f\x7e\
\xeb\xdd\x7b\xfe\x83\x53\xfe\x69\x9f\xf3\xe0\xfe\x00\xff\x00\xe8\
\xac\xf9\x13\xff\x00\xdd\x53\xef\xdd\x7b\xaf\xa2\xbf\xc2\x3e\xea\
\xdd\x3f\x24\xfe\x18\x7c\x44\xf9\x17\xbe\xa8\x36\xfe\x2b\x7b\x77\
\xef\xc6\x0e\x82\xee\xad\xe3\x8b\xda\x74\xb9\x1a\x1d\xad\x8d\xdd\
\x3d\xa9\xd5\x3b\x4f\x7d\x6e\x1a\x0d\xb5\x45\x98\xca\xe7\x72\xd4\
\x7b\x7e\x8f\x2d\x9d\x9a\x3a\x38\xaa\xab\xab\x2a\x63\xa6\x54\x59\
\x67\x99\xc3\x48\xde\xeb\xdd\x7c\x6b\x3f\x9b\x07\xfd\xbd\x33\xf9\
\x95\xff\x00\xe2\xff\x00\x7c\xc8\xff\x00\xe0\x89\xec\x6f\x7e\xeb\
\xdd\x7d\x7d\x3f\x94\xff\x00\xfd\xba\xcf\xf9\x6a\x7f\xe2\x80\xfc\
\x37\xff\x00\xe0\x76\xeb\x9f\x7e\xeb\xdd\x69\x4d\xf3\x73\xfe\x15\
\xd1\xfc\xc8\xbe\x36\x7c\xcf\xf9\x77\xf1\xd3\x62\xf4\x9f\xc2\x1c\
\xae\xc9\xe8\x2f\x93\xfd\xfb\xd2\xbb\x3b\x29\xbb\x3a\xdf\xbe\x2b\
\xb7\x4e\x4b\x6b\x75\x5f\x6b\x6e\xcd\x8b\xb7\xab\xf7\x2d\x6e\x1f\
\xe4\xa6\x0b\x13\x59\xb8\x2b\x31\x38\x28\x64\xac\x96\x96\x86\x8e\
\x9a\x4a\x96\x76\x8a\x08\x50\xac\x6b\xee\xbd\xd6\xf7\x1f\x08\xfb\
\xab\x74\xfc\x93\xf8\x61\xf1\x13\xe4\x5e\xfa\xa0\xdb\xf8\xad\xed\
\xdf\xbf\x18\x3a\x0b\xba\xb7\x8e\x2f\x69\xd2\xe4\x68\x76\xb6\x37\
\x74\xf6\xa7\x54\xed\x3d\xf5\xb8\x68\x36\xd5\x16\x63\x2b\x9d\xcb\
\x51\xed\xfa\x3c\xb6\x76\x68\xe8\xe2\xaa\xae\xac\xa9\x8e\x99\x51\
\x65\x9e\x67\x0d\x23\x7b\xaf\x75\xf1\xac\xfe\x6c\x1f\xf6\xf4\xcf\
\xe6\x57\xff\x00\x8b\xfd\xf3\x23\xff\x00\x82\x27\xb1\xbd\xfb\xaf\
\x75\xf6\xf2\xf7\xee\xbd\xd7\xcc\x27\xfe\x83\x53\xfe\x69\x9f\xf3\
\xe0\xfe\x00\xff\x00\xe8\xac\xf9\x13\xff\x00\xdd\x53\xef\xdd\x7b\
\xad\x41\x7d\xfb\xaf\x75\xb7\xd7\xfd\x06\xa7\xfc\xd3\x3f\xe7\xc1\
\xfc\x01\xff\x00\xd1\x59\xf2\x27\xff\x00\xba\xa7\xdf\xba\xf7\x5a\
\x82\xfb\xf7\x5e\xeb\x6f\xaf\xfa\x0d\x4f\xf9\xa6\x7f\xcf\x83\xf8\
\x03\xff\x00\xa2\xb3\xe4\x4f\xff\x00\x75\x4f\xbf\x75\xee\xbe\x9e\
\xde\xfd\xd7\xba\xf8\x07\xfb\xf7\x5e\xeb\xef\xe1\xef\xdd\x7b\xaf\
\x80\x7f\xbf\x75\xee\x85\xff\x00\x8f\x7d\xd5\xba\x7e\x36\x77\xe7\
\x47\xfc\x8b\xd8\xb4\x1b\x7f\x2b\xbd\xba\x0b\xb7\xfa\xd3\xba\xb6\
\x76\x2f\x76\x52\xe4\x6b\xb6\xb6\x4b\x74\xf5\x5e\xf4\xc2\xef\xad\
\xbd\x41\xb9\x68\xb0\xf9\x5c\x16\x5a\xb3\x6f\xd6\x65\xb0\x50\xc7\
\x59\x15\x2d\x75\x1d\x4c\x94\xcc\xeb\x14\xf0\xb9\x59\x17\xdd\x7b\
\xad\xce\xbe\x11\xff\x00\xc2\xba\x3f\x99\x17\xc9\x3f\x99\xff\x00\
\x11\x3e\x3a\x6f\xae\x93\xf8\x43\x8a\xd9\x3d\xfb\xf2\x7f\xa0\xba\
\x57\x78\xe5\x36\x9f\x5b\xf7\xc5\x0e\xe9\xc6\xed\x6e\xd4\xed\x6d\
\xa7\xb1\x77\x0d\x7e\xda\xad\xcc\x7c\x94\xce\xe2\x68\xf7\x05\x1e\
\x27\x3b\x34\x94\x72\xd5\x50\xd6\x53\x47\x52\xa8\xd2\xc1\x32\x06\
\x8d\xbd\xd7\xba\xdf\xe3\xe4\x27\x4a\xed\x6f\x92\x7d\x07\xde\x1f\
\x1d\x37\xd5\x7e\xe0\xc5\x6c\x9e\xfd\xea\x0e\xcb\xe9\x5d\xe3\x94\
\xda\x75\x58\xea\x1d\xd3\x8d\xda\xdd\xa9\xb2\xf3\x5b\x17\x70\xd7\
\xed\xaa\xdc\xc6\x2b\x3b\x89\xa3\xdc\x14\x78\x9c\xec\xd2\x51\xcb\
\x55\x43\x59\x4d\x1d\x4a\xa3\x4b\x04\xc8\x1a\x36\xf7\x5e\xeb\x4c\
\x5f\x9b\x9f\xf0\x91\x7f\xe5\xbb\xf1\xb3\xe1\x87\xcb\xbf\x91\x7b\
\x17\xbb\x3e\x6f\x65\x77\xb7\x41\x7c\x60\xef\xde\xea\xd9\xd8\xbd\
\xd9\xd9\x1d\x0f\x5d\xb5\xb2\x5b\xa7\xaa\xfa\xa7\x76\x6f\xad\xbd\
\x41\xb9\x68\xb0\xff\x00\x1a\xf0\x59\x6a\xcd\xbf\x59\x96\xc1\x43\
\x1d\x64\x54\xb5\xd4\x75\x32\x53\x33\xac\x53\xc2\xe5\x64\x5f\x75\
\xee\xb4\x07\xf8\xf7\xdd\x5b\xa7\xe3\x67\x7e\x74\x7f\xc8\xbd\x8b\
\x41\xb7\xf2\xbb\xdb\xa0\xbb\x7f\xad\x3b\xab\x67\x62\xf7\x65\x2e\
\x46\xbb\x6b\x64\xb7\x4f\x55\xef\x4c\x2e\xfa\xdb\xd4\x1b\x96\x8b\
\x0f\x95\xc1\x65\xab\x36\xfd\x66\x5b\x05\x0c\x75\x91\x52\xd7\x51\
\xd4\xc9\x4c\xce\xb1\x4f\x0b\x95\x91\x7d\xd7\xba\xda\x6f\xfe\x83\
\x53\xfe\x69\x9f\xf3\xe0\xfe\x00\xff\x00\xe8\xac\xf9\x13\xff\x00\
\xdd\x53\xef\xdd\x7b\xa0\x83\xe4\x27\xfc\x2b\xa3\xf9\x91\x7c\x93\
\xe8\x3e\xf0\xf8\xe9\xbe\xba\x4f\xe1\x0e\x2b\x64\xf7\xef\x50\x76\
\x5f\x4a\xef\x1c\xa6\xd3\xeb\x7e\xf8\xa1\xdd\x38\xdd\xad\xda\x9b\
\x2f\x35\xb1\x77\x0d\x7e\xda\xad\xcc\x7c\x94\xce\xe2\x68\xf7\x05\
\x1e\x27\x3b\x34\x94\x72\xd5\x50\xd6\x53\x47\x52\xa8\xd2\xc1\x32\
\x06\x8d\xbd\xd7\xba\xa6\x2f\xe5\x3f\xff\x00\x6f\x4c\xfe\x5a\x9f\
\xf8\xbf\xdf\x0d\xff\x00\xf8\x22\x7a\xe7\xdf\xba\xf7\x5f\x65\x3f\
\x9b\x9d\xd5\xba\x7e\x36\x7c\x30\xf9\x77\xf2\x2f\x62\xd0\x6d\xfc\
\xae\xf6\xe8\x2f\x8c\x1d\xfb\xdd\x5b\x3b\x17\xbb\x29\x72\x35\xdb\
\x5b\x25\xba\x7a\xaf\xaa\x77\x66\xfa\xdb\xd4\x1b\x96\x8b\x0f\x95\
\xc1\x65\xab\x36\xfd\x66\x5b\x05\x0c\x75\x91\x52\xd7\x51\xd4\xc9\
\x4c\xce\xb1\x4f\x0b\x95\x91\x7d\xd7\xba\xd0\x9f\xe2\xe7\xf3\xa9\
\xf9\x4d\xff\x00\x0a\x21\xef\x5d\x8d\xfc\x9d\xbe\x6a\xec\x1e\x80\
\xeb\x0f\x8c\xdf\x2f\xff\x00\xbc\xdf\xe9\x2f\x7c\xfc\x5c\xda\xdd\
\x8b\xb2\xbb\xd7\x07\xfe\xcb\xfe\xce\xdc\x1f\x28\xf6\x6f\xf7\x1b\
\x73\x76\xc7\x6a\x77\x67\x5f\xe3\x3f\x89\xef\xfe\x92\xc5\x51\xe4\
\xfe\xff\x00\x6c\x64\xfc\xd8\x7a\x8a\xb8\xa0\xfb\x7a\x99\x21\xab\
\x83\xdd\x7b\xa5\xff\x00\xf3\x97\xff\x00\x84\xc0\xfc\x06\xfe\x5d\
\xff\x00\xcb\x6b\xe4\x7f\xcc\x4e\x95\xed\xdf\x97\xfb\xa3\xb3\x7a\
\x7f\xfd\x10\x7f\x76\xb0\x5d\xa3\xbf\xba\x63\x35\xb1\x2b\xbf\xd2\
\x07\x7c\xf5\x77\x57\x66\x7f\x8e\xe3\x36\x9f\x40\x6c\x9d\xc1\x53\
\xf6\xdb\x7f\x7b\x55\xcd\x4b\xf6\xf9\x4a\x5d\x15\x91\xc4\xef\xe4\
\x8d\x5e\x29\x3d\xd7\xba\xd4\x17\xe0\x5f\xcd\x5e\xd3\xfe\x5d\xff\
\x00\x2c\x3a\xa7\xe6\x27\x4a\xe0\x3a\xff\x00\x74\x76\x6f\x4f\xff\
\x00\x7e\x7f\xbb\x58\x2e\xd1\xc5\x6e\x2c\xd6\xc4\xae\xff\x00\x48\
\x1d\x6d\xbc\x7a\xbb\x33\xfc\x77\x19\xb4\xf7\x56\xc9\xdc\x15\x3f\
\x6d\xb7\xf7\xb5\x5c\xd4\xbf\x6f\x94\xa5\xd1\x59\x1c\x4e\xfe\x48\
\xd5\xe2\x93\xdd\x7b\xad\x8f\x3f\xe8\x35\x3f\xe6\x99\xff\x00\x3e\
\x0f\xe0\x0f\xfe\x8a\xcf\x91\x3f\xfd\xd5\x3e\xfd\xd7\xba\xf7\xfd\
\x06\xa7\xfc\xd3\x3f\xe7\xc1\xfc\x01\xff\x00\xd1\x59\xf2\x27\xff\
\x00\xba\xa7\xdf\xba\xf7\x45\x03\xe7\xa7\xfc\x29\xfb\xe7\xcf\xf3\
\x10\xf8\x9f\xda\xdf\x0e\xfb\xab\xa8\xbe\x20\x6d\x7e\xb2\xee\x0f\
\xee\x37\xf7\x97\x3b\xd5\xdb\x07\xb9\xf0\xbb\xee\x87\xfd\x1f\xf6\
\x4e\xce\xed\x1c\x37\xf0\x2c\x9e\xec\xef\xfd\xed\xb7\xe9\xbe\xe7\
\x70\x6c\x9a\x48\x6a\xbe\xe3\x17\x55\xae\x8e\x49\x51\x3c\x72\x32\
\x4b\x1f\xba\xf7\x44\x07\xf9\x34\x7c\x2a\xea\xcf\xe6\x21\xfc\xc9\
\x7e\x38\x7c\x3b\xee\xac\xff\x00\x60\x6d\x7e\xb2\xee\x0f\xf4\xbf\
\xfd\xe5\xce\xf5\x76\x57\x6e\xe1\x77\xdd\x0f\xfa\x3f\xe8\x6e\xd1\
\xed\x1c\x37\xf0\x2c\x9e\xec\xda\xbb\xdb\x6f\xd3\x7d\xce\xe0\xd9\
\x34\x90\xd5\x7d\xc6\x2e\xab\x5d\x1c\x92\xa2\x78\xe4\x64\x96\x3f\
\x75\xee\xb7\x3a\xf9\x47\xfc\x95\xbe\x2c\xff\x00\xc2\x77\xba\x2b\
\x7c\xff\x00\x38\x9f\x85\x5b\xfb\xbf\xfb\x3f\xe4\xcf\xc4\x0f\xee\
\xcf\xfa\x34\xd8\xdf\x28\xf7\x4f\x5d\x6f\x5e\x8a\xce\x7f\xb3\x01\
\xbc\x76\xff\x00\xc5\xcd\xe5\xfd\xf9\xdb\x3d\x4f\xd5\x7d\x27\xd8\
\x19\x3f\xe1\x9b\x03\xbb\x72\xb5\x98\xcf\xb0\xdc\xf8\xcf\x0e\x62\
\x9e\x92\x59\xfe\xe2\x9a\x39\xa9\x27\xf7\x5e\xea\xa0\xbf\xe8\x35\
\x3f\xe6\x99\xff\x00\x3e\x0f\xe0\x0f\xfe\x8a\xcf\x91\x3f\xfd\xd5\
\x3e\xfd\xd7\xba\xf7\xfd\x06\xa7\xfc\xd3\x3f\xe7\xc1\xfc\x01\xff\
\x00\xd1\x59\xf2\x27\xff\x00\xba\xa7\xdf\xba\xf7\x57\xb9\xff\x00\
\x09\xeb\xff\x00\x85\x0a\x7c\xcf\xfe\x6c\x9f\x33\xfb\x37\xe3\xa7\
\xc8\xbe\xb2\xf8\xc1\xb2\xf6\x4e\xcb\xf8\xc1\xbd\x3b\xab\x17\x94\
\xe9\x5d\x97\xda\xdb\x73\x74\xd4\x6e\x9d\xb9\xda\xdd\x2b\xb1\x68\
\xa8\x2b\xeb\x77\xd7\x75\x76\x3e\x26\x5d\xbf\x2e\x27\xb1\xeb\xa4\
\x96\x28\xe8\x62\xa9\x6a\x98\xa0\x65\x9d\x51\x64\x8e\x5f\x75\xee\
\xb7\x1b\x1f\x51\xfe\xb8\xff\x00\x7b\xf7\xee\xbd\xd6\x7f\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\xd6\xdf\xe3\xdf\xba\
\xf7\x5c\x1f\xe8\x07\xf8\xff\x00\xbd\x7f\xc8\xfd\xfb\xaf\x75\x8b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xc8\x2f\xfe\x15\x17\xff\x00\x6f\
\xd5\xf9\xcb\xff\x00\x96\xcd\xff\x00\xc0\x7b\xf1\xf7\xdf\xba\xf7\
\x5f\x4f\x6f\xe5\x3f\xff\x00\x6e\xb3\xfe\x5a\x9f\xf8\xa0\x3f\x0d\
\xff\x00\xf8\x1d\xba\xe7\xdf\xba\xf7\x5f\x20\xbf\xe6\xc1\xff\x00\
\x6f\x4c\xfe\x65\x7f\xf8\xbf\xdf\x32\x3f\xf8\x22\x7b\x1b\xdf\xba\
\xf7\x44\x07\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xdb\xcb\xf9\x4f\xff\
\x00\xdb\xac\xff\x00\x96\xa7\xfe\x28\x0f\xc3\x7f\xfe\x07\x6e\xb9\
\xf7\xee\xbd\xd7\xc8\x2f\xf9\xb0\x7f\xdb\xd3\x3f\x99\x5f\xfe\x2f\
\xf7\xcc\x8f\xfe\x08\x9e\xc6\xf7\xee\xbd\xd7\xd7\xd3\xf9\x4f\xff\
\x00\xdb\xac\xff\x00\x96\xa7\xfe\x28\x0f\xc3\x7f\xfe\x07\x6e\xb9\
\xf7\xee\xbd\xd7\xc8\x2f\xf9\xb0\x7f\xdb\xd3\x3f\x99\x5f\xfe\x2f\
\xf7\xcc\x8f\xfe\x08\x9e\xc6\xf7\xee\xbd\xd5\xce\xfc\x7b\xff\x00\
\x85\x74\x7f\x32\x2f\x8d\x9d\x07\xd1\xff\x00\x1d\x36\x2f\x49\xfc\
\x21\xca\xec\x9e\x82\xea\x0e\xb4\xe9\x5d\x9d\x94\xdd\x9d\x6f\xdf\
\x15\xdb\xa7\x25\xb5\xba\xaf\x65\xe1\x76\x2e\xde\xaf\xdc\xb5\xb8\
\x7f\x92\x98\x2c\x4d\x66\xe0\xac\xc4\xe0\xa1\x92\xb2\x5a\x5a\x1a\
\x3a\x69\x2a\x59\xda\x28\x21\x42\xb1\xaf\xba\xf7\x5a\xe1\xfc\x84\
\xee\xad\xd3\xf2\x4f\xbf\x3b\xc3\xe4\x5e\xfa\xa0\xdb\xf8\xad\xed\
\xdf\xbd\xbf\xd9\x7d\xd5\xbc\x71\x7b\x4e\x97\x23\x43\xb5\xb1\xbb\
\xa7\xb5\x37\xa6\x6b\x7d\x6e\x1a\x0d\xb5\x45\x98\xca\xe7\x72\xd4\
\x7b\x7e\x8f\x2d\x9d\x9a\x3a\x38\xaa\xab\xab\x2a\x63\xa6\x54\x59\
\x67\x99\xc3\x48\xde\xeb\xdd\x6d\x37\xff\x00\x41\xa9\xff\x00\x34\
\xcf\xf9\xf0\x7f\x00\x7f\xf4\x56\x7c\x89\xff\x00\xee\xa9\xf7\xee\
\xbd\xd5\xfe\x7f\xd0\x15\x9f\xca\xcf\xfe\x7f\xe7\xcf\xef\xfd\x1a\
\x7f\x1d\xbf\xfb\x95\xbd\xfb\xaf\x75\xef\xfa\x02\xb3\xf9\x59\xff\
\x00\xcf\xfc\xf9\xfd\xff\x00\xa3\x4f\xe3\xb7\xff\x00\x72\xb7\xbf\
\x75\xee\xbe\x61\x3e\xfd\xd7\xba\xfa\x7b\x7f\xd0\x15\x9f\xca\xcf\
\xfe\x7f\xe7\xcf\xef\xfd\x1a\x7f\x1d\xbf\xfb\x95\xbd\xfb\xaf\x75\
\xef\xfa\x02\xb3\xf9\x59\xff\x00\xcf\xfc\xf9\xfd\xff\x00\xa3\x4f\
\xe3\xb7\xff\x00\x72\xb7\xbf\x75\xee\xb6\xfa\xf7\xee\xbd\xd6\xa0\
\xbf\xf4\x05\x67\xf2\xb3\xff\x00\x9f\xf9\xf3\xfb\xff\x00\x46\x9f\
\xc7\x6f\xfe\xe5\x6f\x7e\xeb\xdd\x6d\xf5\xef\xdd\x7b\xad\x19\xbe\
\x6e\x7f\xc2\x45\xff\x00\x96\xef\xc6\xcf\x86\x1f\x2e\xfe\x45\xec\
\x5e\xec\xf9\xbd\x95\xde\xdd\x05\xf1\x83\xbf\x7b\xab\x67\x62\xf7\
\x67\x64\x74\x3d\x76\xd6\xc9\x6e\x9e\xab\xea\x9d\xd9\xbe\xb6\xf5\
\x06\xe5\xa2\xc3\xfc\x6b\xc1\x65\xab\x36\xfd\x66\x5b\x05\x0c\x75\
\x91\x52\xd7\x51\xd4\xc9\x4c\xce\xb1\x4f\x0b\x95\x91\x7d\xd7\xba\
\xd1\x1f\xe1\x1f\x4a\xed\x6f\x92\x7f\x33\xfe\x22\x7c\x74\xdf\x55\
\xfb\x83\x15\xb2\x7b\xf7\xe4\xff\x00\x41\x74\xae\xf1\xca\x6d\x3a\
\xac\x75\x0e\xe9\xc6\xed\x6e\xd4\xed\x6d\xa7\xb1\x77\x0d\x7e\xda\
\xad\xcc\x62\xb3\xb8\x9a\x3d\xc1\x47\x89\xce\xcd\x25\x1c\xb5\x54\
\x35\x94\xd1\xd4\xaa\x34\xb0\x4c\x81\xa3\x6f\x75\xee\xbe\x83\x1d\
\xb1\xff\x00\x09\x81\xf8\x0d\xfc\xb6\x3a\xb3\xb2\xff\x00\x98\xb7\
\x46\x76\xef\xcb\xfd\xd7\xdd\x9f\x01\x7a\xff\x00\x79\x7c\xd5\xe9\
\xdd\xaf\xdb\x1b\xfb\xa6\x33\xbd\x59\xb9\x3b\x4f\xe2\xc6\xdd\xc9\
\x77\x9f\x5f\x60\x3b\x2f\x09\xb3\xfa\x03\x62\x6e\xdc\xc7\x5f\xe6\
\x37\x6e\xc4\xa4\xa7\xcc\xd2\xe2\xf3\x98\x6c\x8d\x46\x3a\x49\xa3\
\xa6\xae\xa4\x99\x92\xa2\x3f\x75\xee\xa9\x0b\xfe\x83\x53\xfe\x69\
\x9f\xf3\xe0\xfe\x00\xff\x00\xe8\xac\xf9\x13\xff\x00\xdd\x53\xef\
\xdd\x7b\xa0\x83\xe4\x27\xfc\x2b\xa3\xf9\x91\x7c\x93\xe8\x3e\xf0\
\xf8\xe9\xbe\xba\x4f\xe1\x0e\x2b\x64\xf7\xef\x50\x76\x5f\x4a\xef\
\x1c\xa6\xd3\xeb\x7e\xf8\xa1\xdd\x38\xdd\xad\xda\x9b\x2f\x35\xb1\
\x77\x0d\x7e\xda\xad\xcc\x7c\x94\xce\xe2\x68\xf7\x05\x1e\x27\x3b\
\x34\x94\x72\xd5\x50\xd6\x53\x47\x52\xa8\xd2\xc1\x32\x06\x8d\xbd\
\xd7\xba\xa0\x3f\x84\x7d\x2b\xb5\xbe\x49\xfc\xcf\xf8\x89\xf1\xd3\
\x7d\x57\xee\x0c\x56\xc9\xef\xdf\x93\xfd\x05\xd2\xbb\xc7\x29\xb4\
\xea\xb1\xd4\x3b\xa7\x1b\xb5\xbb\x53\xb5\xb6\x9e\xc5\xdc\x35\xfb\
\x6a\xb7\x31\x8a\xce\xe2\x68\xf7\x05\x1e\x27\x3b\x34\x94\x72\xd5\
\x50\xd6\x53\x47\x52\xa8\xd2\xc1\x32\x06\x8d\xbd\xd7\xba\xfa\x2b\
\xff\x00\xd0\x15\x9f\xca\xcf\xfe\x7f\xe7\xcf\xef\xfd\x1a\x7f\x1d\
\xbf\xfb\x95\xbd\xfb\xaf\x75\xef\xfa\x02\xb3\xf9\x59\xff\x00\xcf\
\xfc\xf9\xfd\xff\x00\xa3\x4f\xe3\xb7\xff\x00\x72\xb7\xbf\x75\xee\
\x90\x1d\xb1\xff\x00\x09\x81\xf8\x0d\xfc\xb6\x3a\xb3\xb2\xff\x00\
\x98\xb7\x46\x76\xef\xcb\xfd\xd7\xdd\x9f\x01\x7a\xff\x00\x79\x7c\
\xd5\xe9\xdd\xaf\xdb\x1b\xfb\xa6\x33\xbd\x59\xb9\x3b\x4f\xe2\xc6\
\xdd\xc9\x77\x9f\x5f\x60\x3b\x2f\x09\xb3\xfa\x03\x62\x6e\xdc\xc7\
\x5f\xe6\x37\x6e\xc4\xa4\xa7\xcc\xd2\xe2\xf3\x98\x6c\x8d\x46\x3a\
\x49\xa3\xa6\xae\xa4\x99\x92\xa2\x3f\x75\xee\xaa\x07\xa9\xff\x00\
\xe1\x4f\xdf\x3e\x7f\x99\x3f\x69\xf5\xa7\xf2\xe9\xef\x3e\xa2\xf8\
\x81\xb5\x3a\x4f\xe7\xd7\x60\x6c\xdf\x85\x5d\xc5\xba\x3a\x9f\x60\
\xf7\x3e\x0b\xb4\xf6\xdf\x56\x7c\xa7\xdc\x58\xde\x8c\xec\x1c\xff\
\x00\x5a\x66\xf7\x87\x7f\xef\xbd\xa5\x87\xec\x0c\x3e\xd2\xdf\x75\
\x75\x18\x6a\xac\xa6\x0f\x33\x8e\xa7\xc8\xc7\x0c\x95\x34\x35\x70\
\xab\xd3\xc9\xee\xbd\xd5\x9f\x7c\xa3\xfe\x4a\xdf\x16\x7f\xe1\x3b\
\xdd\x15\xbe\x7f\x9c\x4f\xc2\xad\xfd\xdf\xfd\x9f\xf2\x67\xe2\x07\
\xf7\x67\xfd\x1a\x6c\x6f\x94\x7b\xa7\xae\xb7\xaf\x45\x67\x3f\xd9\
\x80\xde\x3b\x7f\xe2\xe6\xf2\xfe\xfc\xed\x9e\xa7\xea\xbe\x93\xec\
\x0c\x9f\xf0\xcd\x81\xdd\xb9\x5a\xcc\x67\xd8\x6e\x7c\x67\x87\x31\
\x4f\x49\x2c\xff\x00\x71\x4d\x1c\xd4\x93\xfb\xaf\x75\xae\x1f\xcf\
\x4f\xf8\x53\xf7\xcf\x9f\xe6\x21\xf1\x3f\xb5\xbe\x1d\xf7\x57\x51\
\x7c\x40\xda\xfd\x65\xdc\x1f\xdc\x6f\xef\x2e\x77\xab\xb6\x0f\x73\
\xe1\x77\xdd\x0f\xfa\x3f\xec\x9d\x9d\xda\x38\x6f\xe0\x59\x3d\xd9\
\xdf\xfb\xdb\x6f\xd3\x7d\xce\xe0\xd9\x34\x90\xd5\x7d\xc6\x2e\xab\
\x5d\x1c\x92\xa2\x78\xe4\x64\x96\x3f\x75\xee\xb5\xc4\xf7\xee\xbd\
\xd5\x9e\xff\x00\x26\x8f\x85\x5d\x59\xfc\xc4\x3f\x99\x2f\xc7\x0f\
\x87\x7d\xd5\x9f\xec\x0d\xaf\xd6\x5d\xc1\xfe\x97\xff\x00\xbc\xb9\
\xde\xae\xca\xed\xdc\x2e\xfb\xa1\xff\x00\x47\xfd\x0d\xda\x3d\xa3\
\x86\xfe\x05\x93\xdd\x9b\x57\x7b\x6d\xfa\x6f\xb9\xdc\x1b\x26\x92\
\x1a\xaf\xb8\xc5\xd5\x6b\xa3\x92\x54\x4f\x1c\x8c\x92\xc7\xee\xbd\
\xd6\xcf\x7f\xce\x5f\xfe\x13\x03\xf0\x1b\xf9\x77\xff\x00\x2d\xaf\
\x91\xff\x00\x31\x3a\x57\xb7\x7e\x5f\xee\x8e\xcd\xe9\xff\x00\xf4\
\x41\xfd\xda\xc1\x76\x8e\xfe\xe9\x8c\xd6\xc4\xae\xff\x00\x48\x1d\
\xf3\xd5\xdd\x5d\x99\xfe\x3b\x8c\xda\x7d\x01\xb2\x77\x05\x4f\xdb\
\x6d\xfd\xed\x57\x35\x2f\xdb\xe5\x29\x74\x56\x47\x13\xbf\x92\x35\
\x78\xa4\xf7\x5e\xeb\x58\x4f\xe4\xd1\xf0\xab\xab\x3f\x98\x87\xf3\
\x25\xf8\xe1\xf0\xef\xba\xb3\xfd\x81\xb5\xfa\xcb\xb8\x3f\xd2\xff\
\x00\xf7\x97\x3b\xd5\xd9\x5d\xbb\x85\xdf\x74\x3f\xe8\xff\x00\xa1\
\xbb\x47\xb4\x70\xdf\xc0\xb2\x7b\xb3\x6a\xef\x6d\xbf\x4d\xf7\x3b\
\x83\x64\xd2\x43\x55\xf7\x18\xba\xad\x74\x72\x4a\x89\xe3\x91\x92\
\x58\xfd\xd7\xba\xfa\x3c\x7c\x0b\xff\x00\x84\xc0\xfc\x06\xfe\x5d\
\xff\x00\x2c\x3a\xa7\xe6\x27\x4a\xf6\xef\xcb\xfd\xd1\xd9\xbd\x3f\
\xfd\xf9\xfe\xed\x60\xbb\x47\x7f\x74\xc6\x6b\x62\x57\x7f\xa4\x0e\
\xb6\xde\x3d\x5d\x99\xfe\x3b\x8c\xda\x7d\x01\xb2\x77\x05\x4f\xdb\
\x6d\xfd\xed\x57\x35\x2f\xdb\xe5\x29\x74\x56\x47\x13\xbf\x92\x35\
\x78\xa4\xf7\x5e\xea\xdf\x7e\x7a\x7c\x2a\xea\xcf\xe6\x21\xf1\x3f\
\xb5\xbe\x1d\xf7\x56\x7f\xb0\x36\xbf\x59\x77\x07\xf7\x1b\xfb\xcb\
\x9d\xea\xec\xae\xdd\xc2\xef\xba\x1f\xf4\x7f\xd9\x3b\x3b\xb4\x70\
\xdf\xc0\xb2\x7b\xb3\x6a\xef\x6d\xbf\x4d\xf7\x3b\x83\x64\xd2\x43\
\x55\xf7\x18\xba\xad\x74\x72\x4a\x89\xe3\x91\x92\x58\xfd\xd7\xba\
\xd2\x17\xf9\xcb\xff\x00\xc2\x60\x7e\x03\x7f\x2e\xff\x00\xe5\xb5\
\xf2\x3f\xe6\x27\x4a\xf6\xef\xcb\xfd\xd1\xd9\xbd\x3f\xfe\x88\x3f\
\xbb\x58\x2e\xd1\xdf\xdd\x31\x9a\xd8\x95\xdf\xe9\x03\xbe\x7a\xbb\
\xab\xb3\x3f\xc7\x71\x9b\x4f\xa0\x36\x4e\xe0\xa9\xfb\x6d\xbf\xbd\
\xaa\xe6\xa5\xfb\x7c\xa5\x2e\x8a\xc8\xe2\x77\xf2\x46\xaf\x14\x9e\
\xeb\xdd\x68\x8f\xef\xdd\x7b\xad\xbe\xbf\xe1\x15\x9f\xf6\xf4\xce\
\xfc\xff\x00\xc5\x01\xed\x3f\xfe\x08\x9f\x8a\xde\xfd\xd7\xba\xfa\
\x7b\xaf\xd4\x7f\xaf\xef\xdd\x7b\xac\xfe\xfd\xd7\xba\xf7\xbf\x75\
\xee\xbd\xef\xdd\x7b\xaf\xff\xd7\xdf\xe3\xdf\xba\xf7\x5c\x1f\xe8\
\x0f\xf8\xff\x00\xbe\xff\x00\x7a\xf7\xee\xbd\xd6\x2f\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5f\x20\xbf\xf8\x54\x5f\xfd\xbf\x57\xe7\x2f\xfe\
\x5b\x37\xff\x00\x01\xef\xc7\xdf\x7e\xeb\xdd\x7d\x3d\xbf\x94\xff\
\x00\xfd\xba\xcf\xf9\x6a\x7f\xe2\x80\xfc\x37\xff\x00\xe0\x76\xeb\
\x9f\x7e\xeb\xdd\x7c\x82\xff\x00\x9b\x07\xfd\xbd\x33\xf9\x95\xff\
\x00\xe2\xff\x00\x7c\xc8\xff\x00\xe0\x89\xec\x6f\x7e\xeb\xdd\x10\
\x1f\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\x6f\x2f\xe5\x3f\xff\x00\x6e\
\xb3\xfe\x5a\x9f\xf8\xa0\x3f\x0d\xff\x00\xf8\x1d\xba\xe7\xdf\xba\
\xf7\x5f\x20\xbf\xe6\xc1\xff\x00\x6f\x4c\xfe\x65\x7f\xf8\xbf\xdf\
\x32\x3f\xf8\x22\x7b\x1b\xdf\xba\xf7\x5f\x5f\x4f\xe5\x3f\xff\x00\
\x6e\xb3\xfe\x5a\x9f\xf8\xa0\x3f\x0d\xff\x00\xf8\x1d\xba\xe7\xdf\
\xba\xf7\x5f\x20\xbf\xe6\xc1\xff\x00\x6f\x4c\xfe\x65\x7f\xf8\xbf\
\xdf\x32\x3f\xf8\x22\x7b\x1b\xdf\xba\xf7\x5b\xac\xfc\x23\xff\x00\
\x84\x8b\xff\x00\x2d\xdf\x92\x7f\x0c\x3e\x22\x7c\x8b\xdf\x5d\xd9\
\xf3\x7b\x15\xbd\xbb\xf7\xe3\x07\x41\x77\x56\xf1\xc5\xed\x3e\xc8\
\xe8\x7a\x1d\xad\x8d\xdd\x3d\xa9\xd5\x3b\x4f\x7d\x6e\x1a\x0d\xb5\
\x45\x98\xf8\xd7\x9d\xcb\x51\xed\xfa\x3c\xb6\x76\x68\xe8\xe2\xaa\
\xae\xac\xa9\x8e\x99\x51\x65\x9e\x67\x0d\x23\x7b\xaf\x74\x67\xff\
\x00\xe8\x0a\xcf\xe5\x67\xff\x00\x3f\xf3\xe7\xf7\xfe\x8d\x3f\x8e\
\xdf\xfd\xca\xde\xfd\xd7\xba\xf7\xfd\x01\x59\xfc\xac\xff\x00\xe7\
\xfe\x7c\xfe\xff\x00\xd1\xa7\xf1\xdb\xff\x00\xb9\x5b\xdf\xba\xf7\
\x5b\x7d\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xd4\x17\xfe\x80\xac\xfe\
\x56\x7f\xf3\xff\x00\x3e\x7f\x7f\xe8\xd3\xf8\xed\xff\x00\xdc\xad\
\xef\xdd\x7b\xad\xbe\xbd\xfb\xaf\x75\xf3\x09\xff\x00\xa0\xd4\xff\
\x00\x9a\x67\xfc\xf8\x3f\x80\x3f\xfa\x2b\x3e\x44\xff\x00\xf7\x54\
\xfb\xf7\x5e\xeb\xdf\xf4\x1a\x9f\xf3\x4c\xff\x00\x9f\x07\xf0\x07\
\xff\x00\x45\x67\xc8\x9f\xfe\xea\x9f\x7e\xeb\xdd\x7d\x3d\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x10\x1f\xe6\xc1\xff\x00\x6e\xb3\xfe\x65\
\x7f\xf8\xa0\x3f\x32\x3f\xf8\x1d\xbb\x1b\xdf\xba\xf7\x5f\x16\xcf\
\x8f\x7d\xd5\xba\x7e\x36\x77\xe7\x47\xfc\x8b\xd8\xb4\x1b\x7f\x2b\
\xbd\xba\x0b\xb7\xfa\xd3\xba\xb6\x76\x2f\x76\x52\xe4\x6b\xb6\xb6\
\x4b\x74\xf5\x5e\xf4\xc2\xef\xad\xbd\x41\xb9\x68\xb0\xf9\x5c\x16\
\x5a\xb3\x6f\xd6\x65\xb0\x50\xc7\x59\x15\x2d\x75\x1d\x4c\x94\xcc\
\xeb\x14\xf0\xb9\x59\x17\xdd\x7b\xad\xb6\xba\x9f\xfe\x14\xfd\xf3\
\xe7\xf9\x93\xf6\x9f\x5a\x7f\x2e\x9e\xf3\xea\x2f\x88\x1b\x53\xa4\
\xfe\x7d\x76\x06\xcd\xf8\x55\xdc\x5b\xa3\xa9\xf6\x0f\x73\xe0\xbb\
\x4f\x6d\xf5\x67\xca\x7d\xc5\x8d\xe8\xce\xc1\xcf\xf5\xa6\x6f\x78\
\x77\xfe\xfb\xda\x58\x7e\xc0\xc3\xed\x2d\xf7\x57\x51\x86\xaa\xca\
\x60\xf3\x38\xea\x7c\x8c\x70\xc9\x53\x43\x57\x0a\xbd\x3c\x9e\xeb\
\xdd\x58\xf7\xcd\xcf\xf8\x48\xbf\xf2\xdd\xf8\xd9\xf0\xc3\xe5\xdf\
\xc8\xbd\x8b\xdd\x9f\x37\xb2\xbb\xdb\xa0\xbe\x30\x77\xef\x75\x6c\
\xec\x5e\xec\xec\x8e\x87\xae\xda\xd9\x2d\xd3\xd5\x7d\x53\xbb\x37\
\xd6\xde\xa0\xdc\xb4\x58\x7f\x8d\x78\x2c\xb5\x66\xdf\xac\xcb\x60\
\xa1\x8e\xb2\x2a\x5a\xea\x3a\x99\x29\x99\xd6\x29\xe1\x72\xb2\x2f\
\xba\xf7\x5a\x23\xfc\x23\xe9\x5d\xad\xf2\x4f\xe6\x7f\xc4\x4f\x8e\
\x9b\xea\xbf\x70\x62\xb6\x4f\x7e\xfc\x9f\xe8\x2e\x95\xde\x39\x4d\
\xa7\x55\x8e\xa1\xdd\x38\xdd\xad\xda\x9d\xad\xb4\xf6\x2e\xe1\xaf\
\xdb\x55\xb9\x8c\x56\x77\x13\x47\xb8\x28\xf1\x39\xd9\xa4\xa3\x96\
\xaa\x86\xb2\x9a\x3a\x95\x46\x96\x09\x90\x34\x6d\xee\xbd\xd7\xd0\
\x63\xb6\x3f\xe1\x30\x3f\x01\xbf\x96\xc7\x56\x76\x5f\xf3\x16\xe8\
\xce\xdd\xf9\x7f\xba\xfb\xb3\xe0\x2f\x5f\xef\x2f\x9a\xbd\x3b\xb5\
\xfb\x63\x7f\x74\xc6\x77\xab\x37\x27\x69\xfc\x58\xdb\xb9\x2e\xf3\
\xeb\xec\x07\x65\xe1\x36\x7f\x40\x6c\x4d\xdb\x98\xeb\xfc\xc6\xed\
\xd8\x94\x94\xf9\x9a\x5c\x5e\x73\x0d\x91\xa8\xc7\x49\x34\x74\xd5\
\xd4\x93\x32\x54\x47\xee\xbd\xd5\x21\x7f\xd0\x6a\x7f\xcd\x33\xfe\
\x7c\x1f\xc0\x1f\xfd\x15\x9f\x22\x7f\xfb\xaa\x7d\xfb\xaf\x75\xef\
\xfa\x0d\x4f\xf9\xa6\x7f\xcf\x83\xf8\x03\xff\x00\xa2\xb3\xe4\x4f\
\xff\x00\x75\x4f\xbf\x75\xee\x82\x0f\x90\x9f\xf0\xae\x8f\xe6\x45\
\xf2\x4f\xa0\xfb\xc3\xe3\xa6\xfa\xe9\x3f\x84\x38\xad\x93\xdf\xbd\
\x41\xd9\x7d\x2b\xbc\x72\x9b\x4f\xad\xfb\xe2\x87\x74\xe3\x76\xb7\
\x6a\x6c\xbc\xd6\xc5\xdc\x35\xfb\x6a\xb7\x31\xf2\x53\x3b\x89\xa3\
\xdc\x14\x78\x9c\xec\xd2\x51\xcb\x55\x43\x59\x4d\x1d\x4a\xa3\x4b\
\x04\xc8\x1a\x36\xf7\x5e\xea\x98\xbf\x94\xff\x00\xfd\xbd\x33\xf9\
\x6a\x7f\xe2\xff\x00\x7c\x37\xff\x00\xe0\x89\xeb\x9f\x7e\xeb\xdd\
\x7d\x8d\x3e\x7a\x7c\x2a\xea\xcf\xe6\x21\xf1\x3f\xb5\xbe\x1d\xf7\
\x56\x7f\xb0\x36\xbf\x59\x77\x07\xf7\x1b\xfb\xcb\x9d\xea\xec\xae\
\xdd\xc2\xef\xba\x1f\xf4\x7f\xd9\x3b\x3b\xb4\x70\xdf\xc0\xb2\x7b\
\xb3\x6a\xef\x6d\xbf\x4d\xf7\x3b\x83\x64\xd2\x43\x55\xf7\x18\xba\
\xad\x74\x72\x4a\x89\xe3\x91\x92\x58\xfd\xd7\xba\xd2\x17\xf9\xcb\
\xff\x00\xc2\x60\x7e\x03\x7f\x2e\xff\x00\xe5\xb5\xf2\x3f\xe6\x27\
\x4a\xf6\xef\xcb\xfd\xd1\xd9\xbd\x3f\xfe\x88\x3f\xbb\x58\x2e\xd1\
\xdf\xdd\x31\x9a\xd8\x95\xdf\xe9\x03\xbe\x7a\xbb\xab\xb3\x3f\xc7\
\x71\x9b\x4f\xa0\x36\x4e\xe0\xa9\xfb\x6d\xbf\xbd\xaa\xe6\xa5\xfb\
\x7c\xa5\x2e\x8a\xc8\xe2\x77\xf2\x46\xaf\x14\x9e\xeb\xdd\x68\x8f\
\xef\xdd\x7b\xa3\x7d\xf0\x2f\xe6\xaf\x69\xff\x00\x2e\xff\x00\x96\
\x1d\x53\xf3\x13\xa5\x70\x1d\x7f\xba\x3b\x37\xa7\xff\x00\xbf\x3f\
\xdd\xac\x17\x68\xe2\xb7\x16\x6b\x62\x57\x7f\xa4\x0e\xb6\xde\x3d\
\x5d\x99\xfe\x3b\x8c\xda\x7b\xab\x64\xee\x0a\x9f\xb6\xdb\xfb\xda\
\xae\x6a\x5f\xb7\xca\x52\xe8\xac\x8e\x27\x7f\x24\x6a\xf1\x49\xee\
\xbd\xd5\xbe\xfc\xf4\xff\x00\x85\x3f\x7c\xf9\xfe\x62\x1f\x13\xfb\
\x5b\xe1\xdf\x75\x75\x17\xc4\x0d\xaf\xd6\x5d\xc1\xfd\xc6\xfe\xf2\
\xe7\x7a\xbb\x60\xf7\x3e\x17\x7d\xd0\xff\x00\xa3\xfe\xc9\xd9\xdd\
\xa3\x86\xfe\x05\x93\xdd\x9d\xff\x00\xbd\xb6\xfd\x37\xdc\xee\x0d\
\x93\x49\x0d\x57\xdc\x62\xea\xb5\xd1\xc9\x2a\x27\x8e\x46\x49\x63\
\xf7\x5e\xea\xa0\xbe\x05\xfc\xd5\xed\x3f\xe5\xdf\xf2\xc3\xaa\x7e\
\x62\x74\xae\x03\xaf\xf7\x47\x66\xf4\xff\x00\xf7\xe7\xfb\xb5\x82\
\xed\x1c\x56\xe2\xcd\x6c\x4a\xef\xf4\x81\xd6\xdb\xc7\xab\xb3\x3f\
\xc7\x71\x9b\x4f\x75\x6c\x9d\xc1\x53\xf6\xdb\x7f\x7b\x55\xcd\x4b\
\xf6\xf9\x4a\x5d\x15\x91\xc4\xef\xe4\x8d\x5e\x29\x3d\xd7\xba\xd8\
\xf3\xfe\x83\x53\xfe\x69\x9f\xf3\xe0\xfe\x00\xff\x00\xe8\xac\xf9\
\x13\xff\x00\xdd\x53\xef\xdd\x7b\xab\x3e\xfe\x4d\x1f\xf0\xa7\xef\
\x9f\x3f\xcc\x43\xf9\x92\xfc\x70\xf8\x77\xdd\x5d\x45\xf1\x03\x6b\
\xf5\x97\x70\x7f\xa5\xff\x00\xef\x2e\x77\xab\xb6\x0f\x73\xe1\x77\
\xdd\x0f\xfa\x3f\xe8\x6e\xd1\xed\x1c\x37\xf0\x2c\x9e\xec\xef\xfd\
\xed\xb7\xe9\xbe\xe7\x70\x6c\x9a\x48\x6a\xbe\xe3\x17\x55\xae\x8e\
\x49\x51\x3c\x72\x32\x4b\x1f\xba\xf7\x57\x79\xff\x00\x0a\x8b\xff\
\x00\xb7\x15\x7c\xe5\xff\x00\xcb\x66\xff\x00\xe0\xc2\xf8\xfb\xef\
\xdd\x7b\xaf\x9a\x47\xf2\x68\xf8\x55\xd5\x9f\xcc\x43\xf9\x92\xfc\
\x70\xf8\x77\xdd\x59\xfe\xc0\xda\xfd\x65\xdc\x1f\xe9\x7f\xfb\xcb\
\x9d\xea\xec\xae\xdd\xc2\xef\xba\x1f\xf4\x7f\xd0\xdd\xa3\xda\x38\
\x6f\xe0\x59\x3d\xd9\xb5\x77\xb6\xdf\xa6\xfb\x9d\xc1\xb2\x69\x21\
\xaa\xfb\x8c\x5d\x56\xba\x39\x25\x44\xf1\xc8\xc9\x2c\x7e\xeb\xdd\
\x7d\x35\xff\x00\x96\x07\xfc\x27\xaf\xe1\x87\xf2\x9b\xef\xcd\xdd\
\xf2\x2f\xe3\xa7\x66\xfc\x9f\xde\x9b\xdb\x7a\x75\x06\x7f\xa5\x72\
\x98\xbe\xea\xde\x9d\x53\xb8\xf6\xb5\x3e\xd6\xdc\x7b\xd3\x60\x6f\
\xaa\xda\xfa\x0a\x2d\x8b\xd2\xbd\x71\x96\x8b\x70\x45\x96\xeb\x8a\
\x18\xe2\x96\x4a\xe9\x69\x96\x9a\x59\xd5\xa0\x67\x68\xe4\x8b\xdd\
\x7b\xab\xde\x5f\xd4\x3f\xdf\x7d\x78\xf7\xee\xbd\xd6\x6f\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xff\xd0\xdf\xe3\xdf\xba\
\xf7\x58\xe4\xfc\x7f\xb1\xf7\xee\xbd\xd6\x3f\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5f\x20\xbf\xf8\x54\x5f\xfd\xbf\x57\xe7\x2f\xfe\x5b\x37\
\xff\x00\x01\xef\xc7\xdf\x7e\xeb\xdd\x7d\x3d\xbf\x94\xff\x00\xfd\
\xba\xcf\xf9\x6a\x7f\xe2\x80\xfc\x37\xff\x00\xe0\x76\xeb\x9f\x7e\
\xeb\xdd\x53\x17\xc8\x4f\xf8\x48\xbf\xf2\xdd\xf9\x27\xdf\x9d\xe1\
\xf2\x2f\x7d\x77\x67\xcd\xec\x56\xf6\xef\xde\xdf\xec\xbe\xea\xde\
\x38\xbd\xa7\xd9\x1d\x0f\x43\xb5\xb1\xbb\xa7\xb5\x37\xa6\x6b\x7d\
\x6e\x1a\x0d\xb5\x45\x98\xf8\xd7\x9d\xcb\x51\xed\xfa\x3c\xb6\x76\
\x68\xe8\xe2\xaa\xae\xac\xa9\x8e\x99\x51\x65\x9e\x67\x0d\x23\x7b\
\xaf\x74\x10\x7f\xd0\x15\x9f\xca\xcf\xfe\x7f\xe7\xcf\xef\xfd\x1a\
\x7f\x1d\xbf\xfb\x95\xbd\xfb\xaf\x75\xef\xfa\x02\xb3\xf9\x59\xff\
\x00\xcf\xfc\xf9\xfd\xff\x00\xa3\x4f\xe3\xb7\xff\x00\x72\xb7\xbf\
\x75\xee\xb6\x9b\xf8\xf7\xd2\xbb\x5b\xe3\x67\x41\xf4\x7f\xc7\x4d\
\x8b\x5f\xb8\x32\xbb\x27\xa0\xba\x83\xad\x3a\x57\x67\x65\x37\x65\
\x56\x3a\xbb\x74\xe4\xb6\xb7\x55\xec\xbc\x2e\xc5\xdb\xd5\xfb\x96\
\xb7\x0f\x8a\xc1\x62\x6b\x37\x05\x66\x27\x05\x0c\x95\x92\xd2\xd0\
\xd1\xd3\x49\x52\xce\xd1\x41\x0a\x15\x8d\x7d\xd7\xba\xf8\xb6\x7f\
\x36\x0f\xfb\x7a\x67\xf3\x2b\xff\x00\xc5\xfe\xf9\x91\xff\x00\xc1\
\x13\xd8\xde\xfd\xd7\xba\xfa\xfa\x7f\x29\xff\x00\xfb\x75\x9f\xf2\
\xd4\xff\x00\xc5\x01\xf8\x6f\xff\x00\xc0\xed\xd7\x3e\xfd\xd7\xba\
\xa6\x2f\x90\x9f\xf0\x91\x7f\xe5\xbb\xf2\x4f\xbf\x3b\xc3\xe4\x5e\
\xfa\xee\xcf\x9b\xd8\xad\xed\xdf\xbd\xbf\xd9\x7d\xd5\xbc\x71\x7b\
\x4f\xb2\x3a\x1e\x87\x6b\x63\x77\x4f\x6a\x6f\x4c\xd6\xfa\xdc\x34\
\x1b\x6a\x8b\x31\xf1\xaf\x3b\x96\xa3\xdb\xf4\x79\x6c\xec\xd1\xd1\
\xc5\x55\x5d\x59\x53\x1d\x32\xa2\xcb\x3c\xce\x1a\x46\xf7\x5e\xeb\
\x5e\x3e\xd8\xff\x00\x85\x3f\x7c\xf9\xfe\x5b\x1d\xa7\xd9\x7f\xcb\
\xa7\xa3\x3a\x8b\xe2\x06\xeb\xe9\x3f\x80\xbd\x81\xbc\xbe\x15\x74\
\xee\xe8\xed\x8d\x83\xdc\xf9\xde\xd3\xdc\x9d\x59\xf1\x63\x71\x64\
\xba\x33\xaf\xb3\xfd\x97\x9b\xd9\xfd\xff\x00\xb1\x36\x96\x63\xb0\
\x33\x1b\x4b\x62\x52\x54\x66\x6a\xb1\x78\x3c\x36\x3a\xa3\x23\x24\
\xd2\x53\x50\xd2\x42\xc9\x4f\x1f\xba\xf7\x48\x0f\xfa\x0d\x4f\xf9\
\xa6\x7f\xcf\x83\xf8\x03\xff\x00\xa2\xb3\xe4\x4f\xff\x00\x75\x4f\
\xbf\x75\xee\xbd\xff\x00\x41\xa9\xff\x00\x34\xcf\xf9\xf0\x7f\x00\
\x7f\xf4\x56\x7c\x89\xff\x00\xee\xa9\xf7\xee\xbd\xd7\xd3\xdb\xdf\
\xba\xf7\x5f\x30\x9f\xfa\x0d\x4f\xf9\xa6\x7f\xcf\x83\xf8\x03\xff\
\x00\xa2\xb3\xe4\x4f\xff\x00\x75\x4f\xbf\x75\xee\xbe\x9e\xde\xfd\
\xd7\xba\xf9\x84\xff\x00\xd0\x6a\x7f\xcd\x33\xfe\x7c\x1f\xc0\x1f\
\xfd\x15\x9f\x22\x7f\xfb\xaa\x7d\xfb\xaf\x75\xa8\x2f\xbf\x75\xee\
\xbe\x9e\xdf\xf4\x05\x67\xf2\xb3\xff\x00\x9f\xf9\xf3\xfb\xff\x00\
\x46\x9f\xc7\x6f\xfe\xe5\x6f\x7e\xeb\xdd\x6d\xf5\xef\xdd\x7b\xaf\
\x98\x4f\xfd\x06\xa7\xfc\xd3\x3f\xe7\xc1\xfc\x01\xff\x00\xd1\x59\
\xf2\x27\xff\x00\xba\xa7\xdf\xba\xf7\x5b\xfc\x7f\x36\x0f\xfb\x75\
\x9f\xf3\x2b\xff\x00\xc5\x01\xf9\x91\xff\x00\xc0\xed\xd8\xde\xfd\
\xd7\xba\xf8\x86\xfb\xf7\x5e\xe8\xff\x00\x7f\x29\xff\x00\xfb\x7a\
\x67\xf2\xd4\xff\x00\xc5\xfe\xf8\x6f\xff\x00\xc1\x13\xd7\x3e\xfd\
\xd7\xba\xfb\x49\xfc\x84\xe9\x5d\xad\xf2\x4f\xa0\xfb\xc3\xe3\xa6\
\xfa\xaf\xdc\x18\xad\x93\xdf\xbd\x41\xd9\x7d\x2b\xbc\x72\x9b\x4e\
\xab\x1d\x43\xba\x71\xbb\x5b\xb5\x36\x5e\x6b\x62\xee\x1a\xfd\xb5\
\x5b\x98\xc5\x67\x71\x34\x7b\x82\x8f\x13\x9d\x9a\x4a\x39\x6a\xa8\
\x6b\x29\xa3\xa9\x54\x69\x60\x99\x03\x46\xde\xeb\xdd\x6b\x87\xf1\
\xef\xfe\x12\x2f\xfc\xb7\x7e\x36\x77\xe7\x47\xfc\x8b\xd8\xbd\xd9\
\xf3\x7b\x2b\xbd\xba\x0b\xb7\xfa\xd3\xba\xb6\x76\x2f\x76\x76\x47\
\x43\xd7\x6d\x6c\x96\xe9\xea\xbd\xe9\x85\xdf\x5b\x7a\x83\x72\xd1\
\x61\xfe\x35\xe0\xb2\xd5\x9b\x7e\xb3\x2d\x82\x86\x3a\xc8\xa9\x6b\
\xa8\xea\x64\xa6\x67\x58\xa7\x85\xca\xc8\xbe\xeb\xdd\x6c\x79\xf2\
\x13\xa5\x76\xb7\xc9\x3e\x83\xef\x0f\x8e\x9b\xea\xbf\x70\x62\xb6\
\x4f\x7e\xf5\x07\x65\xf4\xae\xf1\xca\x6d\x3a\xac\x75\x0e\xe9\xc6\
\xed\x6e\xd4\xd9\x79\xad\x8b\xb8\x6b\xf6\xd5\x6e\x63\x15\x9d\xc4\
\xd1\xee\x0a\x3c\x4e\x76\x69\x28\xe5\xaa\xa1\xac\xa6\x8e\xa5\x51\
\xa5\x82\x64\x0d\x1b\x7b\xaf\x75\xa6\x2f\xcd\xcf\xf8\x48\xbf\xf2\
\xdd\xf8\xd9\xf0\xc3\xe5\xdf\xc8\xbd\x8b\xdd\x9f\x37\xb2\xbb\xdb\
\xa0\xbe\x30\x77\xef\x75\x6c\xec\x5e\xec\xec\x8e\x87\xae\xda\xd9\
\x2d\xd3\xd5\x7d\x53\xbb\x37\xd6\xde\xa0\xdc\xb4\x58\x7f\x8d\x78\
\x2c\xb5\x66\xdf\xac\xcb\x60\xa1\x8e\xb2\x2a\x5a\xea\x3a\x99\x29\
\x99\xd6\x29\xe1\x72\xb2\x2f\xba\xf7\x5a\x23\xfc\x23\xe9\x5d\xad\
\xf2\x4f\xe6\x7f\xc4\x4f\x8e\x9b\xea\xbf\x70\x62\xb6\x4f\x7e\xfc\
\x9f\xe8\x2e\x95\xde\x39\x4d\xa7\x55\x8e\xa1\xdd\x38\xdd\xad\xda\
\x9d\xad\xb4\xf6\x2e\xe1\xaf\xdb\x55\xb9\x8c\x56\x77\x13\x47\xb8\
\x28\xf1\x39\xd9\xa4\xa3\x96\xaa\x86\xb2\x9a\x3a\x95\x46\x96\x09\
\x90\x34\x6d\xee\xbd\xd7\xd1\x5f\xfe\x80\xac\xfe\x56\x7f\xf3\xff\
\x00\x3e\x7f\x7f\xe8\xd3\xf8\xed\xff\x00\xdc\xad\xef\xdd\x7b\xa4\
\x07\x6c\x7f\xc2\x60\x7e\x03\x7f\x2d\x8e\xac\xec\xbf\xe6\x2d\xd1\
\x9d\xbb\xf2\xff\x00\x75\xf7\x67\xc0\x5e\xbf\xde\x5f\x35\x7a\x77\
\x6b\xf6\xc6\xfe\xe9\x8c\xef\x56\x6e\x4e\xd3\xf8\xb1\xb7\x72\x5d\
\xe7\xd7\xd8\x0e\xcb\xc2\x6c\xfe\x80\xd8\x9b\xb7\x31\xd7\xf9\x8d\
\xdb\xb1\x29\x29\xf3\x34\xb8\xbc\xe6\x1b\x23\x51\x8e\x92\x68\xe9\
\xab\xa9\x26\x64\xa8\x8f\xdd\x7b\xa0\x03\xf9\x34\x7f\xc2\x9f\xbe\
\x7c\xff\x00\x31\x0f\xe6\x4b\xf1\xc3\xe1\xdf\x75\x75\x17\xc4\x0d\
\xaf\xd6\x5d\xc1\xfe\x97\xff\x00\xbc\xb9\xde\xae\xd8\x3d\xcf\x85\
\xdf\x74\x3f\xe8\xff\x00\xa1\xbb\x47\xb4\x70\xdf\xc0\xb2\x7b\xb3\
\xbf\xf7\xb6\xdf\xa6\xfb\x9d\xc1\xb2\x69\x21\xaa\xfb\x8c\x5d\x56\
\xba\x39\x25\x44\xf1\xc8\xc9\x2c\x7e\xeb\xdd\x5d\xe7\xfc\x2a\x2f\
\xfe\xdc\x55\xf3\x97\xff\x00\x2d\x9b\xff\x00\x83\x0b\xe3\xef\xbf\
\x75\xee\xbe\x69\x1f\xc9\xa3\xe1\x57\x56\x7f\x31\x0f\xe6\x4b\xf1\
\xc3\xe1\xdf\x75\x67\xfb\x03\x6b\xf5\x97\x70\x7f\xa5\xff\x00\xef\
\x2e\x77\xab\xb2\xbb\x77\x0b\xbe\xe8\x7f\xd1\xff\x00\x43\x76\x8f\
\x68\xe1\xbf\x81\x64\xf7\x66\xd5\xde\xdb\x7e\x9b\xee\x77\x06\xc9\
\xa4\x86\xab\xee\x31\x75\x5a\xe8\xe4\x95\x13\xc7\x23\x24\xb1\xfb\
\xaf\x75\xb3\xdf\xf3\x97\xff\x00\x84\xc0\xfc\x06\xfe\x5d\xff\x00\
\xcb\x6b\xe4\x7f\xcc\x4e\x95\xed\xdf\x97\xfb\xa3\xb3\x7a\x7f\xfd\
\x10\x7f\x76\xb0\x5d\xa3\xbf\xba\x63\x35\xb1\x2b\xbf\xd2\x07\x7c\
\xf5\x77\x57\x66\x7f\x8e\xe3\x36\x9f\x40\x6c\x9d\xc1\x53\xf6\xdb\
\x7f\x7b\x55\xcd\x4b\xf6\xf9\x4a\x5d\x15\x91\xc4\xef\xe4\x8d\x5e\
\x29\x3d\xd7\xba\xd6\x13\xf9\x34\x7c\x2a\xea\xcf\xe6\x21\xfc\xc9\
\x7e\x38\x7c\x3b\xee\xac\xff\x00\x60\x6d\x7e\xb2\xee\x0f\xf4\xbf\
\xfd\xe5\xce\xf5\x76\x57\x6e\xe1\x77\xdd\x0f\xfa\x3f\xe8\x6e\xd1\
\xed\x1c\x37\xf0\x2c\x9e\xec\xda\xbb\xdb\x6f\xd3\x7d\xce\xe0\xd9\
\x34\x90\xd5\x7d\xc6\x2e\xab\x5d\x1c\x92\xa2\x78\xe4\x64\x96\x3f\
\x75\xee\xb6\x7b\xfe\x72\xff\x00\xf0\x98\x1f\x80\xdf\xcb\xbf\xf9\
\x6d\x7c\x8f\xf9\x89\xd2\xbd\xbb\xf2\xff\x00\x74\x76\x6f\x4f\xff\
\x00\xa2\x0f\xee\xd6\x0b\xb4\x77\xf7\x4c\x66\xb6\x25\x77\xfa\x40\
\xef\x9e\xae\xea\xec\xcf\xf1\xdc\x66\xd3\xe8\x0d\x93\xb8\x2a\x7e\
\xdb\x6f\xef\x6a\xb9\xa9\x7e\xdf\x29\x4b\xa2\xb2\x38\x9d\xfc\x91\
\xab\xc5\x27\xba\xf7\x5a\xc2\x7f\x26\x8f\x85\x5d\x59\xfc\xc4\x3f\
\x99\x2f\xc7\x0f\x87\x7d\xd5\x9f\xec\x0d\xaf\xd6\x5d\xc1\xfe\x97\
\xff\x00\xbc\xb9\xde\xae\xca\xed\xdc\x2e\xfb\xa1\xff\x00\x47\xfd\
\x0d\xda\x3d\xa3\x86\xfe\x05\x93\xdd\x9b\x57\x7b\x6d\xfa\x6f\xb9\
\xdc\x1b\x26\x92\x1a\xaf\xb8\xc5\xd5\x6b\xa3\x92\x54\x4f\x1c\x8c\
\x92\xc7\xee\xbd\xd7\xd1\xe3\xe0\x5f\xfc\x26\x07\xe0\x37\xf2\xef\
\xf9\x61\xd5\x3f\x31\x3a\x57\xb7\x7e\x5f\xee\x8e\xcd\xe9\xff\x00\
\xef\xcf\xf7\x6b\x05\xda\x3b\xfb\xa6\x33\x5b\x12\xbb\xfd\x20\x75\
\xb6\xf1\xea\xec\xcf\xf1\xdc\x66\xd3\xe8\x0d\x93\xb8\x2a\x7e\xdb\
\x6f\xef\x6a\xb9\xa9\x7e\xdf\x29\x4b\xa2\xb2\x38\x9d\xfc\x91\xab\
\xc5\x27\xba\xf7\x4b\xff\x00\xf8\x54\x5f\xfd\xb8\xab\xe7\x2f\xfe\
\x5b\x37\xff\x00\x06\x17\xc7\xdf\x7e\xeb\xdd\x68\x0f\xff\x00\x09\
\x74\xff\x00\xb7\xea\xfc\x1a\xff\x00\xcb\x99\xff\x00\xe0\x3d\xf9\
\x05\xef\xdd\x7b\xaf\xaf\xa7\xbf\x75\xee\xbb\x1f\x51\xfe\xb8\xff\
\x00\x7b\xf7\xee\xbd\xd6\x7f\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\
\xee\xbd\xd7\xff\xd1\xdf\xe3\xdf\xba\xf7\x58\x9f\xeb\xfe\xc3\xfe\
\x24\xfb\xf7\x5e\xeb\x87\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x90\x5f\
\xfc\x2a\x2f\xfe\xdf\xab\xf3\x97\xff\x00\x2d\x9b\xff\x00\x80\xf7\
\xe3\xef\xbf\x75\xee\x8c\xff\x00\xc7\xbf\xf8\x57\x47\xf3\x22\xf8\
\xd9\xd0\x7d\x1f\xf1\xd3\x62\xf4\x9f\xc2\x1c\xae\xc9\xe8\x2e\xa0\
\xeb\x4e\x95\xd9\xd9\x4d\xd9\xd6\xfd\xf1\x5d\xba\x72\x5b\x5b\xaa\
\xf6\x5e\x17\x62\xed\xea\xfd\xcb\x5b\x87\xf9\x29\x82\xc4\xd6\x6e\
\x0a\xcc\x4e\x0a\x19\x2b\x25\xa5\xa1\xa3\xa6\x92\xa5\x9d\xa2\x82\
\x14\x2b\x1a\xfb\xaf\x74\x2f\xff\x00\xd0\x6a\x7f\xcd\x33\xfe\x7c\
\x1f\xc0\x1f\xfd\x15\x9f\x22\x7f\xfb\xaa\x7d\xfb\xaf\x75\xef\xfa\
\x0d\x4f\xf9\xa6\x7f\xcf\x83\xf8\x03\xff\x00\xa2\xb3\xe4\x4f\xff\
\x00\x75\x4f\xbf\x75\xee\xbd\xff\x00\x41\xa9\xff\x00\x34\xcf\xf9\
\xf0\x7f\x00\x7f\xf4\x56\x7c\x89\xff\x00\xee\xa9\xf7\xee\xbd\xd7\
\xbf\xe8\x35\x3f\xe6\x99\xff\x00\x3e\x0f\xe0\x0f\xfe\x8a\xcf\x91\
\x3f\xfd\xd5\x3e\xfd\xd7\xba\xd5\x93\xe4\x27\x75\x6e\x9f\x92\x7d\
\xf9\xde\x1f\x22\xf7\xd5\x06\xdf\xc5\x6f\x6e\xfd\xed\xfe\xcb\xee\
\xad\xe3\x8b\xda\x74\xb9\x1a\x1d\xad\x8d\xdd\x3d\xa9\xbd\x33\x5b\
\xeb\x70\xd0\x6d\xaa\x2c\xc6\x57\x3b\x96\xa3\xdb\xf4\x79\x6c\xec\
\xd1\xd1\xc5\x55\x5d\x59\x53\x1d\x32\xa2\xcb\x3c\xce\x1a\x46\xf7\
\x5e\xeb\xed\x27\xfc\xa7\xff\x00\xed\xd6\x7f\xcb\x53\xff\x00\x14\
\x07\xe1\xbf\xff\x00\x03\xb7\x5c\xfb\xf7\x5e\xe8\xff\x00\x7b\xf7\
\x5e\xeb\x56\x4f\x90\x9f\xf0\x91\x7f\xe5\xbb\xf2\x4f\xbf\x3b\xc3\
\xe4\x5e\xfa\xee\xcf\x9b\xd8\xad\xed\xdf\xbd\xbf\xd9\x7d\xd5\xbc\
\x71\x7b\x4f\xb2\x3a\x1e\x87\x6b\x63\x77\x4f\x6a\x6f\x4c\xd6\xfa\
\xdc\x34\x1b\x6a\x8b\x31\xf1\xaf\x3b\x96\xa3\xdb\xf4\x79\x6c\xec\
\xd1\xd1\xc5\x55\x5d\x59\x53\x1d\x32\xa2\xcb\x3c\xce\x1a\x46\xf7\
\x5e\xe8\x20\xff\x00\xa0\x2b\x3f\x95\x9f\xfc\xff\x00\xcf\x9f\xdf\
\xfa\x34\xfe\x3b\x7f\xf7\x2b\x7b\xf7\x5e\xeb\xdf\xf4\x05\x67\xf2\
\xb3\xff\x00\x9f\xf9\xf3\xfb\xff\x00\x46\x9f\xc7\x6f\xfe\xe5\x6f\
\x7e\xeb\xdd\x6d\xf5\xef\xdd\x7b\xad\x41\x7f\xe8\x0a\xcf\xe5\x67\
\xff\x00\x3f\xf3\xe7\xf7\xfe\x8d\x3f\x8e\xdf\xfd\xca\xde\xfd\xd7\
\xba\xdb\xeb\xdf\xba\xf7\x5f\x00\xff\x00\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5f\x7f\x0f\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5a\x82\xff\x00\xd0\
\x15\x9f\xca\xcf\xfe\x7f\xe7\xcf\xef\xfd\x1a\x7f\x1d\xbf\xfb\x95\
\xbd\xfb\xaf\x75\x7f\x9f\xcd\x83\xfe\xdd\x67\xfc\xca\xff\x00\xf1\
\x40\x7e\x64\x7f\xf0\x3b\x76\x37\xbf\x75\xee\xbe\x21\xbe\xfd\xd7\
\xba\x3f\xdf\xca\x7f\xfe\xde\x99\xfc\xb5\x3f\xf1\x7f\xbe\x1b\xff\
\x00\xf0\x44\xf5\xcf\xbf\x75\xee\xbe\xde\x5e\xfd\xd7\xba\x2c\x1f\
\x37\x3b\xab\x74\xfc\x6c\xf8\x61\xf2\xef\xe4\x5e\xc5\xa0\xdb\xf9\
\x5d\xed\xd0\x5f\x18\x3b\xf7\xba\xb6\x76\x2f\x76\x52\xe4\x6b\xb6\
\xb6\x4b\x74\xf5\x5f\x54\xee\xcd\xf5\xb7\xa8\x37\x2d\x16\x1f\x2b\
\x82\xcb\x56\x6d\xfa\xcc\xb6\x0a\x18\xeb\x22\xa5\xae\xa3\xa9\x92\
\x99\x9d\x62\x9e\x17\x2b\x22\xfb\xaf\x75\xa2\x3f\xc2\x3f\xf8\x57\
\x47\xf3\x22\xf9\x27\xf3\x3f\xe2\x27\xc7\x4d\xf5\xd2\x7f\x08\x71\
\x5b\x27\xbf\x7e\x4f\xf4\x17\x4a\xef\x1c\xa6\xd3\xeb\x7e\xf8\xa1\
\xdd\x38\xdd\xad\xda\x9d\xad\xb4\xf6\x2e\xe1\xaf\xdb\x55\xb9\x8f\
\x92\x99\xdc\x4d\x1e\xe0\xa3\xc4\xe7\x66\x92\x8e\x5a\xaa\x1a\xca\
\x68\xea\x55\x1a\x58\x26\x40\xd1\xb7\xba\xf7\x5b\xac\xff\x00\x36\
\x0f\xfb\x75\x9f\xf3\x2b\xff\x00\xc5\x01\xf9\x91\xff\x00\xc0\xed\
\xd8\xde\xfd\xd7\xba\xf9\x05\xff\x00\x29\xff\x00\xfb\x7a\x67\xf2\
\xd4\xff\x00\xc5\xfe\xf8\x6f\xff\x00\xc1\x13\xd7\x3e\xfd\xd7\xba\
\xfb\x29\xfc\xdc\xee\xad\xd3\xf1\xb3\xe1\x87\xcb\xbf\x91\x7b\x16\
\x83\x6f\xe5\x77\xb7\x41\x7c\x60\xef\xde\xea\xd9\xd8\xbd\xd9\x4b\
\x91\xae\xda\xd9\x2d\xd3\xd5\x7d\x53\xbb\x37\xd6\xde\xa0\xdc\xb4\
\x58\x7c\xae\x0b\x2d\x59\xb7\xeb\x32\xd8\x28\x63\xac\x8a\x96\xba\
\x8e\xa6\x4a\x66\x75\x8a\x78\x5c\xac\x8b\xee\xbd\xd7\xcf\x9f\xa9\
\xff\x00\xe1\x4f\xdf\x3e\x7f\x99\x3f\x69\xf5\xa7\xf2\xe9\xef\x3e\
\xa2\xf8\x81\xb5\x3a\x4f\xe7\xd7\x60\x6c\xdf\x85\x5d\xc5\xba\x3a\
\x9f\x60\xf7\x3e\x0b\xb4\xf6\xdf\x56\x7c\xa7\xdc\x58\xde\x8c\xec\
\x1c\xff\x00\x5a\x66\xf7\x87\x7f\xef\xbd\xa5\x87\xec\x0c\x3e\xd2\
\xdf\x75\x75\x18\x6a\xac\xa6\x0f\x33\x8e\xa7\xc8\xc7\x0c\x95\x34\
\x35\x70\xab\xd3\xc9\xee\xbd\xd6\xcf\x9f\x02\xff\x00\xe1\x30\x3f\
\x01\xbf\x97\x7f\xcb\x0e\xa9\xf9\x89\xd2\xbd\xbb\xf2\xff\x00\x74\
\x76\x6f\x4f\xff\x00\x7e\x7f\xbb\x58\x2e\xd1\xdf\xdd\x31\x9a\xd8\
\x95\xdf\xe9\x03\xad\xb7\x8f\x57\x66\x7f\x8e\xe3\x36\x9f\x40\x6c\
\x9d\xc1\x53\xf6\xdb\x7f\x7b\x55\xcd\x4b\xf6\xf9\x4a\x5d\x15\x91\
\xc4\xef\xe4\x8d\x5e\x29\x3d\xd7\xba\xb7\xdf\x9e\x9f\x0a\xba\xb3\
\xf9\x88\x7c\x4f\xed\x6f\x87\x7d\xd5\x9f\xec\x0d\xaf\xd6\x5d\xc1\
\xfd\xc6\xfe\xf2\xe7\x7a\xbb\x2b\xb7\x70\xbb\xee\x87\xfd\x1f\xf6\
\x4e\xce\xed\x1c\x37\xf0\x2c\x9e\xec\xda\xbb\xdb\x6f\xd3\x7d\xce\
\xe0\xd9\x34\x90\xd5\x7d\xc6\x2e\xab\x5d\x1c\x92\xa2\x78\xe4\x64\
\x96\x3f\x75\xee\xaa\x0b\xe0\x5f\xfc\x26\x07\xe0\x37\xf2\xef\xf9\
\x61\xd5\x3f\x31\x3a\x57\xb7\x7e\x5f\xee\x8e\xcd\xe9\xff\x00\xef\
\xcf\xf7\x6b\x05\xda\x3b\xfb\xa6\x33\x5b\x12\xbb\xfd\x20\x75\xb6\
\xf1\xea\xec\xcf\xf1\xdc\x66\xd3\xe8\x0d\x93\xb8\x2a\x7e\xdb\x6f\
\xef\x6a\xb9\xa9\x7e\xdf\x29\x4b\xa2\xb2\x38\x9d\xfc\x91\xab\xc5\
\x27\xba\xf7\x56\xfb\xf3\xd3\xe1\x57\x56\x7f\x31\x0f\x89\xfd\xad\
\xf0\xef\xba\xb3\xfd\x81\xb5\xfa\xcb\xb8\x3f\xb8\xdf\xde\x5c\xef\
\x57\x65\x76\xee\x17\x7d\xd0\xff\x00\xa3\xfe\xc9\xd9\xdd\xa3\x86\
\xfe\x05\x93\xdd\x9b\x57\x7b\x6d\xfa\x6f\xb9\xdc\x1b\x26\x92\x1a\
\xaf\xb8\xc5\xd5\x6b\xa3\x92\x54\x4f\x1c\x8c\x92\xc7\xee\xbd\xd6\
\xa8\x9f\x28\xff\x00\x92\xb7\xc5\x9f\xf8\x4e\xf7\x45\x6f\x9f\xe7\
\x13\xf0\xab\x7f\x77\xff\x00\x67\xfc\x99\xf8\x81\xfd\xd9\xff\x00\
\x46\x9b\x1b\xe5\x1e\xe9\xeb\xad\xeb\xd1\x59\xcf\xf6\x60\x37\x8e\
\xdf\xf8\xb9\xbc\xbf\xbf\x3b\x67\xa9\xfa\xaf\xa4\xfb\x03\x27\xfc\
\x33\x60\x77\x6e\x56\xb3\x19\xf6\x1b\x9f\x19\xe1\xcc\x53\xd2\x4b\
\x3f\xdc\x53\x47\x35\x24\xfe\xeb\xdd\x6b\x87\xf3\xd3\xfe\x14\xfd\
\xf3\xe7\xf9\x88\x7c\x4f\xed\x6f\x87\x7d\xd5\xd4\x5f\x10\x36\xbf\
\x59\x77\x07\xf7\x1b\xfb\xcb\x9d\xea\xed\x83\xdc\xf8\x5d\xf7\x43\
\xfe\x8f\xfb\x27\x67\x76\x8e\x1b\xf8\x16\x4f\x76\x77\xfe\xf6\xdb\
\xf4\xdf\x73\xb8\x36\x4d\x24\x35\x5f\x71\x8b\xaa\xd7\x47\x24\xa8\
\x9e\x39\x19\x25\x8f\xdd\x7b\xaa\x82\xf8\x17\xf3\x57\xb4\xff\x00\
\x97\x7f\xcb\x0e\xa9\xf9\x89\xd2\xb8\x0e\xbf\xdd\x1d\x9b\xd3\xff\
\x00\xdf\x9f\xee\xd6\x0b\xb4\x71\x5b\x8b\x35\xb1\x2b\xbf\xd2\x07\
\x5b\x6f\x1e\xae\xcc\xff\x00\x1d\xc6\x6d\x3d\xd5\xb2\x77\x05\x4f\
\xdb\x6d\xfd\xed\x57\x35\x2f\xdb\xe5\x29\x74\x56\x47\x13\xbf\x92\
\x35\x78\xa4\xf7\x5e\xeb\x77\xaf\xe4\xd1\xff\x00\x0a\x7e\xf9\xf3\
\xfc\xc4\x3f\x99\x2f\xc7\x0f\x87\x7d\xd5\xd4\x5f\x10\x36\xbf\x59\
\x77\x07\xfa\x5f\xfe\xf2\xe7\x7a\xbb\x60\xf7\x3e\x17\x7d\xd0\xff\
\x00\xa3\xfe\x86\xed\x1e\xd1\xc3\x7f\x02\xc9\xee\xce\xff\x00\xde\
\xdb\x7e\x9b\xee\x77\x06\xc9\xa4\x86\xab\xee\x31\x75\x5a\xe8\xe4\
\x95\x13\xc7\x23\x24\xb1\xfb\xaf\x75\xb7\xd7\xcf\x4f\x85\x5d\x59\
\xfc\xc4\x3e\x27\xf6\xb7\xc3\xbe\xea\xcf\xf6\x06\xd7\xeb\x2e\xe0\
\xfe\xe3\x7f\x79\x73\xbd\x5d\x95\xdb\xb8\x5d\xf7\x43\xfe\x8f\xfb\
\x27\x67\x76\x8e\x1b\xf8\x16\x4f\x76\x6d\x5d\xed\xb7\xe9\xbe\xe7\
\x70\x6c\x9a\x48\x6a\xbe\xe3\x17\x55\xae\x8e\x49\x51\x3c\x72\x32\
\x4b\x1f\xba\xf7\x55\x05\xf0\x2f\xfe\x13\x03\xf0\x1b\xf9\x77\xfc\
\xb0\xea\x9f\x98\x9d\x2b\xdb\xbf\x2f\xf7\x47\x66\xf4\xff\x00\xf7\
\xe7\xfb\xb5\x82\xed\x1d\xfd\xd3\x19\xad\x89\x5d\xfe\x90\x3a\xdb\
\x78\xf5\x76\x67\xf8\xee\x33\x69\xf4\x06\xc9\xdc\x15\x3f\x6d\xb7\
\xf7\xb5\x5c\xd4\xbf\x6f\x94\xa5\xd1\x59\x1c\x4e\xfe\x48\xd5\xe2\
\x93\xdd\x7b\xad\x8e\xfd\xfb\xaf\x75\xd8\xfa\x8f\xf5\xc7\xfb\xdf\
\xbf\x75\xee\xb3\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\
\xbf\xff\xd2\xdf\xe3\xdf\xba\xf7\x58\xe4\xfc\x7f\x5f\x7e\xeb\xdd\
\x63\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\x50\x5f\x28\xff\x00\x90\xbf\
\xf2\x9f\xf9\xa3\xde\xbb\xe7\xe4\xb7\xc9\x6f\x8a\x9f\xe9\x27\xbb\
\x3b\x27\xfb\xb3\xfd\xf5\xde\xbf\xe9\xcf\xe4\x96\xce\xfe\x35\xfd\
\xce\xd9\xdb\x7f\x60\xed\xcf\xf7\xee\x6c\x1e\xe1\xda\xbb\x4b\x1d\
\xfc\x3b\x69\x6d\x5a\x0a\x4f\xf2\x4a\x08\x3c\xde\x0f\x2c\xba\xe6\
\x79\x24\x7f\x75\xee\x80\x0f\xfa\x05\xd3\xf9\x15\x7f\xde\x0d\x7f\
\xec\xcc\xfc\xc2\xff\x00\xee\x82\xf7\xee\xbd\xd7\xbf\xe8\x17\x4f\
\xe4\x55\xff\x00\x78\x35\xff\x00\xb3\x33\xf3\x0b\xff\x00\xba\x0b\
\xdf\xba\xf7\x5e\xff\x00\xa0\x5d\x3f\x91\x57\xfd\xe0\xd7\xfe\xcc\
\xcf\xcc\x2f\xfe\xe8\x2f\x7e\xeb\xdd\x7b\xfe\x81\x74\xfe\x45\x5f\
\xf7\x83\x5f\xfb\x33\x3f\x30\xbf\xfb\xa0\xbd\xfb\xaf\x75\xef\xfa\
\x05\xd3\xf9\x15\x7f\xde\x0d\x7f\xec\xcc\xfc\xc2\xff\x00\xee\x82\
\xf7\xee\xbd\xd7\xbf\xe8\x17\x4f\xe4\x55\xff\x00\x78\x35\xff\x00\
\xb3\x33\xf3\x0b\xff\x00\xba\x0b\xdf\xba\xf7\x57\x7b\xd4\xfd\x5d\
\xb1\x3a\x3b\xab\x3a\xd3\xa5\x7a\xbb\x05\xfd\xd7\xeb\x2e\x9f\xeb\
\xfd\x9b\xd5\xdd\x75\xb6\xbf\x89\xe6\x33\x5f\xdd\xdd\x89\xd7\xfb\
\x77\x1b\xb4\xf6\x8e\x0b\xf8\xce\xe2\xc8\x65\xb7\x06\x5b\xf8\x4e\
\xdf\xc4\xd3\xd3\xfd\xd5\x75\x5d\x55\x64\xfe\x3d\x73\x4b\x24\x8c\
\xce\x7d\xd7\xba\x5f\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\
\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\
\x75\xee\xa8\x0f\xfe\x81\x74\xfe\x45\x5f\xf7\x83\x5f\xfb\x33\x3f\
\x30\xbf\xfb\xa0\xbd\xfb\xaf\x75\xef\xfa\x05\xd3\xf9\x15\x7f\xde\
\x0d\x7f\xec\xcc\xfc\xc2\xff\x00\xee\x82\xf7\xee\xbd\xd5\xfe\x7b\
\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\x90\x1d\xb1\xd5\xdb\
\x13\xbc\x7a\xb3\xb2\xfa\x57\xb4\x70\x5f\xde\x8e\xb2\xee\x0e\xbf\
\xde\x5d\x5d\xd8\xbb\x6b\xf8\x9e\x63\x0b\xfd\xe2\xd8\x9d\x81\xb7\
\x72\x5b\x4f\x77\x60\xbf\x8c\xed\xdc\x86\x27\x70\x62\x7f\x8b\x6d\
\xfc\xb5\x45\x3f\xdd\x50\xd5\xd2\xd6\x41\xe4\xd7\x0c\xb1\xc8\xaa\
\xe3\xdd\x7b\xaa\x42\xff\x00\xa0\x5d\x3f\x91\x57\xfd\xe0\xd7\xfe\
\xcc\xcf\xcc\x2f\xfe\xe8\x2f\x7e\xeb\xdd\x08\x1d\x4f\xff\x00\x09\
\xc5\xfe\x4c\x9d\x1d\xda\x7d\x69\xdd\x5d\x5d\xf0\xdf\xfb\xaf\xd9\
\xbd\x3f\xd8\x1b\x37\xb4\x7a\xeb\x72\xff\x00\xb3\x0d\xf2\xab\x35\
\xfd\xdd\xdf\x7d\x7f\xb8\xb1\xbb\xb3\x68\xe7\x7f\x83\x6e\x2e\xf1\
\xcb\x6d\xfc\xb7\xf0\x9d\xc1\x89\xa7\xa8\xfb\x5a\xea\x4a\xaa\x39\
\xfc\x7a\x26\x8a\x48\xd9\x90\xfb\xaf\x75\x77\x9e\xfd\xd7\xba\x40\
\x76\xc7\x57\x6c\x4e\xf1\xea\xce\xcb\xe9\x5e\xd1\xc1\x7f\x7a\x3a\
\xcb\xb8\x3a\xff\x00\x79\x75\x77\x62\xed\xaf\xe2\x79\x8c\x2f\xf7\
\x8b\x62\x76\x06\xdd\xc9\x6d\x3d\xdd\x82\xfe\x33\xb7\x72\x18\x9d\
\xc1\x89\xfe\x2d\xb7\xf2\xd5\x14\xff\x00\x75\x43\x57\x4b\x59\x07\
\x93\x5c\x32\xc7\x22\xab\x8f\x75\xee\xaa\x0b\xa9\xff\x00\xe1\x38\
\xbf\xc9\x93\xa3\xbb\x4f\xad\x3b\xab\xab\xbe\x1b\xff\x00\x75\xfb\
\x37\xa7\xfb\x03\x66\xf6\x8f\x5d\x6e\x5f\xf6\x61\xbe\x55\x66\xbf\
\xbb\xbb\xef\xaf\xf7\x16\x37\x76\x6d\x1c\xef\xf0\x6d\xc5\xde\x39\
\x6d\xbf\x96\xfe\x13\xb8\x31\x34\xf5\x1f\x6b\x5d\x49\x55\x47\x3f\
\x8f\x44\xd1\x49\x1b\x32\x1f\x75\xee\xad\xf7\xb6\x3a\xbb\x62\x77\
\x8f\x56\x76\x5f\x4a\xf6\x8e\x0b\xfb\xd1\xd6\x5d\xc1\xd7\xfb\xcb\
\xab\xbb\x17\x6d\x7f\x13\xcc\x61\x7f\xbc\x5b\x13\xb0\x36\xee\x4b\
\x69\xee\xec\x17\xf1\x9d\xbb\x90\xc4\xee\x0c\x4f\xf1\x6d\xbf\x96\
\xa8\xa7\xfb\xaa\x1a\xba\x5a\xc8\x3c\x9a\xe1\x96\x39\x15\x5c\x7b\
\xaf\x75\x50\x5d\x4f\xff\x00\x09\xc5\xfe\x4c\x9d\x1d\xda\x7d\x69\
\xdd\x5d\x5d\xf0\xdf\xfb\xaf\xd9\xbd\x3f\xd8\x1b\x37\xb4\x7a\xeb\
\x72\xff\x00\xb3\x0d\xf2\xab\x35\xfd\xdd\xdf\x7d\x7f\xb8\xb1\xbb\
\xb3\x68\xe7\x7f\x83\x6e\x2e\xf1\xcb\x6d\xfc\xb7\xf0\x9d\xc1\x89\
\xa7\xa8\xfb\x5a\xea\x4a\xaa\x39\xfc\x7a\x26\x8a\x48\xd9\x90\xfb\
\xaf\x75\x6f\xbd\xb1\xd5\xdb\x13\xbc\x7a\xb3\xb2\xfa\x57\xb4\x70\
\x5f\xde\x8e\xb2\xee\x0e\xbf\xde\x5d\x5d\xd8\xbb\x6b\xf8\x9e\x63\
\x0b\xfd\xe2\xd8\x9d\x81\xb7\x72\x5b\x4f\x77\x60\xbf\x8c\xed\xdc\
\x86\x27\x70\x62\x7f\x8b\x6d\xfc\xb5\x45\x3f\xdd\x50\xd5\xd2\xd6\
\x41\xe4\xd7\x0c\xb1\xc8\xaa\xe3\xdd\x7b\xaa\x82\xea\x7f\xf8\x4e\
\x2f\xf2\x64\xe8\xee\xd3\xeb\x4e\xea\xea\xef\x86\xff\x00\xdd\x7e\
\xcd\xe9\xfe\xc0\xd9\xbd\xa3\xd7\x5b\x97\xfd\x98\x6f\x95\x59\xaf\
\xee\xee\xfb\xeb\xfd\xc5\x8d\xdd\x9b\x47\x3b\xfc\x1b\x71\x77\x8e\
\x5b\x6f\xe5\xbf\x84\xee\x0c\x4d\x3d\x47\xda\xd7\x52\x55\x51\xcf\
\xe3\xd1\x34\x52\x46\xcc\x87\xdd\x7b\xab\xbc\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x40\x07\xca\x3f\x8b\
\x9d\x15\xf3\x47\xa2\xb7\xcf\xc6\x9f\x92\xdb\x1b\xfd\x24\xf4\x9f\
\x64\xff\x00\x76\x7f\xbe\xbb\x2b\xfb\xcd\xbc\x76\x77\xf1\xaf\xee\
\x76\xf1\xdb\xfb\xfb\x6e\x7f\xbf\x8f\x60\xee\x0d\xab\xbb\x71\xdf\
\xc3\xb7\x6e\xd5\xa0\xab\xff\x00\x24\xaf\x83\xcd\xe0\xf1\x4b\xae\
\x17\x92\x37\xf7\x5e\xea\xa0\xbf\xe8\x17\x4f\xe4\x55\xff\x00\x78\
\x35\xff\x00\xb3\x33\xf3\x0b\xff\x00\xba\x0b\xdf\xba\xf7\x5e\xff\
\x00\xa0\x5d\x3f\x91\x57\xfd\xe0\xd7\xfe\xcc\xcf\xcc\x2f\xfe\xe8\
\x2f\x7e\xeb\xdd\x0f\xff\x00\x17\x3f\x90\xbf\xf2\x9f\xf8\x5d\xde\
\xbb\x1b\xe4\xb7\xc6\x9f\x8a\x9f\xe8\xdb\xbb\x3a\xdb\xfb\xcd\xfd\
\xca\xde\xbf\xe9\xcf\xe4\x96\xf1\xfe\x0b\xfd\xf1\xd9\xdb\x83\x60\
\xee\x3f\xf7\xee\x6f\xee\xe1\xdd\x5b\x4b\x23\xfc\x47\x69\x6e\xaa\
\xfa\x4f\xf2\xba\x09\xfc\x3e\x7f\x2c\x5a\x26\x48\xe4\x4f\x75\xee\
\xad\xf7\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xd8\xfa\
\x8f\xf5\xc7\xbf\x75\xee\xb3\xfb\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\
\xbf\x75\xee\xbf\xff\xd3\xdf\xe3\xdf\xba\xf7\x58\x9f\xeb\xfe\xc3\
\xfe\x24\xfb\xf7\x5e\xeb\x87\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\
\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\
\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\
\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\
\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\
\xef\xdd\x7b\xae\xec\x4f\xd0\x1f\x7e\xeb\xdd\x7a\xc7\xfa\x1f\xf6\
\xc7\xdf\xba\xf7\x5d\x7b\xf7\x5e\xeb\xbb\x1f\xe8\x7f\xdb\x1f\x7e\
\xeb\xdd\x7a\xc7\xfa\x1f\xf6\xde\xfd\xd7\xba\xea\xd7\xfa\x7b\xf7\
\x5e\xeb\xbb\x1f\xe8\x7f\xdb\x1f\x7e\xeb\xdd\x75\x6b\x7d\x7d\xfb\
\xaf\x75\xeb\x5f\xe9\xef\xdd\x7b\xae\xec\x47\xd4\x1f\x7e\xeb\xdd\
\x75\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\
\xee\xbd\xef\xdd\x7b\xae\x61\x09\xfa\xf1\xfe\xf7\xef\xdd\x7b\xae\
\x61\x54\x7e\x2f\xfe\xbf\xfb\xeb\x7b\xf7\x5e\xeb\x97\xbf\x75\xee\
\xbd\xef\xdd\x7b\xae\x25\x54\xfe\x3f\xdb\x71\xef\xdd\x7b\xae\x05\
\x08\xfa\x73\xfe\xf7\xef\xdd\x7b\xae\x03\x9e\x3d\xfb\xaf\x75\x23\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xff\xd4\xdf\xe3\
\xdf\xba\xf7\x58\x9f\xeb\xfe\xc3\xfe\x24\xfb\xf7\x5e\xeb\x87\xbf\
\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\
\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\
\xe4\x14\x9f\xc7\xbf\x75\xee\xb9\x68\x3f\x93\xff\x00\x13\xff\x00\
\x14\xf7\xee\xbd\xd7\xbc\x7f\xe3\xfe\xf1\xff\x00\x1b\xf7\xee\xbd\
\xd7\xbc\x7f\xd4\xff\x00\xbe\xff\x00\x78\xf7\xee\xbd\xd7\x7a\x07\
\xf5\x3e\xfd\xd7\xba\xf6\x81\xf8\x27\xfd\xef\xfe\x29\xef\xdd\x7b\
\xaf\x68\x1f\x92\x7f\xde\xbf\xe2\xbe\xfd\xd7\xba\xf6\x81\xfe\x3f\
\xef\x1f\xf1\x4f\x7e\xeb\xdd\x7b\x40\xfe\xa7\xdf\xba\xf7\x5e\xd0\
\x3f\xc7\xfd\xe3\xfe\x29\xef\xdd\x7b\xaf\x68\x1f\xe3\xfe\xf1\xff\
\x00\x14\xf7\xee\xbd\xd7\x7a\x17\xfa\x7f\xbe\xff\x00\x7a\xf7\xee\
\xbd\xd7\x76\x1f\xd0\x7f\xb6\x1e\xfd\xd7\xba\xf5\x87\xf4\x1f\xed\
\xbd\xfb\xaf\x75\xdf\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\
\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\
\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xae\xac\
\x0f\xd4\x0f\x7e\xeb\xdd\x7a\xc3\xfa\x0f\xf6\xc3\xdf\xba\xf7\x5e\
\xd2\x3f\xa0\xf7\xee\xbd\xd7\x12\x83\xf1\xc7\xfb\xd7\xbf\x75\xee\
\xbc\xab\x6f\xaf\x27\xfd\xeb\xdf\xba\xf7\x5c\xfd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x71\x2b\x72\x0f\xe4\x11\xfe\xc7\xdf\xba\xf7\x5c\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd5\xdf\
\xe3\xdf\xba\xf7\x5d\x10\x0f\xd4\x7b\xf7\x5e\xeb\xad\x2b\xfd\x3d\
\xfb\xaf\x75\xcb\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xac\x0f\xd4\x5f\
\xdf\xba\xf7\x5d\x58\x7f\x41\xfe\xd8\x7b\xf7\x5e\xeb\xd6\x1f\xd0\
\x7f\xb6\x1e\xfd\xd7\xba\xf5\x87\xf4\x1f\xed\xbd\xfb\xaf\x75\xdf\
\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\
\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\
\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\xfd\
\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\xde\
\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\xeb\
\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\x5e\
\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\xf7\
\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\x7b\
\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\xaf\
\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xf7\xbf\x75\xee\xbd\xef\xdd\x7b\
\xaf\x7b\xf7\x5e\xeb\xde\xfd\xd7\xba\xff\xd6\xdf\xe3\xdf\xba\xf7\
\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\
\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\
\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\
\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\
\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\xeb\
\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\x7e\
\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\xef\
\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\x75\
\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\xaf\
\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\xfb\
\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\xbd\
\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5e\xf7\xee\xbd\xd7\
\xbd\xfb\xaf\x75\xef\x7e\xeb\xdd\x7b\xdf\xba\xf7\x5f\xff\xd9\
"
qt_resource_name = b"\
\x00\x06\
\x07\x03\x7d\xc3\
\x00\x69\
\x00\x6d\x00\x61\x00\x67\x00\x65\x00\x73\
\x00\x05\
\x00\x34\x51\x67\
\x00\x31\
\x00\x2e\x00\x6a\x00\x70\x00\x67\
\x00\x05\
\x00\x33\x51\x67\
\x00\x30\
\x00\x2e\x00\x6a\x00\x70\x00\x67\
"
qt_resource_struct_v1 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x02\
\x00\x00\x00\x22\x00\x00\x00\x00\x00\x01\x00\x01\xc0\x27\
\x00\x00\x00\x12\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
"
qt_resource_struct_v2 = b"\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x01\x00\x00\x00\x01\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x00\x00\x02\x00\x00\x00\x02\x00\x00\x00\x02\
\x00\x00\x00\x00\x00\x00\x00\x00\
\x00\x00\x00\x22\x00\x00\x00\x00\x00\x01\x00\x01\xc0\x27\
\x00\x00\x01\x73\x1e\x1c\x15\x88\
\x00\x00\x00\x12\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\
\x00\x00\x01\x73\x1e\x1d\xc0\xdc\
"
qt_version = [int(v) for v in QtCore.qVersion().split('.')]
if qt_version < [5, 8, 0]:
rcc_version = 1
qt_resource_struct = qt_resource_struct_v1
else:
rcc_version = 2
qt_resource_struct = qt_resource_struct_v2
def qInitResources():
QtCore.qRegisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
def qCleanupResources():
QtCore.qUnregisterResourceData(rcc_version, qt_resource_struct, qt_resource_name, qt_resource_data)
qInitResources()
================================================
FILE: main.py
================================================
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os, sys, requests
from random import randint
from PySide2.QtWidgets import QApplication, QSplashScreen
from PySide2.QtGui import QFont, QPixmap, QIcon
from PySide2.QtCore import Qt, QThread
from utils.main_ui import MainWindow
class downloadUpdates(QThread):
def __init__(self, parent=None):
super(downloadUpdates, self).__init__(parent)
self.headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) \
Chrome/49.0.2623.221 Safari/537.36 SE 2.X MetaSr 1.0'}
def checkUtils(self):
response = requests.get(r'https://github.com/jiafangjun/DD_KaoRou2/tree/master/utils', headers=self.headers)
html = response.text.split('\n')
return html
def downloadSplash(self, html):
for line in html:
if '/splash_' in line and '.png' in line:
splashPage = 'https://github.com/' + line.split('href="')[1].split('"')[0]
localSplashPath = r'utils/%s' % splashPage.split('/')[-1]
if not os.path.exists(localSplashPath):
response = requests.get(splashPage, headers=self.headers)
html = response.text.split('\n')
for l in html:
if localSplashPath + '?raw=true' in l:
splashLink = 'https://github.com' + l.split('src="')[1].split('"')[0]
response = requests.get(splashLink)
img = response.content
with open(localSplashPath, 'wb') as f:
f.write(img) # 将图片按二进制写入本地文件
def run(self):
utilsHtml = self.checkUtils()
self.downloadSplash(utilsHtml)
if __name__ == '__main__':
QApplication.setAttribute(Qt.AA_UseHighDpiPixmaps, True)
QApplication.setAttribute(Qt.AA_EnableHighDpiScaling, True)
app = QApplication(sys.argv)
splashList = []
for f in os.listdir('utils'):
if f.endswith('.png') and 'splash_' in f:
splashList.append(r'utils\%s' % f)
if splashList:
splashPath = splashList[randint(0, len(splashList) - 1)] # 随机选择启动封面
else:
splashPath = ''
splash = QSplashScreen(QPixmap(splashPath))
splash.show()
qss = ''
try:
with open('utils/qdark.qss', 'r') as f:
qss = f.read()
except:
print('警告!找不到QSS文件!请从github项目地址下载完整文件。')
app.setStyleSheet(qss)
app.setFont(QFont('微软雅黑', 9))
desktop = app.desktop()
mainWindow = MainWindow()
mainWindow.setWindowIcon(QIcon(r'utils\favicon.ico'))
screen = app.primaryScreen().geometry()
mainWindow.resize(screen.width() * 0.75, screen.height() * 0.75)
size = mainWindow.geometry()
mainWindow.move((screen.width() - size.width()) / 2,
(screen.height() - size.height()) / 2)
mainWindow.showMaximized()
mainWindow.show()
splash.finish(mainWindow)
downloads = downloadUpdates()
downloads.start()
sys.exit(app.exec_())
================================================
FILE: pretrained_models/2stems/checkpoint
================================================
model_checkpoint_path: "model"
all_model_checkpoint_paths: "model"
================================================
FILE: pretrained_models/2stems/model.data-00000-of-00001
================================================
[File too large to display: 75.0 MB]
================================================
FILE: pyinstaller命令.txt
================================================
pyinstaller -i favicon.ico --additional-hooks-dir=hooks --clean .\main.py
================================================
FILE: temp_sub.ass
================================================
[Script Info]
; Script generated by DD烤肉机2.0; Powered by 执鸣神君
; B站个人空间:https://space.bilibili.com/637783;Github项目地址:https://github.com/jiafangjun/DD_KaoRou
Title:
OriginalScript:
OriginalTranslation:
OriginalEditing:
OriginalTiming:
ScriptType: v4.00+
Collisions: Normal
PlayResX: 1920
PlayResY: 1080
Timer: 100.0000
WrapStyle: 0
ScaledBorderAndShadow: yes
[V4+ Styles]
Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding
Style: 1,微软雅黑,90,&H00FFFFFF,&H00000000,&H00000000,&H00696969,-1,0,0,0,100,100,0,0,1,2,2,2,0,0,100,1
Style: 2,微软雅黑,90,&H00FFFFFF,&H00000000,&H00000000,&H00696969,-1,0,0,0,100,100,0,0,1,2,2,2,0,0,100,1
Style: 3,微软雅黑,90,&H00FFFFFF,&H00000000,&H00000000,&H00696969,-1,0,0,0,100,100,0,0,1,2,2,2,0,0,100,1
Style: 4,微软雅黑,90,&H00FFFFFF,&H00000000,&H00000000,&H00696969,-1,0,0,0,100,100,0,0,1,2,2,2,0,0,100,1
Style: 5,微软雅黑,90,&H00FFFFFF,&H00000000,&H00000000,&H00696969,-1,0,0,0,100,100,0,0,1,2,2,2,0,0,100,1
[Events]
Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text
Dialogue: 0,0:00:00.00,0:00:10.00,1,#1,0,0,0,,Hi! 我是第1列字幕。
Dialogue: 0,0:00:00.00,0:00:10.00,2,#2,0,0,0,,Hi! 我是第2列字幕。
Dialogue: 0,0:00:00.00,0:00:10.00,3,#3,0,0,0,,Hi! 我是第3列字幕。
Dialogue: 0,0:00:00.00,0:00:10.00,4,#4,0,0,0,,Hi! 我是第4列字幕。
Dialogue: 0,0:00:00.00,0:00:10.00,5,#5,0,0,0,,Hi! 我是第5列字幕。
================================================
FILE: utils/AI.py
================================================
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os, subprocess, wave, time, shutil
import json
import hashlib
import urllib.request, urllib.parse, urllib.error
import urllib.request, urllib.error, urllib.parse
import base64
import numpy as np
from spleeter.separator import Separator
from spleeter.audio.adapter import get_default_audio_adapter
from PySide2.QtWidgets import QGridLayout, QDialog, QPushButton, QProgressBar, QLabel, QComboBox, QLineEdit, QGroupBox,\
QWidget, QSlider
from PySide2.QtCore import QTimer, Signal, QThread, Qt, QPoint
from PySide2.QtGui import QIntValidator
import copy, librosa, sklearn
import pyqtgraph as pg
def getWave(audioPath):
f = wave.open(audioPath, 'rb') # 开始分析波形
params = f.getparams()
nchannels, _, framerate, nframes = params[:4]
strData = f.readframes(nframes)
f.close()
w = np.fromstring(strData, dtype=np.int16)
w = np.reshape(w, [nframes, nchannels])
_time = [x * 1000 / framerate for x in range(0, nframes)]
_wave = list(map(int, w[:, 0]))
return _time, _wave
def vocalJudge(waveList):
avg = np.mean(waveList)
waveList = list(map(lambda x: x - avg, waveList))
# thres = -(np.mean(list(map(lambda x: abs(x), waveList))) ** 2) / 2
dot = 0
for cnt, i in enumerate(waveList[:-2]):
# pre = i * waveList[cnt - 1]
# nxt = i * waveList[cnt + 1]
first = i * waveList[cnt + 1]
secnd = waveList[cnt + 1] * waveList[cnt + 2]
# third = i * waveList[cnt + 2]
if first < -10000 and secnd < -10000:
dot += 1
return dot
def setParams(array, key, value):
array[key] = value
def genSignString(parser):
uri_str = ''
for key in sorted(parser.keys()):
if key == 'app_key':
continue
uri_str += "%s=%s&" % (key, urllib.parse.quote(str(parser[key]), safe=''))
sign_str = uri_str + 'app_key=' + parser['app_key']
hash_md5 = hashlib.md5(sign_str.encode())
return hash_md5.hexdigest().upper()
class Slider(QSlider):
pointClicked = Signal(QPoint)
def mousePressEvent(self, event):
self.pointClicked.emit(event.pos())
def mouseMoveEvent(self, event):
self.pointClicked.emit(event.pos())
def wheelEvent(self, event): # 把进度条的滚轮事件去了 用啥子滚轮
pass
class pingTencent(QThread): # 测试网络
pingResult = Signal(bool)
def __init__(self):
super().__init__()
def run(self):
result = os.system('ping www.qq.com')
if result == 0:
self.pingResult.emit(True)
else:
self.pingResult.emit(False)
class translateThread(QThread): # AI翻译线程
percent = Signal(float)
result = Signal(list)
finish = Signal(bool)
def __init__(self, voiceDict, videoStart, videoEnd, source, target, APPID, APPKEY):
super().__init__()
self.voiceDict = copy.deepcopy(voiceDict)
self.videoStart = videoStart
self.videoEnd = videoEnd
self.source = {0: 'jp', 1: 'en', 2: 'kr', 3: 'zh'}[source]
self.target = {0: 'jp', 1: 'en', 2: 'kr', 3: 'zh'}[target]
if self.source == 'zh':
self.interval = 9
else:
self.interval = 4
self.app_id = APPID
self.app_key = APPKEY
def invoke(self, params):
self.url_data = urllib.parse.urlencode(params)
req = urllib.request.Request(self.url, self.url_data.encode())
try:
rsp = urllib.request.urlopen(req)
str_rsp = rsp.read()
dict_rsp = json.loads(str_rsp)
return dict_rsp
except urllib.error.URLError as e:
dict_error = {}
if hasattr(e, "code"):
dict_error = {}
dict_error['ret'] = -1
dict_error['httpcode'] = e.code
dict_error['msg'] = "sdk http post err"
return dict_error
if hasattr(e, "reason"):
dict_error['msg'] = 'sdk http post err'
dict_error['httpcode'] = -1
dict_error['ret'] = -1
return dict_error
else:
dict_error = {}
dict_error['ret'] = -1
dict_error['httpcode'] = -1
dict_error['msg'] = "system error"
return dict_error
def getAISpeech(self, chunk, speech_id, end_flag, format_id, rate, bits, seq, chunk_len, cont_res):
self.url = r'https://api.ai.qq.com/fcgi-bin/nlp/nlp_speechtranslate'
setParams(self.data, 'app_id', self.app_id)
setParams(self.data, 'app_key', self.app_key)
setParams(self.data, 'time_stamp', int(time.time()))
setParams(self.data, 'nonce_str', int(time.time()))
speech_chunk = base64.b64encode(chunk).decode('utf8')
setParams(self.data, 'speech_chunk', speech_chunk)
setParams(self.data, 'session_id', 'DD_KaoRou')
setParams(self.data, 'end', end_flag)
setParams(self.data, 'format', format_id)
setParams(self.data, 'seq', seq)
setParams(self.data, 'source', self.source)
setParams(self.data, 'target', self.target)
sign_str = genSignString(self.data)
setParams(self.data, 'sign', sign_str)
return self.invoke(self.data)
def prepareParams(self, file_path):
self.data = {}
seq = 0
for_mat = 8
rate = 16000
bits = 16
cont_res = 1
once_size = 50000
f = open(file_path, 'rb')
md5obj = hashlib.md5()
md5obj.update(f.read())
_hash = md5obj.hexdigest()
speech_id = str(_hash).upper()
f.close()
f = open(file_path, 'rb')
file_size = os.path.getsize(file_path)
try:
while True:
chunk = f.read(once_size)
if not chunk:
break
else:
chunk_size = len(chunk)
if (seq + chunk_size) == file_size:
end = 1
else:
end = 0
rsp = self.getAISpeech(chunk, speech_id, end, for_mat, rate, bits, seq, chunk_size, cont_res)
if rsp['msg'] != 'ok':
self.sourceText += '翻译未成功 请重试'
self.targetText += '翻译未成功 请重试'
else:
self.sourceText += rsp['data']['source_text']
self.targetText += rsp['data']['target_text']
self.sourceText = '翻译内容识别为空 请重试' if not self.sourceText else self.sourceText
self.targetText = '翻译内容识别为空 请重试' if not self.targetText else self.targetText
seq += chunk_size
finally:
f.close()
def run(self):
total = len(self.voiceDict.keys())
for cnt, start in enumerate(self.voiceDict.keys()):
if start >= 0 and start >= self.videoStart * 60000 and start <= (self.videoEnd + 1) * 60000: # 开始值不能为负数
self.sourceText = ''
self.targetText = ''
delta = self.voiceDict[start][0]
cuts, remain = divmod(delta, 10000)
for _ in range(cuts):
cutPath = r'temp_audio\vocals_translate_%s.mp3' % start
cmd = ['ffmpeg.exe', '-y', '-i', r'temp_audio\audio_original.aac', '-ss', str(start // 1000), '-t', '10000',
'-sample_fmt', 's16', '-ac', '1', '-ar', '16000', cutPath]
p = subprocess.Popen(cmd)
p.wait()
time.sleep(1)
start += 10000
self.prepareParams(cutPath)
time.sleep(self.interval)
cutPath = r'temp_audio\vocals_translate_%s.mp3' % start
cmd = ['ffmpeg.exe', '-y', '-i', r'temp_audio\audio_original.aac', '-ss', str(start // 1000), '-t', str(remain // 1000 + 1),
'-sample_fmt', 's16', '-ac', '1', '-ar', '16000', cutPath]
p = subprocess.Popen(cmd)
p.wait()
time.sleep(1) # 等一秒确保音频文件写入硬盘
self.prepareParams(cutPath)
time.sleep(self.interval) # 腾讯这蛋疼的请求间隔 按1s请求就疯狂报错; 如果源语言是中文的话 间隔必须开到10s 否则一直返回重复字符
self.result.emit([start, delta, self.sourceText, self.targetText])
self.percent.emit((cnt + 1) / total * 100)
self.finish.emit(True)
class sepMainAudio(QThread): # 创建原音轨文件
mainAudioWave = Signal(list, list)
def __init__(self, videoPath, duration):
super().__init__()
self.videoPath = videoPath
self.duration = duration
def run(self):
if os.path.exists('temp_audio'): # 创建和清空temp_audio文件夹
try:
for i in os.listdir('temp_audio'):
os.remove(r'temp_audio\%s' % i)
except:
pass
else:
os.mkdir('temp_audio')
timeStamp = time.strftime("%Y_%m_%d_%H_%M_%S", time.localtime(time.time()))
wavePath = r'temp_audio\main_audio_%s.wav' % timeStamp
cmd = ['ffmpeg.exe', '-y', '-i', self.videoPath, '-vn', '-ar', '1000', wavePath]
p = subprocess.Popen(cmd)
p.wait()
_time, _wave = getWave(wavePath)
self.mainAudioWave.emit(_time, _wave) # 发送主音频波形
os.remove(wavePath) # 删除wav文件 太大了
self.audioPath = r'temp_audio\audio_original.aac' # 分离原音轨
if not os.path.exists(self.audioPath):
cmd = ['ffmpeg.exe', '-y', '-i', self.videoPath, '-vn', '-c', 'copy', self.audioPath]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
p.wait()
if p.poll() == 1: # 复制编码转码出错则按ffmpeg默认编码重新转一遍
cmd = ['ffmpeg.exe', '-y', '-i', self.videoPath, '-vn', self.audioPath]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
class manualVocalWindow(QWidget): # 自选阈值弹窗
def __init__(self):
super().__init__()
self.resize(600, 400)
layout = QGridLayout()
self.setLayout(layout)
def plot(self):
self.graph.plot([1, 2, 3], [1, 2, 3])
class separateQThread(QThread): # AI分离人声音轨及打轴的核心线程
position = Signal(int)
percent = Signal(float)
voiceList = Signal(list)
voiceWave = Signal(list, list, list, list, list)
finish = Signal(bool)
varList = Signal(list)
def __init__(self, videoPath, duration, videoStart, videoEnd, before, after, flash, mode, level, multiThread, parent=None):
super(separateQThread, self).__init__(parent)
for f in os.listdir('temp_audio'):
if '_wave' in f:
temp_wave = r'temp_audio\%s' % f
if os.path.getsize(temp_wave) < 250000:
os.remove(temp_wave) # 每次开始打轴前删除静音的临时文件
self.videoPath = videoPath
self.audioPath = r'temp_audio\audio_original.aac'
while not os.path.exists(self.audioPath): # 等待原音轨生成
time.sleep(0.5)
self.duration = duration
self.videoStart = videoStart
self.videoEnd = videoEnd
self.before = int(before)
self.after = int(after)
self.flash = int(flash)
self.mode = int(mode)
self.level = int(level)
if self.flash < 1:
self.flash = 1
if self.after == 0: # 向后查询至少要等于1
self.after = 1
self.separate = Separator('spleeter:2stems', stft_backend='tensorflow', multiprocess=multiThread)
self.audioLoader = get_default_audio_adapter()
self.terminalToken = False
def run(self):
manualVocalList = []
cuts = self.duration // 60000 + 1
preStart = 0 # 前一分钟结尾人声预留
start = 0 # 人声开始时间
lastVoiceTime = 0
voiceWaveTime = []
voiceWave = []
bgmWave = []
voiceWave_smooth = []
voiceWave_smooth_scale = []
for cut in range(cuts):
if cut >= self.videoStart and cut <= self.videoEnd and not self.terminalToken: # 只分析选中时间区域
audioPath = 'temp_audio.m4a'
cmd = ['ffmpeg.exe', '-y', '-i', self.audioPath, '-vn', '-ss', str(cut * 60), '-t', '60', audioPath]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
p.wait()
for line in p.stdout.readlines():
try:
line = line.decode('gb18030', 'ignore')
if 'Audio:' in line:
break
except:
pass
try:
line = line.lower()
for hz in line.split(','):
if 'hz' in hz:
hz = int(hz.split('hz')[0])
break
except:
hz = 44100
self.separate.separate_to_file(audioPath, '.\\', codec='wav') # 分离人声音轨
mp3Path_vocal = r'temp_audio\vocals_wave_%s_temp.mp3' % cut # 截取转码成mp3格式片段方便上传和播放
mp3Path_bgm = r'temp_audio\bgm_wave_%s_temp.mp3' % cut # 背景音转码成mp3格式
cmd = ['ffmpeg.exe', '-y', '-i', r'temp_audio\vocals.wav', mp3Path_vocal]
p = subprocess.Popen(cmd)
p.wait()
cmd = ['ffmpeg.exe', '-y', '-i', mp3Path_vocal, '-ss', '0', '-t', '60', '-c', 'copy', mp3Path_vocal.replace('_temp', '')]
p = subprocess.Popen(cmd) # 裁剪成精确的60s
p.wait()
os.remove(mp3Path_vocal)
cmd = ['ffmpeg.exe', '-y', '-i', r'temp_audio\accompaniment.wav', mp3Path_bgm]
p = subprocess.Popen(cmd) # 转码保留背景音轨
p.wait()
cmd = ['ffmpeg.exe', '-y', '-i', mp3Path_bgm, '-ss', '0', '-t', '60', '-c', 'copy', mp3Path_bgm.replace('_temp', '')]
p = subprocess.Popen(cmd) # 裁剪成精确的60s
p.wait()
os.remove(mp3Path_bgm)
wavePath = r'temp_audio\bgm_downsample.wav' # 获取bgm音轨波形
cmd = ['ffmpeg.exe', '-y', '-i', r'temp_audio\accompaniment.wav', '-vn', '-ar', '1000', wavePath] # 用ffmpeg再降一次采样
p = subprocess.Popen(cmd)
p.wait()
_, _wave = getWave(wavePath) # 发送人声波形
if len(_wave) > 60000:
_wave = _wave[:60000]
bgmWave += _wave # 拼接波形
wavePath = r'temp_audio\vocals_downsample.wav' # 获取人声音轨波形
cmd = ['ffmpeg.exe', '-y', '-i', r'temp_audio\vocals.wav', '-vn', '-ar', '1000', wavePath] # 用ffmpeg再降一次采样
p = subprocess.Popen(cmd)
p.wait()
_time, _wave = getWave(wavePath) # 发送人声波形
if len(_time) > 60000:
_time = _time[:60000] # 裁剪至一分钟
_wave = _wave[:60000]
_time = list(map(lambda x: x + cut * 60000, _time))
__wave = [] # 全部取绝对值
for w in _wave:
if w < 0:
__wave.append(abs(w))
else:
__wave.append(w)
wave_smooth = __wave[:5] # 平滑波形曲线 每10个点取平均
for i in range(5, len(__wave) - 5):
wave_smooth.append(np.mean(__wave[i - 5:i + 6]))
wave_smooth += __wave[-5:]
voiceWaveTime += _time # 拼接时间
voiceWave += _wave # 拼接波形
# 如果采用灵敏模式 进行一步spleeter分离人声特征波形
if self.mode:
waveform, _ = self.audioLoader.load(audioPath, sample_rate=hz) # 加载音频
prediction = self.separate.separate(waveform) # 核心部分 调用spleeter分离音频
msList = []
varList = []
voiceList = [[-9999, 1000]]
hz1000 = hz // 1000 # 1ms
for cnt, l in enumerate(prediction['vocals']): # 只提取人声键值
for i in l:
msList.append(i)
if not cnt % hz1000: # 每1ms取一次方差
varList.append(np.var(msList))
msList = []
if len(varList) > 60000: # 裁剪至一分钟
varList = varList[:60000]
if self.mode == 1: # 灵敏模式
varList = list(sklearn.preprocessing.minmax_scale(varList, axis=0)) # 缩放区间至0-1
med = np.median(varList) # 1分钟内所有方差中位数
avg = np.median(varList) # 1分钟内所有方差平均值
thres = avg if avg > med else med
# thres /= 2 # 灵敏模式阈值
elif self.mode == 2: # 自选模式
manualVocalList += varList # 将所有方差值先保存至内存
else:
varList = [0 for _ in range(len(_wave) + 10)]
thres = 1
# librosa
audio_path = r"temp_audio\vocals.wav"
x, sr = librosa.load(audio_path, sr=None)
spectral_rolloffs = librosa.feature.spectral_rolloff(x + 0.1, sr=sr)[0]
frames = range(len(spectral_rolloffs))
t = list(map(lambda x: x * 500, librosa.frames_to_time(frames)))
rolloffs_vocal = list(np.interp(list(range(len(_time))), t, spectral_rolloffs))
rolloffPlusSmooth = []
for i in range(len(_time)):
rolloffPlusSmooth.append((rolloffs_vocal[i] * wave_smooth[i]) ** 0.5) # 光谱衰减x波形平滑值然后开平方
voiceWave_smooth += rolloffPlusSmooth
rolloffPlusSmoothScale = list(sklearn.preprocessing.minmax_scale(rolloffPlusSmooth, axis=0)) # 缩放区间至0-1
voiceWave_smooth_scale += rolloffPlusSmoothScale
if self.level == 0: # 宽松断轴
cutLevel = 3600
elif self.level == 1: # 中等断轴
cutLevel = 1200
elif self.level == 2: # 严格断轴
cutLevel = 600
if self.mode != 2: # 非自选模式
voiceList = [[-9999, 1000]]
start = 0
end = 0 # 人声结束时间
cnt = self.before # 用户设置打轴前侧预留时间(ms)
while cnt < len(_wave) - 1: # 开始判断人声区域
rolloffToken = rolloffPlusSmoothScale[cnt] > 0.05 and rolloffPlusSmooth[cnt] > 100
waveToken = abs(_wave[cnt]) > 800
varToken = varList[cnt] > thres
if rolloffToken or waveToken or varToken or preStart: # 以上条件满足
startCnt = copy.deepcopy(cnt) # 打轴起始计数
if preStart: # 接上一分钟
start = preStart
preStart = 0
if not start:
start = cut * 60000 + cnt - self.before # 开始时间为当前时间-用户前侧留白时间
lastVoiceTime = sum(voiceList[-1])
if start - lastVoiceTime <= self.flash: # 向前检测闪轴
lastStart, _ = voiceList.pop()
voiceList.append([lastStart, start - lastStart]) # 将上一条轴结尾延续到下一条开头
# cnt += 10 # +10ms后开始向后查询
if cnt < len(_wave) - 1: # 没超出一分钟则开始往后查询
finishToken = False
tooLongToken = False
while not finishToken:
try: # 查询超出长度一律跳出循环
while rolloffPlusSmoothScale[cnt] > 0.05 or varList[cnt] > thres:
cnt += 1
if cnt - startCnt > 2000: # 字幕太长了!!!一旦响度小于轴内最大值/5立刻强制退出
if rolloffPlusSmoothScale[cnt] < 0.2:
tooLongToken = True
break
finishToken = True
searchRange = self.after + self.before
smallerThan10 = 0
for _ in range(searchRange): # 往后查询
cnt += 1
if rolloffPlusSmooth[cnt] < 10 and tooLongToken:
smallerThan10 += 1
else:
smallerThan10 = 0
if smallerThan10 >= searchRange / 2:
break
thresTime = (cnt - startCnt) / cutLevel
if thresTime < 1:
thresTime = 1
if cnt - startCnt <= 2500:
if rolloffPlusSmoothScale[cnt] > 0.1 * thresTime or \
varList[cnt] > thres * thresTime or \
rolloffPlusSmoothScale[cnt] > 0.25 or rolloffPlusSmooth[cnt] > 100:
finishToken = False # 若未触发字幕过长token 则依旧延续字幕轴
break
elif cnt - startCnt <= 4500:
if rolloffPlusSmoothScale[cnt] > 0.1 * thresTime or \
varList[cnt] > thres * thresTime or \
rolloffPlusSmoothScale[cnt] > 0.25:
finishToken = False # 若未触发字幕过长token 则依旧延续字幕轴
break
else:
if rolloffPlusSmoothScale[cnt] > 0.1 * thresTime or \
varList[cnt] > thres * thresTime:
finishToken = False # 若未触发字幕过长token 则依旧延续字幕轴
break
except:
break
if cnt < len(_wave) - self.before - self.after:
for tempCnt in range(self.before + self.after):
tempCnt += cnt
if rolloffPlusSmoothScale[tempCnt] > 0.1 * thresTime or \
varList[tempCnt] > thres * thresTime or \
rolloffPlusSmoothScale[tempCnt] > 0.4:
cnt = tempCnt - self.before
break
if cnt < len(_wave):
end = cut * 60000 + cnt # 结束时间即结束向后查询的时间
delta = end - start
lastStart, lastDelta = voiceList[-1]
if lastStart + lastDelta > start: # 越界检测
lastDelta = start - lastStart # 修改上一个delta值
voiceList = voiceList[:-1] + [[lastStart, lastDelta]]
if self.level == 0: # 宽松断轴
# 若相邻的两条轴其中一方短于1.25s则连起来
if lastStart + lastDelta >= start - self.flash - 300 and (lastDelta <= 2000 or delta <= 2000)\
and lastDelta <= 3000 and delta <= 3000: # 双方中若有一方大于3s则不合并
voiceList = voiceList[:-1] + [[lastStart, end - lastStart]]
else:
voiceList.append([start, delta]) # 添加起止时间给信号槽发送
elif self.level == 1: # 中等断轴
if lastStart + lastDelta >= start - self.flash - 300 and (lastDelta <= 1500 or delta <= 1500)\
and lastDelta <= 2500 and delta <= 2500: # 双方中若有一方大于2.5s则不合并
voiceList = voiceList[:-1] + [[lastStart, end - lastStart]]
else:
voiceList.append([start, delta]) # 添加起止时间给信号槽发送
elif self.level == 2: # 严格断轴
if lastStart + lastDelta >= start - self.flash and (lastDelta <= 800 or delta <= 800)\
and lastDelta <= 1500 and delta <= 1500: # 双方中若有一方大于1.5s则不合并
voiceList = voiceList[:-1] + [[lastStart, end - lastStart]]
else:
voiceList.append([start, delta]) # 添加起止时间给信号槽发送
start = 0
cnt += 1
else:
cnt += 1 # 没检测到人声则+1
if cnt >= len(_wave) and start:
preStart = start # 每分钟结尾若超出则传递给下一分钟接着计算
else:
preStart = 0
modifyVoiceList = []
for sub in voiceList:
if sub[0] >= 0: # 删除默认的起始时间小于0的轴
if sub[1] >= 500: # 过滤长度小于500ms的碎轴
modifyVoiceList.append(sub)
self.position.emit(cut + 1)
self.percent.emit((cut + 1) / cuts * 100)
self.voiceList.emit(modifyVoiceList)
else: # 自选模式打轴
self.varList.emit(varList) # 直接发送每分钟的方差列表
self.position.emit(cut + 1)
self.percent.emit((cut + 1) / cuts * 100)
else: # 未选中的时间区域
if cut == cuts - 1:
mp3Path_vocal = r'temp_audio\vocals_wave_%s.mp3' % cut # 创建静音文件填补空白
remain = self.duration % 60000
cmd = ['ffmpeg.exe', '-f', 'lavfi', '-i', 'anullsrc=r=44100:cl=mono', '-t', str(remain / 1000), '-q:a', '9',
'-acodec', 'libmp3lame', '-y', mp3Path_vocal]
p = subprocess.Popen(cmd)
p.wait()
shutil.copy(mp3Path_vocal, mp3Path_vocal.replace('vocals', 'bgm')) # 复制一份作为静音bgm片段
voiceWaveTime += [x + cut * 60000 for x in range(remain)]
zeroList = [0 for _ in range(remain)]
voiceWave += zeroList
voiceWave_smooth += zeroList
voiceWave_smooth_scale += zeroList
bgmWave += zeroList
self.percent.emit((cut + 1) / cuts * 100)
if self.mode == 2: # 自选模式
manualVocalList += [0 for _ in range(remain)]
self.varList.emit([0 for _ in range(remain)])
else:
mp3Path_vocal = r'temp_audio\vocals_wave_%s.mp3' % cut # 创建静音文件填补空白
cmd = ['ffmpeg.exe', '-f', 'lavfi', '-i', 'anullsrc=r=44100:cl=mono', '-t', '60', '-q:a', '9',
'-acodec', 'libmp3lame', '-y', mp3Path_vocal]
p = subprocess.Popen(cmd)
p.wait()
shutil.copy(mp3Path_vocal, mp3Path_vocal.replace('vocals', 'bgm')) # 复制一份作为静音bgm片段
voiceWaveTime += [x + cut * 60000 for x in range(60000)]
zeroList = [0 for _ in range(60000)]
voiceWave += zeroList
voiceWave_smooth += zeroList
voiceWave_smooth_scale += zeroList
bgmWave += zeroList
self.percent.emit((cut + 1) / cuts * 100)
if self.mode == 2: # 自选模式
manualVocalList += [0 for _ in range(60000)]
self.varList.emit([0 for _ in range(60000)])
self.voiceWave.emit(voiceWaveTime, voiceWave, voiceWave_smooth, voiceWave_smooth_scale, bgmWave)
with open('vocalsList.txt', 'w') as f: # 合并mp3
for cut in range(cuts):
f.write('file temp_audio/vocals_wave_%s.mp3\n' % cut)
with open('bgmList.txt', 'w') as f: # 合并mp3
for cut in range(cuts):
f.write('file temp_audio/bgm_wave_%s.mp3\n' % cut)
cmd = ['ffmpeg.exe', '-y', '-f', 'concat', '-safe', '0', '-i', 'vocalslist.txt', '-c', 'copy', r'temp_audio\vocals.mp3']
subprocess.Popen(cmd)
cmd = ['ffmpeg.exe', '-y', '-f', 'concat', '-safe', '0', '-i', 'bgmList.txt', '-c', 'copy', r'temp_audio\bgm.mp3']
subprocess.Popen(cmd)
self.finish.emit(True)
class reprocessSub(QDialog):
def __init__(self, videoStart, videoEnd, index):
super().__init__()
self.resize(400, 40)
self.setWindowTitle('修改第%s —— %s分钟时轴至第%s列字幕轨道' % (videoStart, videoEnd, index + 1))
layout = QGridLayout()
self.setLayout(layout)
self.processBar = QProgressBar()
layout.addWidget(self.processBar)
class reprocessQThread(QThread): # 自选模式下 AI分离人声音轨及打轴的核心线程
percent = Signal(float)
voiceList = Signal(list)
def __init__(self, before, after, flash, level, thres, videoStart, voiceWave, voiceWave_smooth_scale, voiceWave_smooth, varList, parent=None):
super(reprocessQThread, self).__init__(parent)
self.before = int(before)
self.after = int(after)
self.flash = int(flash)
self.level = level
self.thres = thres
self.videoStart = videoStart
self.voiceWave = voiceWave
self.voiceWave_smooth_scale = voiceWave_smooth_scale
self.voiceWave_smooth = voiceWave_smooth
self.varList = varList
def run(self):
if self.level == 0: # 宽松断轴
cutLevel = 3600
elif self.level == 1: # 中等断轴
cutLevel = 1200
elif self.level == 2: # 严格断轴
cutLevel = 600
end = 0
cnt = self.before # 用户设置打轴前侧预留时间(ms)
voiceList = [[-9999, 1000]]
while cnt < len(self.voiceWave) - 1: # 开始判断人声区域
if not cnt % 3000:
self.percent.emit(cnt / (len(self.voiceWave) - 1) * 100)
rolloffToken = self.voiceWave_smooth[cnt] > 800
varToken = self.varList[cnt] > self.thres # 大于用户手动选择的阈值
if rolloffToken or varToken: # 以上条件满足
startCnt = copy.deepcopy(cnt) # 打轴起始计数
start = cnt - self.before # 开始时间为当前时间-用户前侧留白时间
lastVoiceTime = sum(voiceList[-1])
if start - lastVoiceTime <= self.flash: # 向前检测闪轴
lastStart, _ = voiceList.pop()
voiceList.append([lastStart, start - lastStart]) # 将上一条轴结尾延续到下一条开头
if cnt < len(self.voiceWave) - 1: # 没超出一分钟则开始往后查询
finishToken = False
tooLongToken = False
while not finishToken:
try: # 查询超出长度一律跳出循环
while self.varList[cnt] > self.thres:
cnt += 1
if cnt - startCnt > 2000: # 字幕太长了!!!一旦响度小于轴内最大值/5立刻强制退出
if self.voiceWave_smooth_scale[cnt] < 0.2:
tooLongToken = True
break
finishToken = True
searchRange = self.after + self.before
smallerThan10 = 0
for _ in range(searchRange): # 往后查询
cnt += 1
if self.voiceWave_smooth[cnt] < 10 and tooLongToken:
smallerThan10 += 1
else:
smallerThan10 = 0
if smallerThan10 >= searchRange / 2:
break
thresTime = (cnt - startCnt) / cutLevel
if thresTime < 1:
thresTime = 1
if cnt - startCnt <= 4500:
if self.varList[cnt] > self.thres * thresTime or\
self.voiceWave_smooth_scale[cnt] > 0.1 * thresTime or\
self.voiceWave_smooth_scale[cnt] > 0.25:
finishToken = False # 若未触发字幕过长token 则依旧延续字幕轴
break
else:
if self.varList[cnt] > self.thres * thresTime or\
self.voiceWave_smooth_scale[cnt] > 0.1 * thresTime:
finishToken = False # 若未触发字幕过长token 则依旧延续字幕轴
break
except:
break
for tempCnt in range(self.before + self.after):
tempCnt += cnt
if self.varList[tempCnt] > self.thres * thresTime or \
self.voiceWave_smooth_scale[tempCnt] > 0.1 * thresTime or \
self.voiceWave_smooth_scale[tempCnt] > 0.25:
cnt = tempCnt - self.before
break
end = cnt # 结束时间即结束向后查询的时间
delta = end - start
lastStart, lastDelta = voiceList[-1]
if lastStart + lastDelta > start: # 越界检测
lastDelta = start - lastStart # 修改上一个delta值
voiceList = voiceList[:-1] + [[lastStart, lastDelta]]
if self.level == 0: # 宽松断轴
# 若相邻的两条轴其中一方短于1.25s则连起来
if lastStart + lastDelta >= start - self.flash - 300 and (lastDelta <= 2000 or delta <= 2000) \
and lastDelta <= 3000 and delta <= 3000: # 双方中若有一方大于3s则不合并
voiceList = voiceList[:-1] + [[lastStart, end - lastStart]]
else:
voiceList.append([start, delta]) # 添加起止时间给信号槽发送
elif self.level == 1: # 中等断轴
if lastStart + lastDelta >= start - self.flash - 300 and (lastDelta <= 1500 or delta <= 1500) \
and lastDelta <= 2500 and delta <= 2500: # 双方中若有一方大于2.5s则不合并
voiceList = voiceList[:-1] + [[lastStart, end - lastStart]]
else:
voiceList.append([start, delta]) # 添加起止时间给信号槽发送
elif self.level == 2: # 严格断轴
if lastStart + lastDelta >= start - self.flash and (lastDelta <= 800 or delta <= 800) \
and lastDelta <= 1500 and delta <= 1500: # 双方中若有一方大于1.5s则不合并
voiceList = voiceList[:-1] + [[lastStart, end - lastStart]]
else:
voiceList.append([start, delta]) # 添加起止时间给信号槽发送
cnt += 1
else:
cnt += 1 # 没检测到人声则+1
modifyVoiceList = []
for sub in voiceList:
if sub[0] >= 0: # 删除默认的起始时间小于0的轴
sub[0] += self.videoStart * 60000
if sub[1] >= 500: # 过滤长度小于500ms的碎轴
modifyVoiceList.append(sub)
self.voiceList.emit(modifyVoiceList)
self.percent.emit(100)
class Separate(QDialog): # 界面
videoPath = ''
duration = 60000
processToken = False
voiceList = Signal(list)
voiceWave_graph = Signal(list, list, list)
tablePreset = Signal(list)
translateResult = Signal(list)
clearSub = Signal(int, int, int) # 清空轴 传的是轴序号, 起始分钟, 结束分钟
multipleThread = False # 写死单进程
def __init__(self):
super().__init__()
self.settingDict = {'before': 30, # 前侧留白
'after': 300, # 后侧留白
'flash': 300, # 防止闪轴
'mode': 0, # 打轴模式 0: 快速, 1: 灵敏, 2: 自选
'level': 1, # 断轴标准 0: 宽松, 1: 正常, 2: 严格
'fill': 'AI自动打轴',
}
if os.path.exists('config'): # 导入已存在的设置
with open('config', 'r') as cfg:
for line in cfg:
if '=' in line:
try:
cfgName, cfgValue = line.strip().replace(' ', '').split('=')
self.settingDict[cfgName] = cfgValue
except Exception as e:
print(str(e))
self.resize(1000, 200)
self.setWindowTitle('AI智能打轴')
layout = QGridLayout()
self.setLayout(layout)
self.varList = []
layout.addWidget(QLabel('视频/音频开始时间'), 0, 0, 1, 1)
self.videoStart = QComboBox()
self.videoStart.setMaximumWidth(100)
layout.addWidget(self.videoStart, 0, 1, 1, 1)
layout.addWidget(QLabel(), 0, 2, 1, 1)
layout.addWidget(QLabel('视频/音频结束时间'), 0, 3, 1, 1)
self.videoEnd = QComboBox()
self.videoEnd.setMaximumWidth(100)
layout.addWidget(self.videoEnd, 0, 4, 1, 1)
endMinute, remain = divmod(self.duration, 60000)
endMinute = endMinute + 1 if not remain else endMinute + 2
self.videoStart.addItems(['第%s分钟' % i for i in range(0, endMinute - 1)])
self.videoStart.setCurrentIndex(0)
self.videoStart.currentIndexChanged.connect(self.resetStartEnd)
self.videoEnd.addItems(['第%s分钟' % i for i in range(1, endMinute)])
self.videoEnd.setCurrentIndex(endMinute - 1)
self.videoEnd.currentIndexChanged.connect(self.refreshGraph)
trackGroup = QGroupBox('AI自动打轴') # 自动打轴部分
trackLayout = QGridLayout()
trackGroup.setLayout(trackLayout)
layout.addWidget(trackGroup, 1, 0, 2, 5)
beforeLabel = QLabel(' 前侧留白(ms)')
beforeLabel.setAlignment(Qt.AlignRight | Qt.AlignVCenter)
trackLayout.addWidget(beforeLabel, 0, 0, 1, 1)
self.beforeEdit = QLineEdit(str(self.settingDict['before']))
self.beforeEdit.textChanged.connect(self.changeSetting)
validator = QIntValidator()
validator.setRange(0, 5000)
self.beforeEdit.setValidator(validator)
self.beforeEdit.setFixedWidth(50)
trackLayout.addWidget(self.beforeEdit, 0, 1, 1, 1)
afterLabel = QLabel(' 后侧留白(ms)')
afterLabel.setAlignment(Qt.AlignRight | Qt.AlignVCenter)
trackLayout.addWidget(afterLabel, 0, 2, 1, 1)
self.afterEdit = QLineEdit(str(self.settingDict['after']))
self.afterEdit.textChanged.connect(self.changeSetting)
self.afterEdit.setValidator(validator)
self.afterEdit.setFixedWidth(50)
trackLayout.addWidget(self.afterEdit, 0, 3, 1, 1)
antiFlashLabel = QLabel(' 防止闪轴(ms)')
antiFlashLabel.setAlignment(Qt.AlignRight | Qt.AlignVCenter)
trackLayout.addWidget(antiFlashLabel, 0, 4, 1, 1)
self.antiFlash = QLineEdit(str(self.settingDict['flash']))
self.antiFlash.textChanged.connect(self.changeSetting)
self.antiFlash.setValidator(validator)
self.antiFlash.setFixedWidth(50)
trackLayout.addWidget(self.antiFlash, 0, 5, 1, 1)
trackModeLabel = QLabel(' 打轴模式')
trackModeLabel.setAlignment(Qt.AlignRight | Qt.AlignVCenter)
trackLayout.addWidget(trackModeLabel, 0, 6, 1, 1)
self.trackMode = QComboBox()
self.trackMode.addItems(['快速', '灵敏', '自选'])
self.trackMode.setCurrentIndex(int(self.settingDict['mode']))
self.trackMode.currentIndexChanged.connect(self.changeSetting)
self.trackMode.currentIndexChanged.connect(self.showGraph)
trackLayout.addWidget(self.trackMode, 0, 7, 1, 1)
cutLabel = QLabel(' 断轴标准')
cutLabel.setAlignment(Qt.AlignRight | Qt.AlignVCenter)
trackLayout.addWidget(cutLabel, 0, 8, 1, 1)
self.cutLevel = QComboBox()
self.cutLevel.addItems(['宽松', '正常', '严格'])
self.cutLevel.setCurrentIndex(int(self.settingDict['level']))
self.cutLevel.currentIndexChanged.connect(self.changeSetting)
trackLayout.addWidget(self.cutLevel, 0, 9, 1, 1)
fillLabel = QLabel(' 填充字符')
fillLabel.setAlignment(Qt.AlignRight | Qt.AlignVCenter)
trackLayout.addWidget(fillLabel, 0, 10, 1, 1)
self.fillWord = QLineEdit()
self.fillWord.setMinimumWidth(100)
self.fillWord.setText(str(self.settingDict['fill']))
self.fillWord.textChanged.connect(self.changeSetting)
trackLayout.addWidget(self.fillWord, 0, 11, 1, 1)
self.outputIndex = QComboBox()
self.outputIndex.addItems(['输出至第%s列' % i for i in range(1, 6)])
trackLayout.addWidget(self.outputIndex, 0, 12, 1, 1)
self.processBar = QProgressBar()
trackLayout.addWidget(self.processBar, 1, 0, 1, 12)
self.checkButton = QPushButton('开始')
self.checkButton.setFixedWidth(100)
self.checkButton.clicked.connect(self.separateProcess)
trackLayout.addWidget(self.checkButton, 1, 12, 1, 1)
self.levelGraph = pg.PlotWidget() # 自选模式下的方差图
self.levelGraph.setMenuEnabled(False)
trackLayout.addWidget(self.levelGraph, 2, 0, 1, 13)
self.levelGraph.hide()
self.levelSlider = Slider() # 自选阈值滑动轴
self.levelSlider.setOrientation(Qt.Horizontal)
self.levelSlider.setMaximum(self.levelSlider.width())
self.levelSlider.setFixedWidth(self.levelSlider.width())
self.levelSlider.pointClicked.connect(self.refreshLevelLine)
trackLayout.addWidget(self.levelSlider, 3, 0, 1, 11)
self.levelSlider.hide()
self.levelEdit = QLabel() # 显示和修改当前阈值
trackLayout.addWidget(self.levelEdit, 3, 11, 1, 1)
self.levelEdit.hide()
self.levelConfirm = QPushButton('使用该阈值')
self.levelConfirm.clicked.connect(self.resetSubtitle) # 按照用户手选阈值重置字幕轴
self.levelConfirm.setEnabled(False) # 禁用确认阈值按钮
trackLayout.addWidget(self.levelConfirm, 3, 12, 1, 1)
self.levelConfirm.hide()
translateGroup = QGroupBox('AI语音翻译 (注意:腾讯旧版翻译接口现已关闭新用户注册,此功能已处于半废弃状态,预留等以后新接口出现)') # 自动翻译部分
translateLayout = QGridLayout()
translateGroup.setLayout(translateLayout)
# layout.addWidget(translateGroup, 3, 0, 2, 5)
self.sourceLanguage = QComboBox()
self.sourceLanguage.addItems(['源语言 - 日语 ', '源语言 - 英语 ', '源语言 - 韩语 ', '源语言 - 中文'])
translateLayout.addWidget(self.sourceLanguage, 0, 0, 1, 2)
self.sourceOutput = QComboBox()
self.sourceOutput.addItems(['输出至第%s列' % i for i in range(1, 6)] + ['不保存'])
self.sourceOutput.setCurrentIndex(5)
translateLayout.addWidget(self.sourceOutput, 0, 2, 1, 1)
self.targetLanguage = QComboBox()
self.targetLanguage.addItems(['目标语言 - 日语 ', '目标语言 - 英语 ', '目标语言 - 韩语 ', '目标语言 - 中文'])
self.targetLanguage.setCurrentIndex(3)
translateLayout.addWidget(self.targetLanguage, 1, 0, 1, 2)
self.targetOutput = QComboBox()
self.targetOutput.addItems(['翻译第%s列' % i for i in range(1, 6)])
translateLayout.addWidget(self.targetOutput, 1, 2, 1, 1)
self.tipLabel = QLabel('腾讯AI翻译(需联网) 翻译前请确认翻译列有打好的轴。 APPID、APPKEY申请地址: https://ai.qq.com/')
self.tipLabel.setTextInteractionFlags(Qt.TextSelectableByMouse)
translateLayout.addWidget(self.tipLabel, 0, 4, 1, 7)
self.APPID = ''
self.APPKEY = ''
if os.path.exists('translate_account.log'): # 检测账号信息
try:
with open('translate_account.log', 'r') as f:
f = f.readlines()
self.APPID = f[0].strip()
self.APPKEY = f[1].strip()
except:
pass
translateLayout.addWidget(QLabel('APPID'), 1, 4, 1, 1)
self.APPIDEdit = QLineEdit(self.APPID)
translateLayout.addWidget(self.APPIDEdit, 1, 5, 1, 2)
translateLayout.addWidget(QLabel('APPKEY'), 1, 8, 1, 1)
self.APPKEYEdit = QLineEdit(self.APPKEY)
translateLayout.addWidget(self.APPKEYEdit, 1, 9, 1, 2)
self.translateProcessBar = QProgressBar()
translateLayout.addWidget(self.translateProcessBar, 2, 0, 1, 10)
self.translateButton = QPushButton('开始')
self.translateButton.setFixedWidth(100)
# self.translateButton.setEnabled(False)
self.translateButton.clicked.connect(self.startTranslate)
translateLayout.addWidget(self.translateButton, 2, 10, 1, 1)
self.networkToken = False
self.translateToken = False
self.voiceDict = {}
# self.ping = pingTencent() # 检查网络线程
# self.ping.pingResult.connect(self.checkNetwork)
# self.ping.start()
def setDefault(self, videoPath, duration, subtitleDict):
self.videoPath = videoPath
self.duration = duration
self.subtitleDict = subtitleDict
self.resetStartEnd()
def changeSetting(self):
self.settingDict = {'before': self.beforeEdit.text(), # 前侧留白
'after': self.afterEdit.text(), # 后侧留白
'flash': self.antiFlash.text(), # 防止闪轴
'mode': self.trackMode.currentIndex(), # 打轴模式 0: 快速, 1: 灵敏, 2: 自选
'level': self.cutLevel.currentIndex(), # 断轴标准 0: 宽松, 1: 正常, 2: 严格
'fill': self.fillWord.text(),
}
try:
with open('config', 'w') as cfg: # 尝试更新配置文件
for cfgName, cfgValue in self.settingDict.items():
cfg.write('%s=%s\n' % (cfgName, cfgValue))
except Exception as e:
print(str(e))
def showGraph(self, index): # 隐藏或显示阈值图
if index != 2:
self.levelGraph.hide()
self.levelSlider.hide()
self.levelEdit.hide()
self.levelConfirm.hide()
self.resize(1000, 200)
else:
self.levelGraph.show()
self.levelSlider.show()
self.levelEdit.show()
self.levelConfirm.show()
self.resize(1000, 650)
def resetStartEnd(self, startIndex=0): # 重置视频起止时间
self.videoStart.currentIndexChanged.disconnect(self.resetStartEnd) # 清空combobox前要断开signal 否则会崩溃
self.videoEnd.currentIndexChanged.disconnect(self.refreshGraph)
old_endIndex = self.videoEnd.currentIndex()
self.videoStart.clear()
self.videoEnd.clear()
endMinute, remain = divmod(self.duration, 60000)
endMinute = endMinute + 1 if not remain else endMinute + 2
self.videoStart.addItems(['第%s分钟' % i for i in range(0, endMinute - 1)])
self.videoStart.setCurrentIndex(startIndex)
endIndex = old_endIndex if old_endIndex >= startIndex else endMinute - 2
self.videoEnd.addItems(['第%s分钟' % i for i in range(1, endMinute)])
for i in range(startIndex):
self.videoEnd.model().item(i).setEnabled(False)
self.videoEnd.setCurrentIndex(endIndex)
self.videoStart.currentIndexChanged.connect(self.resetStartEnd)
self.videoEnd.currentIndexChanged.connect(self.refreshGraph)
self.refreshGraph()
def separateProcess(self):
if self.videoPath:
self.processToken = not self.processToken
if self.processToken:
self.processBar.setValue(0)
self.checkButton.setText('初始化中')
if not self.beforeEdit.text():
self.beforeEdit.setText('0')
self.before = self.beforeEdit.text()
if not self.afterEdit.text():
self.afterEdit.setText('0')
self.after = self.afterEdit.text()
if not self.antiFlash.text():
self.antiFlash.setText('0')
self.flash = self.antiFlash.text()
mode = self.trackMode.currentIndex()
self.level = self.cutLevel.currentIndex()
try:
fillWord = self.fillWord.text()
except:
fillWord = ' '
index = self.outputIndex.currentIndex()
videoStart = self.videoStart.currentIndex()
videoEnd = self.videoEnd.currentIndex()
self.sepProc = separateQThread(self.videoPath, self.duration, videoStart, videoEnd, self.before,
self.after, self.flash, mode, self.level, self.multipleThread)
self.sepProc.position.connect(self.setTitle) # 设置标题分析至第几分钟
self.sepProc.percent.connect(self.setProgressBar) # 设置滚动条进度
self.sepProc.voiceList.connect(self.sendVoiceList) # 二次传球给主界面标记表格
self.sepProc.voiceWave.connect(self.sendVoiceWave) # 二次传球给主界面绘制人声音频图
self.clearSub.emit(index, videoStart, videoEnd) # 清空原有字幕轴 防止叠轴
self.levelGraph.clear()
self.varList = [] # 初始化总体方差分布列表
self.thres = 0 # 初始化阈值为0
self.levelLine = None # 初始化阈值横线为空
self.levelConfirm.setEnabled(False) # 禁用确认阈值按钮
self.sepProc.varList.connect(self.replotGraph) # 接受spleeter线程每分钟返回来的方差列表并绘制到图里用于用户自选打轴
self.tablePreset.emit([fillWord, index]) # 填充文本 输出列
self.sepProc.finish.connect(self.sepFinished)
self.sepProc.start()
else:
self.checkButton.setText('停止中')
self.checkButton.setEnabled(False)
self.processToken = not self.processToken
self.sepProc.terminalToken = True
def setTitle(self, pos):
self.setWindowTitle('AI智能打轴 (已分析至第%s分钟)' % pos)
def setProgressBar(self, percent):
self.checkButton.setText('停止')
self.checkButton.setStyleSheet('background-color:#3daee9')
self.processBar.setValue(percent)
def sendVoiceList(self, voiceList):
for voice in voiceList:
start, delta = voice
self.voiceDict[start] = delta # 记录人声音轨以便后续翻译使用
self.voiceList.emit(voiceList)
def sendVoiceWave(self, x, y, y2, y3, bgm):
self.voiceWaveTime, self.voiceWave, self.voiceWave_smooth = x, y, y2 # 创建变量用于自选模式打轴
self.voiceWave_smooth_scale = y3 # 缩放至0-1区间的数据
self.voiceWave_graph.emit(x, y2, bgm)
def replotGraph(self, varList): # 自选模式下每分钟刷新方差分布直方图
self.varList += varList # 将每分钟的方差添加至总体方差列表
videoStart = self.videoStart.currentIndex()
videoEnd = self.videoEnd.currentIndex() + 1
varList = varList[::videoEnd - videoStart] # 按选择时长降采样
replotToken = False
for i in varList:
if i > 0:
replotToken = True
break
if replotToken:
med = np.median(self.varList)
avg = np.mean(self.varList)
self.autoThres = avg if avg > med else med
self.autoThres *= 4
thres = self.autoThres / 32 # 灵敏模式下的默认阈值
if not self.levelLine:
self.levelLine = self.levelGraph.addLine(y=thres, pen=pg.mkPen('#d93c30', width=2))
self.levelLine.setZValue(10)
else:
self.levelLine.setValue(thres)
self.levelSlider.setValue(self.levelSlider.width() / 2)
self.levelEdit.setText('%.10f' % thres)
self.levelGraph.plot(range(len(varList)), varList, pen=None, symbol='o', symbolSize=1, symbolBrush=(100, 100, 100, 100))
def refreshGraph(self):
if self.varList:
videoStart = self.videoStart.currentIndex()
videoEnd = self.videoEnd.currentIndex() + 1
varEnd = videoEnd * 60000 if videoEnd * 60000 < len(self.varList) else len(self.varList)
varList = self.varList[videoStart * 60000:varEnd:videoEnd - videoStart] # 按选择时长降采样
replotToken = False
for i in varList:
if i > 0:
replotToken = True
break
if replotToken:
med = np.median(varList)
avg = np.mean(varList)
self.autoThres = avg if avg > med else med
self.autoThres *= 4
thres = self.autoThres / 32 # 灵敏模式下的默认阈值
if not self.levelLine:
self.levelLine = self.levelGraph.addLine(y=thres, pen=pg.mkPen('#d93c30', width=2))
self.levelLine.setZValue(10)
else:
self.levelLine.setValue(thres)
self.levelSlider.setValue(self.levelSlider.width() / 2)
self.levelEdit.setText('%.10f' % thres)
self.levelGraph.plot(range(len(varList)), varList, pen=None, symbol='o', symbolSize=1, symbolBrush=(100, 100, 100, 100), clear=True)
self.levelLine = self.levelGraph.addLine(y=thres, pen=pg.mkPen('#d93c30', width=2))
self.levelLine.setZValue(10)
def refreshLevelLine(self, p): # 滑动条跟随鼠标
x = p.x()
if x < 0: # 限制
x = 0
elif x > self.levelSlider.width():
x = self.levelSlider.width()
self.levelSlider.setValue(x)
if self.levelLine and self.autoThres:
if self.autoThres < 0.0005:
self.autoThres = 0.0005
self.thres = x * self.autoThres / self.levelSlider.width() # 用户手动选择阈值
self.levelLine.setValue(self.thres)
self.levelEdit.setText('%.10f' % self.thres)
def resetSubtitle(self): # 自选模式下根据用户选择阈值重新打轴
index = self.outputIndex.currentIndex()
videoStart = self.videoStart.currentIndex()
videoEnd = self.videoEnd.currentIndex() + 1
self.clearSub.emit(index, videoStart, videoEnd) # 重新调整轴之前先清空一次
try:
fillWord = self.fillWord.text()
except:
fillWord = ' '
index = self.outputIndex.currentIndex()
self.tablePreset.emit([fillWord, index]) # 填充文本 输出列
self.reprocessSub = reprocessSub(videoStart, videoEnd, index)
self.reprocessSub.show()
before = int(self.beforeEdit.text())
after = int(self.afterEdit.text())
flash = int(self.antiFlash.text())
level = self.cutLevel.currentIndex()
voiceWave = self.voiceWave[videoStart * 60000:videoEnd * 60000]
voiceWave_smooth_scale = self.voiceWave_smooth_scale[videoStart * 60000:videoEnd * 60000]
voiceWave_smooth = self.voiceWave_smooth[videoStart * 60000:videoEnd * 60000]
varList = self.varList[videoStart * 60000:videoEnd * 60000]
self.reprocessThread = reprocessQThread(before, after, flash, level, self.thres, videoStart,
voiceWave, voiceWave_smooth_scale, voiceWave_smooth, varList)
self.reprocessThread.percent.connect(self.refreshReprocessBar)
self.reprocessThread.voiceList.connect(self.sendVoiceList)
self.reprocessThread.start()
self.reprocessThread.exec_()
def refreshReprocessBar(self, percent):
self.reprocessSub.processBar.setValue(percent)
def sepFinished(self, result):
if result:
self.processToken = not self.processToken
self.setWindowTitle('AI智能打轴')
self.processBar.setValue(100)
self.checkButton.setText('开始')
self.checkButton.setEnabled(True)
self.checkButton.setStyleSheet('background-color:#31363b')
self.sepProc.terminate()
self.sepProc.quit()
self.sepProc.wait()
if self.varList: # 若视频方差值有效 则开启自选阈值确认按钮
self.levelConfirm.setEnabled(True)
def checkNetwork(self, pingResult):
self.networkToken = pingResult
def startTranslate(self): # 开始翻译
if not self.translateToken:
sourceIndex = self.sourceLanguage.currentIndex()
targetIndex = self.targetLanguage.currentIndex()
self.sourceOutputIndex = self.sourceOutput.currentIndex()
self.targetOutputIndex = self.targetOutput.currentIndex()
if not self.networkToken:
self.tipLabel.setTExt('无法连接至腾讯AI平台 请检查网络') # 若无法连接网络则重新检查一次
self.ping.start()
else:
vocalPath = os.path.join(os.getcwd(), r'temp_audio\audio_original.aac')
if not os.path.exists(vocalPath):
self.tipLabel.setText('未检测到视频音轨%s 请尝试重新加载视频以生成音轨文件' % vocalPath)
elif not self.APPIDEdit.text() or not self.APPKEYEdit.text():
self.tipLabel.setText('APPID和APPKEY不能为空 请到腾讯AI开放平台申请一份: https://ai.qq.com/')
else:
APPID = self.APPIDEdit.text()
APPKEY = self.APPKEYEdit.text()
with open('translate_account.log', 'w') as f: # 保存APPID和APPKEY副本以便下次启动直接填入
f.write('%s\n%s\n' % (APPID, APPKEY))
self.tipLabel.setText('开始翻译第%s列' % (self.targetOutputIndex + 1))
self.translateButton.setText('停止')
self.translateButton.setStyleSheet('background-color:#3daee9')
translateDict = self.subtitleDict[self.targetOutputIndex]
videoStart = self.videoStart.currentIndex()
videoEnd = self.videoEnd.currentIndex()
self.translate = translateThread(translateDict, videoStart, videoEnd, sourceIndex, targetIndex, APPID, APPKEY)
self.translate.percent.connect(self.setTranslateProcessBar)
self.translate.result.connect(self.sendTranslateResults)
self.translate.finish.connect(self.translateFinished)
self.translate.start()
else:
self.translateButton.setText('开始')
self.translateButton.setStyleSheet('background-color:#31363b')
self.translateProcessBar.setValue(0)
self.translate.terminate()
self.translate.quit()
self.translate.wait()
self.translateToken = not self.translateToken
def setTranslateProcessBar(self, percent):
self.translateProcessBar.setValue(percent)
def sendTranslateResults(self, result): # start, delta, source, target, sourceIndex, targetIndex
self.translateResult.emit(result + [self.sourceOutputIndex, self.targetOutputIndex])
def translateFinished(self, result):
if result:
self.translate.terminate()
self.translate.quit()
self.translate.wait()
self.translateButton.setText('开始')
self.translateButton.setStyleSheet('background-color:#31363b')
self.translateProcessBar.setValue(100)
================================================
FILE: utils/anime4k.py
================================================
# -*- coding: utf-8 -*-
import os, subprocess, time, psutil, shutil
from PySide2.QtWidgets import QWidget, QGridLayout, QFileDialog, QDialog, QSlider, QApplication,\
QLabel, QPushButton, QHBoxLayout, QLineEdit, QComboBox, QTabWidget, QMessageBox
from PySide2.QtGui import QPixmap, QPainter, QWheelEvent, QMouseEvent
from PySide2.QtCore import Qt, QTimer, QPoint, QThread, Signal, QSize
def calSubTime(t):
'''
receive str
return int
h:m:s.ms -> ms in total
'''
t = t.replace(',', '.').replace(':', ':')
h, m, s = t.split(':')
if '.' in s:
s, ms = s.split('.')
ms = ('%s00' % ms)[:3]
else:
ms = 0
h, m, s, ms = map(int, [h, m, s, ms])
return h * 3600000 + m * 60000 + s * 1000 + ms
def processingArg(processingTokenList): # 计算并返回预处理和后处理的参数
# 中性模糊,平均模糊,CAS锐化,高斯模糊,双向过滤
processingList = [1, 2, 4, 16, 32]
tmp = []
for cnt, token in enumerate(processingTokenList):
if token:
tmp.append(processingList[cnt])
if tmp:
r = tmp[0]
for i in tmp[1:]:
r += i
return str(r)
else:
return None
class label(QLabel):
def __init__(self, name):
super().__init__()
self.setText(name)
self.setAlignment(Qt.AlignCenter)
class pushButton(QPushButton):
def __init__(self, name, pushToken=False):
super().__init__()
self.setText(name)
self.pushToken = pushToken
self.clicked.connect(self.push)
def push(self):
self.pushToken = not self.pushToken
if self.pushToken: # 按下状态
self.setStyleSheet('background-color:#3daee9')
else:
self.setStyleSheet('background-color:#31363b')
class ImageWithMouseControl(QWidget):
wheelSignal = Signal(QWheelEvent, QSize)
moveSignal = Signal(QMouseEvent, QPoint, QPoint)
def __init__(self, imgPath, parent=None):
super().__init__(parent)
self.parent = parent
self.img = QPixmap(imgPath)
self.scaled_img = self.img
self.point = QPoint(0, 0)
def setImagePath(self, imgPath, scaleSize=''):
self.img = QPixmap(imgPath)
if scaleSize:
self.scaled_img = self.img.scaled(scaleSize)
else:
self.scaled_img = self.img
if self.scaled_img.height() and self.scaled_img.width():
self.heightScale = 100 * self.scaled_img.height() // self.scaled_img.width()
else:
self.heightScale = 56
self.point = QPoint(0, 0)
self.update()
def paintEvent(self, e):
painter = QPainter()
painter.begin(self)
self.draw_img(painter)
painter.end()
def recivePaintEvent(self, point):
painter = QPainter()
painter.begin(self)
self.draw_img(painter, point)
painter.end()
def draw_img(self, painter, point=''):
if not point:
painter.drawPixmap(self.point, self.scaled_img)
else:
self.point = point
painter.drawPixmap(self.point, self.scaled_img)
def mouseMoveEvent(self, e): # 重写移动事件
if self.left_click:
self._endPos = e.pos() - self._startPos
self.point = self.point + self._endPos
self.moveSignal.emit(e, self._startPos, self.point) # 向主函数发送坐标信息
self._startPos = e.pos()
self.repaint()
def reciveMoveEvent(self, e, startPos):
self._endPos = e.pos() - startPos
self.point = self.point + self._endPos
self._startPos = e.pos()
self.repaint()
def mousePressEvent(self, e):
if e.button() == Qt.LeftButton:
self.left_click = True
self._startPos = e.pos()
def mouseReleaseEvent(self, e):
if e.button() == Qt.LeftButton:
self.left_click = False
def wheelEvent(self, e):
if e.angleDelta().y() < 0:
# 放大图片
self.scaled_img = self.img.scaled(self.scaled_img.width() - 100, self.scaled_img.height() - self.heightScale)
new_w = e.x() - (self.scaled_img.width() * (e.x() - self.point.x())) / (self.scaled_img.width() + 100)
new_h = e.y() - (self.scaled_img.height() * (e.y() - self.point.y())) / (self.scaled_img.height() + self.heightScale)
self.point = QPoint(new_w, new_h)
self.repaint()
elif e.angleDelta().y() > 0:
# 缩小图片
self.scaled_img = self.img.scaled(self.scaled_img.width() + 100, self.scaled_img.height() + self.heightScale)
try:
new_w = e.x() - (self.scaled_img.width() * (e.x() - self.point.x())) / (self.scaled_img.width() - 100)
new_h = e.y() - (self.scaled_img.height() * (e.y() - self.point.y())) / (self.scaled_img.height() - self.heightScale)
self.point = QPoint(new_w, new_h)
self.repaint()
except:
pass
self.wheelSignal.emit(e, self.scaled_img.size())
def reciveWheelEvent(self, e):
if e.angleDelta().y() < 0:
# 放大图片
self.scaled_img = self.img.scaled(self.scaled_img.width() - 100, self.scaled_img.height() - self.heightScale)
new_w = e.x() - (self.scaled_img.width() * (e.x() - self.point.x())) / (self.scaled_img.width() + 100)
new_h = e.y() - (self.scaled_img.height() * (e.y() - self.point.y())) / (self.scaled_img.height() + self.heightScale)
self.point = QPoint(new_w, new_h)
self.repaint()
elif e.angleDelta().y() > 0:
# 缩小图片
self.scaled_img = self.img.scaled(self.scaled_img.width() + 100, self.scaled_img.height() + self.heightScale)
try:
new_w = e.x() - (self.scaled_img.width() * (e.x() - self.point.x())) / (self.scaled_img.width() - 100)
new_h = e.y() - (self.scaled_img.height() * (e.y() - self.point.y())) / (self.scaled_img.height() - self.heightScale)
self.point = QPoint(new_w, new_h)
self.repaint()
except:
pass
def resizeEvent(self, e):
if self.parent is not None:
self.scaled_img = self.img.scaled(self.size())
self.point = QPoint(0, 0)
self.update()
class preview(QThread):
finish = Signal()
def __init__(self, args, parent=None):
super(preview, self).__init__(parent)
self.args = args
def run(self):
preProcessing = processingArg(self.args['preProcessing'])
postProcessing = processingArg(self.args['postProcessing'])
cmd = ['Anime4KCPP_CLI.exe', '-i', 'temp_origin.jpg', '-o', 'temp_4k.jpg', '-p', self.args['passes'],
'-n', self.args['pushColorCount'], '-c', self.args['strengthColor'], '-g', self.args['strengthGradient'],
'-z', self.args['zoomFactor'], self.args['fastMode']]
if preProcessing:
cmd += ['-b', '-r', preProcessing]
if postProcessing:
cmd += ['-a', '-e', postProcessing]
if self.args['ACNet']:
cmd += [self.args['ACNet'], self.args['hdnMode']]
p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE)
p.wait()
self.finish.emit()
class expand(QThread):
fail = Signal()
def __init__(self, args, parent=None):
super(expand, self).__init__(parent)
self.args = args
def run(self):
initToken = True
try:
if os.path.exists('temp_video'):
shutil.rmtree('temp_video')
os.mkdir('temp_video')
except:
try:
for f in os.listdir('temp_video'):
os.remove('temp_video/%s' % f)
except:
initToken = False
self.fail.emit() # 清空temp_video文件夹失败
if initToken:
shutil.copy(self.args['videoPath'], 'temp_video/tempVideo')
preProcessing = processingArg(self.args['preProcessing'])
postProcessing = processingArg(self.args['postProcessing'])
cmd = ['Anime4KCPP_CLI.exe', '-i', 'temp_video/tempVideo', '-o', 'temp_video/tempVideo_4K', '-p', self.args['passes'],
'-n', self.args['pushColorCount'], '-c', self.args['strengthColor'], '-g', self.args['strengthGradient'],
'-t', self.args['threads'], '-z', self.args['zoomFactor'], self.args['fastMode'], self.args['gpuMode'], '-v']
if preProcessing:
cmd += ['-b', '-r', preProcessing]
if postProcessing:
cmd += ['-a', '-e', postProcessing]
if self.args['ACNet']:
cmd += [self.args['ACNet'], self.args['hdnMode']]
with open('expand.bat', 'w') as batch:
batch.write('@echo off\nstart cmd /k "')
for c in cmd[:-1]:
batch.write(c + ' ')
batch.write(cmd[-1] + '"')
os.system('expand.bat')
finish = False
while not finish:
for f in os.listdir('temp_video'):
if 'tempVideo_4K' in f:
finish = True
time.sleep(5)
shutil.move('temp_video/%s' % f, self.args['outputPath'])
shutil.rmtree('temp_video')
QMessageBox.information(self, 'Anime4K扩展', '扩展完成', QMessageBox.Ok)
time.sleep(5)
class Slider(QSlider):
pointClicked = Signal(QPoint)
def mousePressEvent(self, event):
self.pointClicked.emit(event.pos())
def mouseMoveEvent(self, event):
self.pointClicked.emit(event.pos())
class Anime4KDialog(QWidget):
def __init__(self):
super().__init__()
screenRect = QApplication.primaryScreen().geometry()
screenHeight = screenRect.height() * 2 / 3
screenWidth = screenRect.width() * 3 / 4
self.resize(screenWidth, screenHeight)
self.setWindowTitle('Anime4K画质扩展')
self.showMaximized()
self.videoPath = ''
self.outputPath = ''
self.videoWidth = 0
self.videoHeight = 0
# self.scaleSize = QSize(self.videoWidth * 1.5, self.videoHeight * 1.5)
self.duration = 0
self.videoPos = 0
self.gpuMode = ''
self.acnetMode = ''
self.hdnMode = ''
self.processing = [False for _ in range(10)] # 5种预处理 + 5种后处理
layout = QGridLayout()
self.setLayout(layout)
self.previewTab = QTabWidget()
layout.addWidget(self.previewTab, 0, 0, 4, 3)
# self.preview = QLabel('效果预览')
# self.preview.setFixedSize(screenWidth * 4 / 5, screenWidth * 9 / 20)
#
# self.preview.setScaledContents(True)
# self.preview.setAlignment(Qt.AlignCenter)
# self.preview.setStyleSheet("QLabel{background:white;}")
self.preview = ImageWithMouseControl('')
previewWidget = QWidget()
previewWidgetLayout = QGridLayout()
previewWidget.setLayout(previewWidgetLayout)
previewWidgetLayout.addWidget(self.preview)
self.previewTab.addTab(previewWidget, '预览')
compareWidget = QWidget()
compareLayout = QHBoxLayout()
compareWidget.setLayout(compareLayout)
self.originPreview = ImageWithMouseControl('')
self.scaledPreview = ImageWithMouseControl('')
self.originPreview.wheelSignal.connect(self.scaledReciveWheelEvent)
self.originPreview.moveSignal.connect(self.scaledReciveMoveEvent)
self.scaledPreview.wheelSignal.connect(self.originReciveWheelEvent)
self.scaledPreview.moveSignal.connect(self.originReciveMoveEvent)
compareLayout.addWidget(self.originPreview)
compareLayout.addWidget(self.scaledPreview)
self.previewTab.addTab(compareWidget, '对比')
self.previewTab.setCurrentIndex(1)
self.point = ''
self.previewSlider = Slider()
self.previewSlider.setOrientation(Qt.Horizontal)
self.previewSlider.setMinimum(0)
self.previewSlider.setMaximum(1000)
self.previewSlider.pointClicked.connect(self.setPreviewSlider)
layout.addWidget(self.previewSlider, 4, 0, 1, 3)
optionWidget = QWidget()
layout.addWidget(optionWidget, 0, 3, 5, 1)
optionLayout = QGridLayout()
optionLayout.setVerticalSpacing(screenHeight / 15)
optionWidget.setLayout(optionLayout)
optionLayout.addWidget(QLabel(), 0, 0, 1, 1)
self.videoPathButton = QPushButton('选择视频')
self.videoPathButton.clicked.connect(self.selectVideo)
optionLayout.addWidget(self.videoPathButton, 1, 0, 1, 1)
self.videoPathEdit = QLineEdit()
optionLayout.addWidget(self.videoPathEdit, 1, 1, 1, 5)
self.outputPathButton = QPushButton('输出路径')
self.outputPathButton.clicked.connect(self.setSavePath)
optionLayout.addWidget(self.outputPathButton, 2, 0, 1, 1)
self.outputPathEdit = QLineEdit()
optionLayout.addWidget(self.outputPathEdit, 2, 1, 1, 5)
optionLayout.addWidget(label('处理次数'), 3, 0, 1, 1)
self.passes = QComboBox()
self.passes.addItems([str(i) for i in range(1, 6)])
self.passes.setCurrentIndex(1)
optionLayout.addWidget(self.passes, 3, 1, 1, 1)
optionLayout.addWidget(label('细化边缘'), 3, 2, 1, 1)
self.strengthColor = QComboBox()
self.strengthColor.addItems([str(i) for i in range(11)])
self.strengthColor.setCurrentIndex(3)
optionLayout.addWidget(self.strengthColor, 3, 3, 1, 1)
optionLayout.addWidget(label('细化次数'), 3, 4, 1, 1)
self.pushColorCount = QComboBox()
self.pushColorCount.addItems([str(i) for i in range(1, 6)])
self.pushColorCount.setCurrentIndex(1)
optionLayout.addWidget(self.pushColorCount, 3, 5, 1, 1)
optionLayout.addWidget(label('锐化程度'), 4, 0, 1, 1)
self.strengthGradient = QComboBox()
self.strengthGradient.addItems([str(i) for i in range(11)])
self.strengthGradient.setCurrentIndex(10)
optionLayout.addWidget(self.strengthGradient, 4, 1, 1, 1)
optionLayout.addWidget(label('放大倍数'), 4, 2, 1, 1)
self.zoomFactor = QComboBox()
self.zoomFactor.addItems([str(i * 0.5) for i in range(3, 9)])
self.zoomFactor.setCurrentIndex(1)
self.zoomFactor.currentIndexChanged.connect(self.setTip)
optionLayout.addWidget(self.zoomFactor, 4, 3, 1, 1)
optionLayout.addWidget(label('快速模式'), 4, 4, 1, 1)
self.fastMode = QComboBox()
self.fastMode.addItems(['关闭', '开启'])
optionLayout.addWidget(self.fastMode, 4, 5, 1, 1)
preProcessingLabel = QLabel('预处理')
preProcessingLabel.setAlignment(Qt.AlignCenter)
optionLayout.addWidget(preProcessingLabel, 5, 0, 1, 1)
preMedianBlur = pushButton('中性模糊')
preMedianBlur.clicked.connect(lambda: self.setProcessing(0))
optionLayout.addWidget(preMedianBlur, 5, 1, 1, 1)
preMeanBlur = pushButton('平均模糊')
preMeanBlur.clicked.connect(lambda: self.setProcessing(1))
optionLayout.addWidget(preMeanBlur, 5, 2, 1, 1)
preCAS = pushButton('CAS锐化')
preCAS.clicked.connect(lambda: self.setProcessing(2))
optionLayout.addWidget(preCAS, 5, 3, 1, 1)
preGaussianBlur = pushButton('高斯模糊')
preGaussianBlur.clicked.connect(lambda: self.setProcessing(3))
optionLayout.addWidget(preGaussianBlur, 5, 4, 1, 1)
preBilateralFilter = pushButton('双向过滤')
preBilateralFilter.clicked.connect(lambda: self.setProcessing(4))
optionLayout.addWidget(preBilateralFilter, 5, 5, 1, 1)
postProcessingLabel = QLabel('后处理')
postProcessingLabel.setAlignment(Qt.AlignCenter)
optionLayout.addWidget(postProcessingLabel, 6, 0, 1, 1)
postMedianBlur = pushButton('中性模糊')
postMedianBlur.clicked.connect(lambda: self.setProcessing(5))
optionLayout.addWidget(postMedianBlur, 6, 1, 1, 1)
postMeanBlur = pushButton('平均模糊')
postMeanBlur.clicked.connect(lambda: self.setProcessing(6))
optionLayout.addWidget(postMeanBlur, 6, 2, 1, 1)
postCAS = pushButton('CAS锐化')
postCAS.clicked.connect(lambda: self.setProcessing(7))
optionLayout.addWidget(postCAS, 6, 3, 1, 1)
postGaussianBlur = pushButton('高斯模糊')
postGaussianBlur.clicked.connect(lambda: self.setProcessing(8))
optionLayout.addWidget(postGaussianBlur, 6, 4, 1, 1)
postBilateralFilter = pushButton('双向过滤')
postBilateralFilter.clicked.connect(lambda: self.setProcessing(9))
optionLayout.addWidget(postBilateralFilter, 6, 5, 1, 1)
self.decoder = pushButton('GPU加速')
self.decoder.clicked.connect(self.setGPUMode)
optionLayout.addWidget(self.decoder, 7, 0, 1, 2)
self.acnet = pushButton('开启ACNet')
self.acnet.clicked.connect(self.setACNetMode)
optionLayout.addWidget(self.acnet, 7, 2, 1, 2)
self.hdn = pushButton('HDN模式')
self.hdn.setEnabled(False)
self.hdn.clicked.connect(self.setHDNMode)
optionLayout.addWidget(self.hdn, 7, 4, 1, 2)
threadsLabel = QLabel('线程数')
threadsLabel.setAlignment(Qt.AlignCenter)
optionLayout.addWidget(threadsLabel, 8, 0, 1, 1)
self.threads = QComboBox()
cpuCount = psutil.cpu_count()
self.threads.addItems([str(i) for i in range(1, cpuCount + 1)])
self.threads.setCurrentIndex(cpuCount - 1)
optionLayout.addWidget(self.threads, 8, 1, 1, 1)
zoom = float(self.zoomFactor.currentText())
self.tipLabel = label('扩展后视频分辨率:%d x %d' % (self.videoWidth * zoom, self.videoHeight * zoom))
optionLayout.addWidget(self.tipLabel, 8, 2, 1, 4)
self.startButton = QPushButton('开始扩展')
self.startButton.setStyleSheet('background-color:#3daee9')
self.startButton.clicked.connect(self.expandVideo)
self.startButton.setFixedHeight(75)
optionLayout.addWidget(self.startButton, 9, 0, 2, 6)
self.args = {'videoPath': self.videoPathEdit.text(), 'outputPath': self.outputPathEdit.text(),
'passes': self.passes.currentText(), 'pushColorCount': self.pushColorCount.currentText(),
'strengthColor': str(self.strengthColor.currentIndex() / 10), 'strengthGradient': str(self.strengthGradient.currentIndex() / 10),
'zoomFactor': self.zoomFactor.currentText(), 'fastMode': '' if self.fastMode.currentIndex() == 0 else '-f',
'preProcessing': self.processing[:5], 'postProcessing': self.processing[5:], 'gpuMode': self.gpuMode,
'ACNet': self.acnetMode, 'hdnMode': self.hdnMode, 'position': self.videoPos}
self.timer = QTimer()
self.timer.setInterval(50)
self.timer.timeout.connect(self.collectArgs)
self.timer.start()
def selectVideo(self):
videoPath = QFileDialog.getOpenFileName(self, "请选择视频文件", None, "视频文件 (*.mp4 *.avi *.flv);;所有文件(*.*)")[0]
if videoPath:
self.videoPathEdit.setText(videoPath)
self.videoPath = videoPath
_path, _type = os.path.splitext(self.videoPath)
self.outputPathEdit.setText(_path + '_Anime4K' + _type)
cmd = ['ffmpeg.exe', '-i', self.videoPath]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
p.wait()
try:
for l in p.stdout.readlines(): # FFMpeg这蛋疼的视频信息格式
l = l.decode('gb18030', 'ignore')
if 'Duration' in l:
self.duration = calSubTime(l.split(' ')[3][:-1])
if 'Stream' in l and 'DAR' in l:
args = l.split(',')
for resolution in args[2:5]:
resolution = resolution.replace(' ', '')
if '[' in resolution:
resolution = resolution.split('[')[0]
if 'x' in resolution:
self.videoWidth, self.videoHeight = map(int, resolution.split('x'))
break
except:
self.duration = 114514 # 万一读取不上来视频长度就先随便分配个
self.setTip()
def setSavePath(self):
outputPath = QFileDialog.getSaveFileName(self, "选择视频输出文件夹", None, "视频文件 (*.mp4 *.avi *.flv);;所有文件(*.*)")[0]
if outputPath:
self.outputPathEdit.setText(outputPath)
self.outputPath = outputPath
def setDefault(self, videoPath, duration, videoWidth, videoHeight):
if videoPath:
self.videoPath = videoPath
self.duration = duration
self.videoWidth = videoWidth
self.videoHeight = videoHeight
self.videoPathEdit.setText(self.videoPath)
_path, _type = os.path.splitext(self.videoPath)
self.outputPathEdit.setText(_path + '_Anime4K' + _type)
self.setTip()
def setPreviewSlider(self, p):
pos = p.x() / self.previewSlider.width() * 1000
if pos > 1000:
pos = 1000
elif pos < 0:
pos = 0
self.previewSlider.setValue(pos)
self.videoPos = pos * self.duration / 1000000
def setGPUMode(self):
if not self.gpuMode:
self.gpuMode = '-q'
else:
self.gpuMode = ''
def setACNetMode(self):
if not self.acnetMode:
self.acnetMode = '-w'
self.hdn.setEnabled(True)
else:
self.acnetMode = ''
self.hdn.setEnabled(False)
def setHDNMode(self):
if not self.hdnMode:
self.hdnMode = '-H'
else:
self.hdnMode = ''
def setProcessing(self, index):
self.processing[index] = not self.processing[index]
def setTip(self):
zoom = float(self.zoomFactor.currentText())
self.tipLabel.setText('扩展后视频分辨率:%d x %d' % (self.videoWidth * zoom, self.videoHeight * zoom))
self.scaleSize = QSize(self.videoWidth * zoom, self.videoHeight * zoom)
def collectArgs(self):
args = {'videoPath': self.videoPathEdit.text(), 'outputPath': self.outputPathEdit.text(),
'passes': self.passes.currentText(), 'pushColorCount': self.pushColorCount.currentText(),
'strengthColor': str(self.strengthColor.currentIndex() / 10), 'strengthGradient': str(self.strengthGradient.currentIndex() / 10),
'zoomFactor': self.zoomFactor.currentText(), 'fastMode': '' if self.fastMode.currentIndex() == 0 else '-f',
'preProcessing': self.processing[:5], 'postProcessing': self.processing[5:], 'gpuMode': self.gpuMode,
'ACNet': self.acnetMode, 'hdnMode': self.hdnMode, 'threads': self.threads.currentText(), 'position': self.videoPos}
if args != self.args and self.videoPath:
self.args = args
self.generatePreview()
def generatePreview(self):
cmd = ['ffmpeg.exe', '-y', '-ss', str(self.videoPos), '-i', self.videoPath, '-frames', '1', '-q:v', '1', '-f', 'image2', 'temp_origin.jpg']
p = subprocess.Popen(cmd)
p.wait()
# pixmap = QPixmap('temp_origin.jpg')
self.preview.setImagePath('temp_origin.jpg', self.scaleSize)
self.originPreview.setImagePath('temp_origin.jpg', self.scaleSize)
if self.point:
self.originPreview.recivePaintEvent(self.point)
self.previewThread = preview(self.args)
self.previewThread.finish.connect(self.refreshPreview)
self.previewThread.start()
self.previewThread.exec_()
def refreshPreview(self):
self.timer.start()
# pixmap = QPixmap('temp_4k.jpg')
self.preview.setImagePath('temp_4k.jpg', self.scaleSize)
self.scaledPreview.setImagePath('temp_4k.jpg', self.scaleSize)
self.originPreview.setImagePath('temp_origin.jpg', self.scaleSize)
if self.point:
self.scaledPreview.recivePaintEvent(self.point)
self.originPreview.recivePaintEvent(self.point)
def scaledReciveWheelEvent(self, e, size):
self.scaleSize = size
self.scaledPreview.reciveWheelEvent(e)
def originReciveWheelEvent(self, e, size):
self.scaleSize = size
self.originPreview.reciveWheelEvent(e)
def scaledReciveMoveEvent(self, e, startPos, point):
self.point = point
self.scaledPreview.reciveMoveEvent(e, startPos)
def originReciveMoveEvent(self, e, startPos, point):
self.point = point
self.originPreview.reciveMoveEvent(e, startPos)
def expandVideo(self):
if not self.args['videoPath']:
self.tipLabel.setText('请先选择输入视频')
elif not self.args['outputPath']:
self.tipLabel.setText('请先选择输出路径')
else:
zoom = float(self.zoomFactor.currentText())
self.tipLabel.setText('扩展后视频分辨率:%d x %d' % (self.videoWidth * zoom, self.videoHeight * zoom))
self.expand = expand(self.args)
self.expand.fail.connect(self.initFail)
self.expand.start()
# with open('expand.bat', 'w') as batch:
# batch.write('@echo off\nstart cmd /k "')
# for c in cmd[:-1]:
# batch.write(c + ' ')
# batch.write(cmd[-1] + '"')
# batch = codecs.open('expand.bat', 'w')
# batch.write('@echo off\nstart cmd /k "')
# for c in cmd[:-1]:
# batch.write(c + ' ')
# batch.write(cmd[-1] + '"')
# batch.close()
# subprocess.Popen(['expand.bat'])
def initFail(self):
errorInfo = "请检查是否有另一个Anime4K进程正在运行,并手动删除烤肉机文件夹下的'temp_video'文件夹,如果存在的话"
QMessageBox.information(self, '4K扩展初始化失败', errorInfo, QMessageBox.Ok)
================================================
FILE: utils/assSelect.py
================================================
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import codecs
from PySide2.QtWidgets import QWidget, QMainWindow, QGridLayout, QFileDialog, QToolBar,\
QAction, QDialog, QStyle, QSlider, QLabel, QPushButton, QStackedWidget, QHBoxLayout,\
QLineEdit, QTableWidget, QAbstractItemView, QTableWidgetItem, QGraphicsTextItem, QMenu,\
QGraphicsScene, QGraphicsView, QGraphicsDropShadowEffect, QComboBox, QMessageBox, QColorDialog
from PySide2.QtMultimedia import QMediaPlayer
from PySide2.QtMultimediaWidgets import QGraphicsVideoItem
from PySide2.QtGui import QIcon, QKeySequence, QFont, QBrush, QColor
from PySide2.QtCore import Qt, QTimer, QEvent, QPoint, Signal, QSizeF, QUrl
def ms2ASSTime(ms):
'''
receive int
return str
ms -> h:m:s.ms
'''
h, m = divmod(ms, 3600000)
m, s = divmod(m, 60000)
s, ms = divmod(s, 1000)
ms = ('%03d' % ms)[:2]
return '%s:%02d:%02d.%s' % (h, m, s, ms)
def calSubTime(t):
'''
receive str
return int
h:m:s.ms -> ms in total
'''
t = t.replace(',', '.').replace(':', ':')
h, m, s = t.split(':')
if '.' in s:
s, ms = s.split('.')
ms = ('%s00' % ms)[:3]
else:
ms = 0
h, m, s, ms = map(int, [h, m, s, ms])
return h * 3600000 + m * 60000 + s * 1000 + ms
class assCheck(QDialog):
getSub = Signal()
position = Signal(int)
def __init__(self, subtitleDict, index, styles, styleNameList):
super().__init__()
self.setWindowFlags(Qt.WindowStaysOnTopHint) # 检查窗口永远置顶
self.subtitleDict = subtitleDict
self.index = index
self.styles = styles
self.resize(950, 800)
self.setWindowTitle('检查字幕')
layout = QGridLayout()
self.setLayout(layout)
layout.addWidget(QLabel('选择字幕轨道:'), 0, 0, 1, 1)
layout.addWidget(QLabel(''), 0, 1, 1, 1)
self.subCombox = QComboBox()
self.subCombox.addItems(styleNameList)
self.subCombox.setCurrentIndex(index)
self.subCombox.currentIndexChanged.connect(self.selectChange)
layout.addWidget(self.subCombox, 0, 2, 1, 1)
self.subTable = QTableWidget()
self.subTable.setSelectionBehavior(QAbstractItemView.SelectRows)
self.subTable.doubleClicked.connect(self.clickTable)
self.subTable.setEditTriggers(QAbstractItemView.NoEditTriggers)
layout.addWidget(self.subTable, 1, 0, 6, 3)
self.refresh = QPushButton('刷新')
self.refresh.clicked.connect(self.refreshSub)
layout.addWidget(self.refresh, 7, 0, 1, 1)
self.cancel = QPushButton('确定')
self.cancel.clicked.connect(self.hide)
layout.addWidget(self.cancel, 7, 2, 1, 1)
self.refreshTable()
def setDefault(self, subtitleDict, styles):
self.subtitleDict = subtitleDict
self.styles = styles
self.refreshTable()
def selectChange(self, index):
self.index = index
self.refreshTable()
def refreshSub(self):
self.getSub.emit()
def refreshTable(self):
style = self.styles[self.index]
subDict = self.subtitleDict[self.index]
self.subTable.clear()
self.subTable.setRowCount(22 + len(subDict))
self.subTable.setColumnCount(4)
for col in range(3):
self.subTable.setColumnWidth(col, 160)
self.subTable.setColumnWidth(3, 350)
for y, name in enumerate(['Fontname', 'Fontsize', 'PrimaryColour', 'SecondaryColour', 'OutlineColour', 'BackColour',
'Bold', 'Italic', 'Underline', 'StrikeOut', 'ScaleX', 'ScaleY', 'Spacing', 'Angle', 'BorderStyle',
'Outline', 'Shadow', 'Alignment', 'MarginL', 'MarginR', 'MarginV', 'Encoding']):
self.subTable.setItem(y, 0, QTableWidgetItem(name))
self.subTable.setItem(y, 1, QTableWidgetItem(str(style[y])))
startList = sorted(subDict.keys())
preConflict = False
nextConflict = False
for y, start in enumerate(startList):
delta, text = subDict[start]
end = start + delta
if y < len(startList) - 1:
nextStart = startList[y + 1]
if end > nextStart:
nextConflict = True
else:
nextConflict = False
if delta < 500 or delta > 8000: # 持续时间小于500ms或大于8s
deltaError = 2
elif delta > 4500: # 持续时间大于4.5s且小于8s
deltaError = 1
else:
deltaError = 0
end = ms2ASSTime(start + delta)
start = ms2ASSTime(start)
s, ms = divmod(delta, 1000)
ms = ('%03d' % ms)[:2]
delta = '持续 %s.%ss' % (s, ms)
self.subTable.setItem(y + 22, 0, QTableWidgetItem(start)) # 开始时间
if preConflict:
self.subTable.item(y + 22, 0).setBackground(QColor('#B22222')) # 红色警告
self.subTable.setItem(y + 22, 1, QTableWidgetItem(end)) # 结束时间
if nextConflict:
self.subTable.item(y + 22, 1).setBackground(QColor('#B22222')) # 红色警告
self.subTable.setItem(y + 22, 2, QTableWidgetItem(delta)) # 持续时间
if deltaError == 2:
self.subTable.item(y + 22, 2).setBackground(QColor('#B22222')) # 红色警告
elif deltaError == 1:
self.subTable.item(y + 22, 2).setBackground(QColor('#FA8072')) # 橙色警告
self.subTable.setItem(y + 22, 3, QTableWidgetItem(text)) # 字幕文本
preConflict = nextConflict # 将重叠信号传递给下一条轴
def clickTable(self):
item = self.subTable.selectedItems()[0]
row = item.row()
if row > 21:
pos = calSubTime(item.text())
self.position.emit(pos) # 发射点击位置
class assSelect(QDialog):
assSummary = Signal(list)
def __init__(self):
super().__init__()
self.subDict = {'': {'Fontname': '', 'Fontsize': '', 'PrimaryColour': '', 'SecondaryColour': '',
'OutlineColour': '', 'BackColour': '', 'Bold': '', 'Italic': '', 'Underline': '', 'StrikeOut': '',
'ScaleX': '', 'ScaleY': '', 'Spacing': '', 'Angle': '', 'BorderStyle': '', 'Outline': '',
'Shadow': '', 'Alignment': '', 'MarginL': '', 'MarginR': '', 'MarginV': '', 'Encoding': '',
'Tableview': [], 'Events': []}}
self.resize(950, 800)
self.setWindowTitle('选择要导入的ass字幕样式')
layout = QGridLayout()
self.setLayout(layout)
layout.addWidget(QLabel('检测到字幕样式:'), 0, 0, 1, 1)
layout.addWidget(QLabel(''), 0, 1, 1, 1)
self.subCombox = QComboBox()
self.subCombox.currentTextChanged.connect(self.selectChange)
layout.addWidget(self.subCombox, 0, 2, 1, 1)
self.subTable = QTableWidget()
self.subTable.setEditTriggers(QAbstractItemView.NoEditTriggers)
layout.addWidget(self.subTable, 1, 0, 6, 3)
self.confirm = QPushButton('导入')
self.confirm.clicked.connect(self.sendSub)
layout.addWidget(self.confirm, 7, 0, 1, 1)
self.confirmStyle = QPushButton('导入样式')
self.confirmStyle.clicked.connect(self.sendSubStyle)
layout.addWidget(self.confirmStyle, 7, 1, 1, 1)
self.cancel = QPushButton('取消')
self.cancel.clicked.connect(self.hide)
layout.addWidget(self.cancel, 7, 2, 1, 1)
def setDefault(self, subtitlePath='', index=0):
if subtitlePath:
self.assCheck(subtitlePath)
self.index = index
def selectChange(self, styleName):
self.subTable.clear()
self.subTable.setRowCount(len(self.subDict[styleName]) + len(self.subDict[styleName]['Tableview']) - 2)
self.subTable.setColumnCount(4)
for col in range(3):
self.subTable.setColumnWidth(col, 160)
self.subTable.setColumnWidth(3, 350)
y = 0
for k, v in self.subDict[styleName].items():
if k not in ['Tableview', 'Events']:
self.subTable.setItem(y, 0, QTableWidgetItem(k))
self.subTable.setItem(y, 1, QTableWidgetItem(v))
y += 1
elif k == 'Tableview':
preConflict = False # 上一条字幕时轴有重叠
for cnt, line in enumerate(v):
nextConflict = False
start = calSubTime(line[0])
end = calSubTime(line[1])
if cnt < len(v) - 1:
nextStart = calSubTime(v[cnt + 1][0])
if end > nextStart:
nextConflict = True
else:
nextConflict = False
delta = end - start
if delta < 500 or delta > 8000: # 持续时间小于500ms或大于8s
deltaError = 2
elif delta > 4500: # 持续时间大于4.5s且小于8s
deltaError = 1
else:
deltaError = 0
s, ms = divmod(delta, 1000)
ms = ('%03d' % ms)[:2]
delta = '持续 %s.%ss' % (s, ms)
self.subTable.setItem(y, 0, QTableWidgetItem(line[0])) # 开始时间
if preConflict:
self.subTable.item(y, 0).setBackground(QColor('#B22222')) # 红色警告
self.subTable.setItem(y, 1, QTableWidgetItem(line[1])) # 结束时间
if nextConflict:
self.subTable.item(y, 1).setBackground(QColor('#B22222')) # 红色警告
self.subTable.setItem(y, 2, QTableWidgetItem(delta)) # 持续时间
if deltaError == 2:
self.subTable.item(y, 2).setBackground(QColor('#B22222')) # 红色警告
elif deltaError == 1:
self.subTable.item(y, 2).setBackground(QColor('#FA8072')) # 橙色警告
self.subTable.setItem(y, 3, QTableWidgetItem(line[2])) # 字幕文本
y += 1
preConflict = nextConflict # 将重叠信号传递给下一条轴
def sendSub(self):
self.assSummary.emit([self.index, self.subCombox.currentText(), self.subDict[self.subCombox.currentText()]])
self.hide()
def sendSubStyle(self):
subData = self.subDict[self.subCombox.currentText()]
subData['Events'] = {}
self.assSummary.emit([self.index, self.subCombox.currentText(), subData])
self.hide()
def assCheck(self, subtitlePath):
self.subDict = {'': {'Fontname': '', 'Fontsize': '', 'PrimaryColour': '', 'SecondaryColour': '',
'OutlineColour': '', 'BackColour': '', 'Bold': '', 'Italic': '', 'Underline': '', 'StrikeOut': '',
'ScaleX': '', 'ScaleY': '', 'Spacing': '', 'Angle': '', 'BorderStyle': '', 'Outline': '',
'Shadow': '', 'Alignment': '', 'MarginL': '', 'MarginR': '', 'MarginV': '', 'Encoding': '',
'Tableview': [], 'Events': {}}}
ass = codecs.open(subtitlePath, 'r', 'utf_8_sig')
f = ass.readlines()
ass.close()
V4Token = False
styleFormat = []
styles = []
eventToken = False
eventFormat = []
events = []
for line in f:
if '[V4+ Styles]' in line:
V4Token = True
elif V4Token and 'Format:' in line:
styleFormat = line.replace(' ', '').strip().split(':')[1].split(',')
elif V4Token and 'Style:' in line and styleFormat:
styles.append(line.strip().split(':')[1].split(','))
elif '[Events]' in line:
eventToken = True
V4Token = False
elif eventToken and 'Format:' in line:
eventFormat = line.strip().split(':')[1].split(',')
elif eventToken and 'Comment:' in line and eventFormat:
events.append(line.strip().split('Comment:')[1].split(',', len(eventFormat) - 1))
elif eventToken and 'Dialogue:' in line and eventFormat:
events.append(line.strip().split('Dialogue:')[1].split(',', len(eventFormat) - 1))
for cnt, _format in enumerate(eventFormat):
_format = _format.replace(' ', '')
if _format == 'Start':
Start = cnt
elif _format == 'End':
End = cnt
elif _format == 'Style':
Style = cnt
elif _format == 'Text':
Text = cnt
for style in styles:
styleName = style[0]
self.subDict[styleName] = {'Fontname': '', 'Fontsize': '', 'PrimaryColour': '', 'SecondaryColour': '',
'OutlineColour': '', 'BackColour': '', 'Bold': '', 'Italic': '', 'Underline': '', 'StrikeOut': '',
'ScaleX': '', 'ScaleY': '', 'Spacing': '', 'Angle': '', 'BorderStyle': '', 'Outline': '',
'Shadow': '', 'Alignment': '', 'MarginL': '', 'MarginR': '', 'MarginV': '', 'Encoding': '',
'Tableview': [], 'Events': {}}
for cnt, _format in enumerate(styleFormat):
if _format in self.subDict[styleName]:
self.subDict[styleName][_format] = style[cnt]
for line in events:
if styleName.replace(' ', '') == line[Style].replace(' ', ''):
start = calSubTime(line[Start]) // 10 * 10
delta = calSubTime(line[End]) - start // 10 * 10
self.subDict[styleName]['Tableview'].append([line[Start], line[End], line[Text]])
self.subDict[styleName]['Events'][start] = [delta, line[Text]]
self.subCombox.clear()
combox = []
for style in self.subDict.keys():
if style:
combox.append(style)
self.subCombox.addItems(combox)
class subSelect(QDialog): # 导入除ass格式外的其他类型字幕时的弹窗
select = Signal(dict, int)
def __init__(self):
super().__init__()
self.resize(950, 800)
self.setWindowTitle('导入字幕')
layout = QGridLayout()
self.setLayout(layout)
self.subTable = QTableWidget()
self.subTable.setEditTriggers(QAbstractItemView.NoEditTriggers)
layout.addWidget(self.subTable, 0, 0, 7, 3)
self.confirm = QPushButton('导入')
self.confirm.clicked.connect(self.sendSub)
layout.addWidget(self.confirm, 7, 0, 1, 1)
self.confirmStyle = QPushButton('导入样式')
self.cancel = QPushButton('取消')
self.cancel.clicked.connect(self.hide)
layout.addWidget(self.cancel, 7, 2, 1, 1)
def setDefault(self, subData={}, index=0, format=''):
self.subData = subData
self.index = index
self.setWindowTitle('导入%s字幕至第%s列轨道' % (format, index + 1))
self.refreshTable()
def refreshTable(self):
self.subTable.setRowCount(len(self.subData))
self.subTable.setColumnCount(4)
for col in range(3):
self.subTable.setColumnWidth(col, 160)
self.subTable.setColumnWidth(3, 350)
startList = sorted(self.subData.keys())
for y, start in enumerate(startList):
preConflict = False # 上一条字幕时轴有重叠
nextConflict = False
delta, text = self.subData[start]
end = start + delta
if y < len(startList) - 1:
nextStart = startList[y + 1]
if end > nextStart:
nextConflict = True
else:
nextConflict = False
if delta < 500 or delta > 8000: # 持续时间小于500ms或大于8s
deltaError = 2
elif delta > 4500: # 持续时间大于4.5s且小于8s
deltaError = 1
else:
deltaError = 0
s, ms = divmod(delta, 1000)
ms = ('%03d' % ms)[:2]
delta = '持续 %s.%ss' % (s, ms)
self.subTable.setItem(y, 0, QTableWidgetItem(ms2ASSTime(start))) # 开始时间
if preConflict:
self.subTable.item(y, 0).setBackground(QColor('#B22222')) # 红色警告
self.subTable.setItem(y, 1, QTableWidgetItem(ms2ASSTime(end))) # 结束时间
if nextConflict:
self.subTable.item(y, 1).setBackground(QColor('#B22222')) # 红色警告
self.subTable.setItem(y, 2, QTableWidgetItem(delta)) # 持续时间
if deltaError == 2:
self.subTable.item(y, 2).setBackground(QColor('#B22222')) # 红色警告
elif deltaError == 1:
self.subTable.item(y, 2).setBackground(QColor('#FA8072')) # 橙色警告
self.subTable.setItem(y, 3, QTableWidgetItem(text)) # 字幕文本
preConflict = nextConflict # 将重叠信号传递给下一条轴
def sendSub(self):
self.select.emit(self.subData, self.index)
self.hide()
================================================
FILE: utils/graph.py
================================================
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import shutil
import pyqtgraph as pg
pg.setConfigOption('background', '#232629')
from PySide2.QtWidgets import QWidget, QFileDialog, QMenu, QMessageBox, QVBoxLayout
from PySide2.QtCore import Qt, QPoint, Signal
x_range = [-1, 1]
x_ticks = []
def ms2Time(ms):
'''
receive int
return str
ms -> m:s.ms
'''
m, s = divmod(ms, 60000)
s, ms = divmod(s, 1000)
return ('%s:%02d.%03d' % (m, s, ms))[:-1]
class graph_main(QWidget): # 主音轨波形图
clicked = Signal()
def __init__(self):
super().__init__()
self.mp3Path = ''
layout = QVBoxLayout(self)
self.graph = pg.PlotWidget()
self.graph.addLegend(offset=(0, 1)) # 图例
layout.addWidget(self.graph)
self.graph.setMenuEnabled(False)
self.wavePlot = self.graph.plot([0], name='原音轨', pen=pg.mkPen('#CCCCCC')) # 主音轨波形
self.subShow = []
for _ in range(5): # 存放5条时轴的绘图对象
self.subShow.append([self.graph.plot([0], fillLevel=0, brush=(173, 216, 230, 50)), # 字幕轴显示(上层)
self.graph.plot([0], fillLevel=0, brush=(173, 216, 230, 50))]) # 字幕轴显示(下层)
self.currentPos = self.graph.addLine(0, pen=pg.mkPen('#d93c30', width=2)) # 当前红线位置
self.ax = self.graph.getAxis('bottom') # 底部时间戳
def mousePressEvent(self, event):
if event.buttons() == Qt.LeftButton:
self.clicked.emit()
elif event.buttons() == Qt.RightButton:
self.popTableMenu(event.pos())
def popTableMenu(self, pos):
pos = QPoint(pos.x() + 3, pos.y() - 4)
menu = QMenu()
exportAudio = menu.addAction('导出音频文件')
action = menu.exec_(self.graph.mapToGlobal(pos))
if action == exportAudio:
if not self.mp3Path:
QMessageBox.warning(self, '未检测到音轨文件', '请导入视频并确保视频音轨正常', QMessageBox.Ok)
else:
mp3Path = QFileDialog.getSaveFileName(self, "选择音频输出文件夹", None, "(*.acc)")[0]
if mp3Path:
shutil.copy(self.mp3Path, mp3Path)
QMessageBox.information(self, '导出音轨文件', '导出完成', QMessageBox.Ok)
def plot(self, x, y, h, step, limit=[-200, 200], subtitle={}):
# self.graph.setTitle(mp3Path)
self.wavePlot.setData(x, y)
self.currentPos.setValue(h)
for num, subLine in subtitle.items():
sub_x = []
subUp_y = []
subDown_y = []
limit_y = limit[1] * 2
for subTime in subLine:
sub_x += [subTime[0], subTime[0], subTime[1], subTime[1]]
subUp_y += [0, limit_y, limit_y, 0]
subDown_y += [0, -limit_y, -limit_y, 0]
self.subShow[num][0].setData(sub_x, subUp_y)
self.subShow[num][1].setData(sub_x, subDown_y)
self.graph.setXRange(x[0], x[-1]) # 设置坐标轴范围
self.graph.setYRange(limit[0], limit[1])
global x_range
x_range = [x[0], x[-1]]
interval = len(x) // 10
x = [x[0] + i * interval * step for i in range(11)] # 设置x label为时间戳
ticks = [ms2Time(int(ms)) for ms in x]
modifiedTick = [[(x[i], ticks[i]) for i in range(11)]]
self.ax.setTicks(modifiedTick)
global x_ticks
x_ticks = modifiedTick
class graph_vocal(QWidget): # 人声音轨波形图
clicked = Signal()
def __init__(self):
super().__init__()
self.mp3Path = ''
layout = QVBoxLayout(self)
self.graph = pg.PlotWidget()
self.graph.addLegend(offset=(0, 1)) # 图例
layout.addWidget(self.graph)
self.graph.setMenuEnabled(False)
self.subShow = []
for _ in range(5): # 存放5条时轴的绘图对象
self.subShow.append([self.graph.plot([0], fillLevel=0, brush=(173, 216, 230, 50)), # 字幕轴显示(上层)
self.graph.plot([0], fillLevel=0, brush=(173, 216, 230, 50))]) # 字幕轴显示(下层)
self.voiceWaveUp = self.graph.plot([0], name='人声音轨', fillLevel=0, brush=(179, 220, 253), pen=pg.mkPen('#b3dcfd')) # 人声有效值波形(上层)
self.voiceWaveDown = self.graph.plot([0], fillLevel=0, brush=(179, 220, 253), pen=pg.mkPen('#b3dcfd')) # 人声有效值波形(下层)
self.bgmPlot = self.graph.plot([0], name='背景音轨', pen=pg.mkPen('#fdfdb3')) # 背景音轨波形
self.currentPos = self.graph.addLine(0, pen=pg.mkPen('#D93C30', width=2)) # 当前红线位置
self.ax = self.graph.getAxis('bottom') # 底部时间戳
def mousePressEvent(self, event):
if event.buttons() == Qt.LeftButton:
self.clicked.emit()
elif event.buttons() == Qt.RightButton:
self.popTableMenu(event.pos())
def popTableMenu(self, pos):
pos = QPoint(pos.x() + 3, pos.y() - 4)
menu = QMenu()
exportAudio = menu.addAction('导出音频文件')
action = menu.exec_(self.graph.mapToGlobal(pos))
if action == exportAudio:
if not self.mp3Path:
QMessageBox.warning(self, '未检测到音轨文件', '请先完成AI打轴以生成人声音轨和背景音轨', QMessageBox.Ok)
else:
mp3Path = QFileDialog.getSaveFileName(self, "选择音频输出文件夹", None, "(*.mp3)")[0]
if mp3Path:
vocalPath = self.mp3Path + r'\vocals.mp3'
bgmPath = self.mp3Path + r'\bgm.mp3'
shutil.copy(vocalPath, mp3Path[:-4] + '_人声.mp3')
shutil.copy(bgmPath, mp3Path[:-4] + '_背景声.mp3')
QMessageBox.information(self, '导出音轨文件', '导出完成', QMessageBox.Ok)
def plot(self, x, y, voiceToken, h, step, limit=[-200, 200], subtitle={}):
# self.graph.setTitle(mp3Path)
if voiceToken: # 绘制人声音轨波形
self.voiceWaveUp.setData(x, y)
self.voiceWaveDown.setData(x, list(map(lambda x: -x, y)))
self.bgmPlot.clear()
else: # 绘制背景音轨波形
self.bgmPlot.setData(x, y)
self.voiceWaveUp.clear()
self.voiceWaveDown.clear()
self.currentPos.setValue(h)
for num, subLine in subtitle.items():
sub_x = []
subUp_y = []
subDown_y = []
limit_y = limit[1] * 2
for subTime in subLine:
sub_x += [subTime[0], subTime[0], subTime[1], subTime[1]]
subUp_y += [0, limit_y, limit_y, 0]
subDown_y += [0, -limit_y, -limit_y, 0]
self.subShow[num][0].setData(sub_x, subUp_y)
self.subShow[num][1].setData(sub_x, subDown_y)
self.graph.setXRange(x_range[0], x_range[-1]) # 设置坐标轴范围
self.graph.setYRange(limit[0], limit[1])
self.ax.setTicks(x_ticks)
================================================
FILE: utils/hotKey.py
================================================
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from PySide2.QtWidgets import QGridLayout, QDialog, QLabel, QApplication
from PySide2.QtCore import Qt
def _translate(context, text, disambig):
return QApplication.translate(context, text, disambig)
class hotKey_Info(QDialog):
def __init__(self):
super().__init__()
self.setWindowTitle('快捷键说明')
self.resize(520, 450)
layout = QGridLayout()
self.setLayout(layout)
key_txt = u'\
1或q \ 2或w\n\n\
3或e \ 4或r\n\n\
5\n\n\
delete\n\n\
space\n\n\
s\n\n\
ctrl+s\n\n\
ctrl+z\n\n\
ctrl+y\n\n\
ctrl+c\n\n\
ctrl+v\n\n\
↑ \ ↓\n\n\
← \ →\n\n'
key_label = QLabel(key_txt)
layout.addWidget(key_label, 0, 0, 3, 1)
info_txt = u'\
在表格里选中字幕后 ,上沿快速加 \ 减一行,即快速修改字幕开始时间\n\n\
在表格里选中字幕后 ,下沿快速加 \ 减一行,即快速修改字幕结束时间\n\n\
按当前选择位置分割字幕\n\n\
删除表格里选中的字幕\n\n\
播放\暂停视频\n\n\
播放表格里选中的字幕\n\n\
弹出保存字幕和输出视频页面\n\n\
后退一步\n\n\
前进一步\n\n\
复制\n\n\
粘贴\n\n\
跳转至上 \ 下一条字幕\n\n\
视频进度倒退 \ 前进一行\n\n'
info_label = QLabel(info_txt)
layout.addWidget(info_label, 0, 1, 3, 4)
url_label = QLabel(u'更多DD烤肉机视频教程 请前往执鸣神君B站主页')
layout.addWidget(url_label, 3, 0, 1, 3)
bilibili_url = QLabel()
bilibili_url.setAlignment(Qt.AlignRight | Qt.AlignVCenter)
bilibili_url.setOpenExternalLinks(True)
bilibili_url.setText(_translate("MainWindow", "
\
https://space.bilibili.com/637783
", None))
layout.addWidget(bilibili_url, 3, 3, 1, 2)
git_label = QLabel(u'烤肉机项目开源地址 ')
layout.addWidget(git_label, 4, 0, 1, 2)
github_url = QLabel()
github_url.setAlignment(Qt.AlignRight | Qt.AlignVCenter)
github_url.setOpenExternalLinks(True)
github_url.setText(_translate("MainWindow", "\
https://github.com/jiafangjun/DD_KaoRou2
", None))
layout.addWidget(github_url, 4, 2, 1, 3)
================================================
FILE: utils/main_ui.py
================================================
# -*- coding: utf-8 -*-
import os, subprocess, copy, time, shutil, codecs
from PySide2.QtWidgets import QWidget, QMainWindow, QGridLayout, QFileDialog, QToolBar,\
QAction, QDialog, QStyle, QSlider, QLabel, QPushButton, QStackedWidget, QHBoxLayout,\
QLineEdit, QTableWidget, QAbstractItemView, QTableWidgetItem, QGraphicsTextItem, QMenu,\
QGraphicsScene, QGraphicsView, QGraphicsDropShadowEffect, QComboBox, QMessageBox, QColorDialog, QDockWidget
from PySide2.QtMultimedia import QMediaPlayer
from PySide2.QtMultimediaWidgets import QGraphicsVideoItem
from PySide2.QtGui import QIcon, QKeySequence, QFont, QColor, QDesktopServices
from PySide2.QtCore import Qt, QTimer, QEvent, QPoint, Signal, QSizeF, QUrl, QItemSelectionModel
from utils.youtube_downloader import YoutubeDnld
from utils.subtitle import exportSubtitle
from utils.videoDecoder import VideoDecoder
from utils.AI import sepMainAudio, Separate
from utils.assSelect import assSelect, assCheck, subSelect
from utils.graph import graph_main, graph_vocal
from utils.pay import pay
from utils.hotKey import hotKey_Info
from utils.setting import settingPage
from utils.releases import releases
from utils.anime4k import Anime4KDialog
def calSubTime(t):
'''
receive str
return int
h:m:s.ms -> ms in total
'''
t = t.replace(',', '.').replace(':', ':')
h, m, s = t.split(':')
if '.' in s:
s, ms = s.split('.')
ms = ('%s00' % ms)[:3]
else:
ms = 0
h, m, s, ms = map(int, [h, m, s, ms])
return h * 3600000 + m * 60000 + s * 1000 + ms
def calSubTime2(t):
'''
receive str
return int
m:s.ms -> ms in total
'''
t.replace(',', '.').replace(':', ':')
m, s = t.split(':')
if '.' in s:
s, ms = s.split('.')
else:
ms = 0
return int(m) * 60000 + int(s) * 1000 + int(ms)
def cnt2Time(cnt, interval):
'''
receive int
return str
count of interval times -> m:s.ms
'''
m, s = divmod(int(cnt * interval), 60000)
s, ms = divmod(s, 1000)
return ('%s:%02d.%03d' % (m, s, ms))[:-1]
def ms2Time(ms):
'''
receive int
return str
ms -> m:s.ms
'''
m, s = divmod(ms, 60000)
s, ms = divmod(s, 1000)
return ('%s:%02d.%03d' % (m, s, ms))[:-1]
def ms2SRTTime(ms):
'''
receive int
return str
ms -> h:m:s,ms
'''
h, m = divmod(ms, 3600000)
m, s = divmod(m, 60000)
s, ms = divmod(s, 1000)
return '%s:%02d:%02d,%03d' % (h, m, s, ms)
def splitTime(position):
'''
ms -> m:s
'''
position = position // 1000
m, s = divmod(position, 60)
return '%02d:%02d' % (m, s)
class Slider(QSlider):
pointClicked = Signal(QPoint)
def mousePressEvent(self, event):
self.pointClicked.emit(event.pos())
def mouseMoveEvent(self, event):
self.pointClicked.emit(event.pos())
def wheelEvent(self, event): # 把进度条的滚轮事件去了 用啥子滚轮
pass
class LineEdit(QLineEdit):
clicked = Signal()
def mousePressEvent(self, event):
self.clicked.emit()
class Label(QLabel):
clicked = Signal()
def mouseReleaseEvent(self, QMouseEvent):
self.clicked.emit()
class GraphicsVideoItem(QGraphicsVideoItem):
wheel = Signal(int)
dropFile = Signal(str)
def __init__(self, parent=None):
super().__init__(parent)
self.setAcceptDrops(True)
def wheelEvent(self, QEvent):
self.wheel.emit(QEvent.delta())
def dropEvent(self, QEvent):
if QEvent.mimeData().hasUrls:
self.dropFile.emit(QEvent.mimeData().urls()[0].toLocalFile())
class editStyleNameDialog(QDialog):
styleName = Signal(str)
def __init__(self):
super().__init__()
self.resize(325, 50)
self.setWindowTitle('设置样式名')
layout = QGridLayout()
self.setLayout(layout)
self.styleNameEdit = QLineEdit()
layout.addWidget(self.styleNameEdit, 0, 0, 1, 1)
confirmButton = QPushButton('确定')
confirmButton.setFixedWidth(50)
layout.addWidget(confirmButton, 0, 1, 1, 1)
confirmButton.clicked.connect(self.sendNewName)
def setDefaultName(self, name):
self.styleNameEdit.setText(name)
def sendNewName(self):
newName = self.styleNameEdit.text()
if newName:
self.styleName.emit(newName)
self.hide()
class PreviewSubtitle(QDialog): # 设置字幕预览效果的窗口
fontColor = '#ffffff'
fontSize = 60
bold = True
italic = False
shadowOffset = 4
def __init__(self):
super().__init__()
self.resize(400, 200)
self.setWindowTitle('设置预览字幕')
layout = QGridLayout()
self.setLayout(layout)
layout.addWidget(QLabel('字体大小'), 0, 0, 1, 1)
self.fontSizeBox = QComboBox()
self.fontSizeBox.addItems([str(x * 10 + 30) for x in range(15)])
self.fontSizeBox.setCurrentIndex(3)
self.fontSizeBox.currentIndexChanged.connect(self.getFontSize)
layout.addWidget(self.fontSizeBox, 0, 1, 1, 1)
layout.addWidget(QLabel(''), 0, 2, 1, 1)
layout.addWidget(QLabel('字体颜色'), 0, 3, 1, 1)
self.fontColorSelect = Label()
self.fontColorSelect.setAlignment(Qt.AlignCenter)
self.fontColorSelect.setText(self.fontColor)
self.fontColorSelect.setStyleSheet('background-color:%s;color:%s' % (self.fontColor, self.colorReverse(self.fontColor)))
self.fontColorSelect.clicked.connect(self.getFontColor)
layout.addWidget(self.fontColorSelect, 0, 4, 1, 1)
self.boldCheckBox = QPushButton('粗体')
self.boldCheckBox.setStyleSheet('background-color:#3daee9')
self.boldCheckBox.clicked.connect(self.boldChange)
layout.addWidget(self.boldCheckBox, 1, 0, 1, 1)
self.italicCheckBox = QPushButton('斜体')
self.italicCheckBox.clicked.connect(self.italicChange)
layout.addWidget(self.italicCheckBox, 1, 1, 1, 1)
layout.addWidget(QLabel('阴影距离'), 1, 3, 1, 1)
self.shadowBox = QComboBox()
self.shadowBox.addItems([str(x) for x in range(5)])
self.shadowBox.setCurrentIndex(4)
self.shadowBox.currentIndexChanged.connect(self.getShadow)
layout.addWidget(self.shadowBox, 1, 4, 1, 1)
def getFontSize(self, index):
self.fontSize = [x * 10 + 30 for x in range(15)][index]
def getFontColor(self):
color = QColorDialog.getColor()
if color.isValid():
self.fontColor = color.name()
self.fontColorSelect.setText(self.fontColor)
self.fontColorSelect.setStyleSheet('background-color:%s;color:%s' % (self.fontColor, self.colorReverse(self.fontColor)))
def colorReverse(self, color):
r = 255 - int(color[1:3], 16)
g = 255 - int(color[3:5], 16)
b = 255 - int(color[5:7], 16)
return '#%s%s%s' % (hex(r)[2:], hex(g)[2:], hex(b)[2:])
def boldChange(self):
self.bold = not self.bold
if self.bold:
self.boldCheckBox.setStyleSheet('background-color:#3daee9')
else:
self.boldCheckBox.setStyleSheet('background-color:#31363b')
def italicChange(self):
self.italic = not self.italic
if self.italic:
self.italicCheckBox.setStyleSheet('background-color:#3daee9')
else:
self.italicCheckBox.setStyleSheet('background-color:#31363b')
def getShadow(self, index):
self.shadowOffset = index
class MainWindow(QMainWindow): # Main window
def __init__(self):
super().__init__()
self.setAcceptDrops(True)
self.installEventFilter(self)
self.subtitle = QTableWidget() # 重载表格滚轮事件 需提前到渲染UI界面之前才不会报错
self.subtitle.verticalScrollBar().installEventFilter(self)
self.oldScrollBarValue = 0
self.editStyleNameDialog = editStyleNameDialog() # 编辑样式名的小弹窗
self.editStyleNameDialog.styleName.connect(self.updateStyleName)
self.editIndex = 0
self.styleNameList = ['1', '2', '3', '4', '5'] # 样式名列表
if not os.path.exists('temp_audio'):
os.mkdir('temp_audio')
self.setWindowTitle = 'DD烤肉机'
self.dir = os.getcwd() # 运行目录
self.mainWidget = QWidget()
self.mainLayout = QGridLayout() # Grid layout
self.mainLayout.setSpacing(10)
self.mainWidget.setLayout(self.mainLayout)
self.duration = 60000
self.position = 0
self.oldPosition = 0
self.playRange = [0, self.duration]
self.replay = 0 # 0: 播放完整视频; 1: 循环播放选择区间; 2: 单次播放选择区间
self.bitrate = 2000
self.fps = 60
self.tablePreset = ['#AI自动识别', True]
self.refreshMainAudioToken = False
self.refreshVoiceToken = False # 刷新AI识别人声音频
self.assSelect = assSelect()
self.assSelect.assSummary.connect(self.addASSSub)
self.subSelect = subSelect()
self.subSelect.select.connect(self.addSub)
self.previewSubtitle = PreviewSubtitle()
self.separate = Separate()
self.separate.voiceList.connect(self.setAutoSubtitle)
self.separate.voiceWave_graph.connect(self.addVoiceWave) # AI分离出来的人声波形
self.separate.tablePreset.connect(self.setTablePreset)
self.separate.clearSub.connect(self.clearSubtitle)
self.separate.translateResult.connect(self.updateTranslateResult)
self.dnldWindow = YoutubeDnld()
self.exportWindow = exportSubtitle()
self.videoDecoder = VideoDecoder()
self.videoDecoder.hide()
self.videoDecoder.saveToken.connect(self.setSaveToken)
self.videoDecoder.popAnime4K.connect(self.popAnime4K)
self.exportWindow.exportArgs.connect(self.exportSubtitle)
self.anime4KWindow = Anime4KDialog()
self.anime4KWindow.hide()
self.stack = QStackedWidget()
# self.playerDock = QDockWidget('视频预览', self)
# self.playerDock.setFloating(False)
# self.playerDock.setWidget(self.stack)
# self.addDockWidget(Qt.LeftDockWidgetArea, self.playerDock)
self.mainLayout.addWidget(self.stack, 0, 0, 6, 4)
buttonWidget = QWidget()
buttonLayout = QHBoxLayout()
buttonWidget.setLayout(buttonLayout)
self.playButton = QPushButton('从本地打开')
self.playButton.clicked.connect(self.open)
self.playButton.setFixedWidth(400)
self.playButton.setFixedHeight(75)
self.dnldButton = QPushButton('Youtube下载器')
self.dnldButton.clicked.connect(self.popDnld)
self.dnldButton.setFixedWidth(400)
self.dnldButton.setFixedHeight(75)
buttonLayout.addWidget(self.playButton)
buttonLayout.addWidget(self.dnldButton)
self.stack.addWidget(buttonWidget)
self.pay = pay()
self.hotKeyInfo = hotKey_Info()
self.releases = releases()
self.videoPath = ''
self.videoWidth = 1920
self.videoHeight = 1080
self.globalInterval = 100 / 3
self.oldGlobalInterval = 50
self.tableRefreshLimit = self.globalInterval
self.timer = QTimer()
self.timer.setInterval(self.globalInterval)
self.graphTimer = QTimer() # 刷新音频图的timer
self.graphTimer.setInterval(33)
self.setting = settingPage()
self.setting.settingSignal.connect(self.changeSetting)
self.tableRefresh = True
self.settingDict = {'layoutType': '0', # 0: 风格1, 1: 风格2
'redLinePos': '5',
'tableRefresh': '0', # 0: 开启, 1: 关闭
'tableRefreshFPS': '0', # 0: 60FPS, 1: 30FPS, 2: 20FPS, 3: 10FPS
'graphRefreshFPS': '1', # 0: 60FPS, 1: 30FPS, 2: 20FPS, 3: 10FPS
}
if os.path.exists('config'): # 导入已存在的设置
with open('config', 'r') as cfg:
for line in cfg:
if '=' in line:
try:
cfgName, cfgValue = line.strip().replace(' ', '').split('=')
if cfgName in self.settingDict:
self.settingDict[cfgName] = cfgValue
except Exception as e:
print(str(e))
self.tableRefresh = [True, False][int(self.settingDict['tableRefresh'])]
self.changeSetting(self.settingDict)
self.sepMain = sepMainAudio(self.videoPath, self.duration) # 创建切片主音频线程对象
self.videoWindowSizePreset = {0: (640, 360), 1: (800, 450), 2: (1176, 664), 3: (1280, 720),
4: (1366, 768), 5: (1600, 900), 6: (1920, 1080), 7: (2560, 1600)}
self.videoWindowSizeIndex = 1
self.setPlayer()
self.setGraph()
self.setSubtitle()
self.setToolBar()
self.setCentralWidget(self.mainWidget)
self.editToken = False
self.playStatus = False
self.volumeStatus = True
self.volumeValue = 100
self.subSelectedTxt = ''
self.subReplayTime = 1
self.subtitleSelected = 0
self.clipBoard = []
self.subPreview = ''
self.saveToken = True
self.grabKeyboard()
self.show()
def setPlayer(self):
self.playerWidget = GraphicsVideoItem()
self.playerWidget.wheel.connect(self.changeVideoWindowSize)
self.playerWidget.dropFile.connect(self.openVideo)
w, h = self.videoWindowSizePreset[self.videoWindowSizeIndex]
self.playerWidget.setSize(QSizeF(w, h))
self.scene = QGraphicsScene()
self.view = QGraphicsView(self.scene)
self.scene.addItem(self.playerWidget)
self.stack.addWidget(self.view)
self.player = QMediaPlayer()
self.player.setVideoOutput(self.playerWidget)
self.view.installEventFilter(self)
self.view.show()
self.tipText = QGraphicsTextItem()
self.scene.addItem(self.tipText)
w = self.width()
h = self.height()
self.view.setFixedSize(w, h)
self.scene.setSceneRect(5, 5, w - 10, h - 10)
self.playerWidget.setSize(QSizeF(w, h))
self.playerWidget_vocal = GraphicsVideoItem()
self.scene_vocal = QGraphicsScene()
self.view_vocal = QGraphicsView(self.scene_vocal)
self.scene_vocal.addItem(self.playerWidget_vocal)
self.stack.addWidget(self.view_vocal)
self.player_vocal = QMediaPlayer(self, QMediaPlayer.VideoSurface)
self.player_vocal.setVideoOutput(self.playerWidget_vocal)
self.view_vocal.show()
def changeVideoWindowSize(self, delta):
if delta < 0:
self.videoWindowSizeIndex -= 1
if self.videoWindowSizeIndex < 0:
self.videoWindowSizeIndex = 0
else:
self.videoWindowSizeIndex += 1
if self.videoWindowSizeIndex > 7:
self.videoWindowSizeIndex = 7
w, h = self.videoWindowSizePreset[self.videoWindowSizeIndex]
if h > self.height() * 0.65:
self.videoWindowSizeIndex -= 1
else:
self.stack.setFixedSize(w, h)
self.view.setFixedSize(w, h)
self.scene.setSceneRect(5, 5, w - 10, h - 10)
self.playerWidget.setSize(QSizeF(w, h))
def setGraph(self): # 绘制音频图
self.mainAudio = graph_main()
self.mainAudio.clicked.connect(self.playMainAudio)
self.voiceAudio = graph_vocal()
self.voiceAudio.clicked.connect(self.playVocal)
self.graphWidget = QWidget()
graphWidgetLayout = QGridLayout()
self.graphWidget.setLayout(graphWidgetLayout)
graphWidgetLayout.addWidget(self.mainAudio, 0, 0, 1, 1)
graphWidgetLayout.addWidget(self.voiceAudio, 1, 0, 1, 1)
# self.graphDock = QDockWidget('波形图', self)
# self.graphDock.setFloating(False)
# self.graphDock.setWidget(self.graphWidget)
# self.addDockWidget(Qt.LeftDockWidgetArea, self.graphDock)
if self.settingDict['layoutType'] == '0':
self.mainLayout.addWidget(self.mainAudio, 6, 0, 1, 4)
self.mainLayout.addWidget(self.voiceAudio, 7, 0, 1, 4)
elif self.settingDict['layoutType'] == '1':
self.mainLayout.addWidget(self.mainAudio, 6, 0, 1, 20)
self.mainLayout.addWidget(self.voiceAudio, 7, 0, 1, 20)
def setSubtitle(self):
self.subtitleDict = {0: {}, 1: {}, 2: {}, 3: {}, 4: {}} # 初始字幕字典
self.subTimer = QTimer()
self.subTimer.setInterval(10)
self.subtitle.setAutoScroll(False)
self.subtitle.setEditTriggers(QAbstractItemView.NoEditTriggers)
# self.subtitleDock = QDockWidget('字幕编辑', self)
# self.subtitleDock.setFloating(False)
# self.subtitleDock.setWidget(self.subtitle)
# self.addDockWidget(Qt.RightDockWidgetArea, self.subtitleDock)
if self.settingDict['layoutType'] == '0':
self.mainLayout.addWidget(self.subtitle, 0, 4, 8, 16)
elif self.settingDict['layoutType'] == '1':
self.mainLayout.addWidget(self.subtitle, 0, 4, 6, 16)
self.subtitle.setColumnCount(5)
self.subtitle.setRowCount(101)
for index in range(5):
self.subtitle.setColumnWidth(index, 130)
for row in range(101):
self.subtitle.setRowHeight(row, 15)
self.refreshTable()
self.row = 0
self.subtitle.selectRow(self.row)
self.subtitle.setHorizontalScrollMode(QAbstractItemView.ScrollPerPixel)
self.subtitle.setEditTriggers(QAbstractItemView.DoubleClicked)
self.subtitle.horizontalHeader().sectionClicked.connect(self.editStyleName)
self.subtitle.doubleClicked.connect(self.startEdit) # 双击单元格开始编辑
self.subtitle.verticalHeader().sectionClicked.connect(self.subHeaderClick)
self.subtitle.setContextMenuPolicy(Qt.CustomContextMenu)
self.subtitle.customContextMenuRequested.connect(self.popTableMenu)
self.subtitle.cellEntered.connect(self.followMouse)
self.subtitleBackend = []
self.subtitleBackendPoint = 0
def followMouse(self, row, col): # 鼠标按住拖动时 全局进度跟随鼠标
if self.player.duration() and self.tableRefresh:
position = int(row * self.globalInterval) + self.position # 进度为 点击行号x间隔 +全局进度
self.player.setPosition(position)
self.player_vocal.setPosition(position)
self.videoSlider.setValue(position * self.videoSlider.width() // self.player.duration())
self.setTimeLabel(position)
def refreshTable(self, position=0, select=0, scroll=0): # 实时刷新表格
self.subtitle.clearSpans()
self.subtitle.clear()
if not position:
self.position = self.player.position()
else:
self.position = position
self.row, remain = divmod(self.position, self.globalInterval) # 当前进度行号
self.row = int(self.row)
if remain:
self.row += 1
self.subtitle.selectRow(select) # 永远选在第一行
self.subtitle.verticalScrollBar().setValue(scroll) # 滚动条选在第一行
self.subtitle.setVerticalHeaderLabels([cnt2Time(i, self.globalInterval) for i in range(self.row, self.row + 101)]) # 刷新行号
self.subtitle.setHorizontalHeaderLabels(self.styleNameList) # 设置列名(样式名)
subtitleViewUp = self.position # 表格视窗开始时间(ms)
subtitleViewDown = self.position + int(100 * self.globalInterval) # 表格视窗结束时间(ms)
for x, subData in self.subtitleDict.items(): # 只刷新进度 +100行范围内的字幕
for start in sorted(subData): # 字幕字典格式 {开始时间(ms):[持续时间(ms),字幕]}
delta, text = subData[start]
if delta < 500 or delta > 8000: # 持续时间小于500ms或大于8s
tableColor = '#B22222'
elif delta > 4500: # 持续时间大于4.5s且小于8s
tableColor = '#FA8072'
else:
tableColor = '#35545d'
if start >= subtitleViewDown or not delta: # 超出表格视窗则跳出
break
elif start + delta >= subtitleViewUp: # 计算字幕条位于表格视窗的位置
startRow, remain = divmod(start, self.globalInterval) # 起始行
if remain:
startRow += 1
startRow = int(startRow - self.row)
endRow, remain = divmod(start + delta, self.globalInterval) # 结束行
if remain:
endRow += 1
endRow = int(endRow - self.row)
if startRow < 0: # 防止超出表格视窗
startRow = 0
if endRow > 101:
endRow = 101
if endRow > startRow: # 小于一行的跳过
for y in range(startRow, endRow):
self.subtitle.setItem(y, x, QTableWidgetItem(text))
self.subtitle.item(startRow, x).setBackground(QColor(tableColor))
self.subtitle.setSpan(startRow, x, endRow - startRow, 1) # 跨行合并
self.subtitle.item(startRow, x).setTextAlignment(Qt.AlignTop) # 字幕居上
def editStyleName(self, index): # 点击表头弹出修改样式名弹窗
self.editIndex = index
self.releaseKeyboard()
self.editStyleNameDialog.setDefaultName(self.styleNameList[index])
self.editStyleNameDialog.hide()
self.editStyleNameDialog.show()
def updateStyleName(self, styleName): # 更新表头(样式名)
self.styleNameList[self.editIndex] = styleName
self.subtitle.setHorizontalHeaderLabels(self.styleNameList)
def addSubtitle(self, index, subtitlePath=''):
self.editIndex = index
if not subtitlePath:
subtitlePath = QFileDialog.getOpenFileName(self, "请选择字幕", None, "字幕文件 (*.srt *.vtt *.ass *.lrc)")[0]
if subtitlePath:
subData = {}
if subtitlePath.endswith('.ass'):
self.assSelect.setDefault(subtitlePath, index)
self.assSelect.hide()
self.assSelect.show()
else:
with open(subtitlePath, 'r', encoding='utf-8') as f:
f = f.readlines()
if subtitlePath.endswith('.vtt'):
format = 'vtt'
for cnt, l in enumerate(f):
if '' in l: # 油管vtt字幕格式——逐字识别字幕
lineData = l.split('c>')
if len(lineData) > 3:
subText, start, _ = lineData[0].split('<')
start = calSubTime(start[:-1]) // 10 * 10
# if start not in self.subtitleDict[index]:
end = calSubTime(lineData[-3][1:-2]) // 10 * 10
for i in range(len(lineData) // 2):
subText += lineData[i * 2 + 1][:-2]
subData[start] = [end - start, subText]
else: # 油管自动识别出来的那种超短单行字幕
subText, start, _ = lineData[0].split('<')
start = calSubTime(start[:-1]) // 10 * 10
# if start not in self.subtitleDict[index]:
subText += lineData[1][:-2]
subData[start] = [int(self.globalInterval), subText]
elif '-->' in l and f[cnt + 2].strip() and '' not in f[cnt + 2]: # 油管vtt字幕——单行类srt格式字幕
subText = f[cnt + 2][:-1]
start, end = l.strip().replace(' ', '').split('-->')
start = calSubTime(start) // 10 * 10
# if start not in self.subtitleDict[index]:
if 'al' in end: # align
end = end.split('al')[0]
end = calSubTime(end) // 10 * 10
subData[start] = [end - start, subText]
elif subtitlePath.endswith('.srt'):
format = 'srt'
for cnt, l in enumerate(f):
if '-->' in l and f[cnt + 1].strip(): # srt字幕格式
start, end = l.strip().replace(' ', '').split('-->')
start = calSubTime(start) // 10 * 10
# if start not in self.subtitleDict[index]:
end = calSubTime(end) // 10 * 10
delta = end - start
if delta > 10:
if '' in f[cnt + 1]: # 有的字幕里带 好像是通过ffmpeg把ass转srt出来的
subData[start] = [delta, f[cnt + 1].split('')[1].split('<')[0]]
else:
subData[start] = [delta, f[cnt + 1].strip()]
elif subtitlePath.endswith('.lrc'):
format = 'lrc'
while '\n' in f:
f.remove('\n')
for cnt, l in enumerate(f[:-1]):
try:
if len(l) > 9:
if l[0] == '[' and l[9] == ']':
start = calSubTime2(l[1:9])
delta = calSubTime2(f[cnt + 1][1:9]) - start
text = l.strip()[10:]
subData[start] = [delta, text]
except Exception as e:
print(str(e))
if len(f[:-1]) > 9:
if f[:-1][0] == '[' and f[:-1][9] == ']':
try:
start = calSubTime2(f[:-1][1:9])
delta = self.duration - start
text = f[:-1].strip()[10:]
subData[start] = [delta, text]
except Exception as e:
print(str(e))
self.subSelect.setDefault(subData, index, format)
self.subSelect.hide()
self.subSelect.show()
# self.subtitleDict[index].update(subData)
# self.updateBackend()
# self.refreshTable()
def addASSSub(self, assSummary): # 解析返回的ass字幕
index = assSummary[0] # 列号
styleName = assSummary[1] # 样式名
assDict = assSummary[2] # 字幕信息
self.styleNameList[self.editIndex] = styleName # 更新样式名
self.videoDecoder.setSubDictStyle(assSummary) # 设置输出页面字幕样式
subData = assDict['Events']
self.subtitleDict[index].update(subData) # 更新读取ass的对话字典
self.updateBackend()
self.refreshTable()
def addSub(self, subData, index): # 导入其他类型字幕
self.subtitleDict[index].update(subData)
self.updateBackend()
self.refreshTable()
def subTimeOut(self): # 刷新预览字幕
if self.dnldWindow.isHidden() and self.exportWindow.isHidden() and self.videoDecoder.isHidden()\
and self.separate.isHidden() and self.editStyleNameDialog.isHidden() and not self.editToken\
and self.anime4KWindow.isHidden() and self.hotKeyInfo.isHidden() and self.videoPositionEdit.isReadOnly():
self.grabKeyboard()
fontColor = self.previewSubtitle.fontColor # 预览字幕样式
fontSize = (self.previewSubtitle.fontSize + 5) / 2.5
fontBold = self.previewSubtitle.bold
fontItalic = self.previewSubtitle.italic
fontShadowOffset = self.previewSubtitle.shadowOffset
font = QFont()
font.setFamily("微软雅黑")
font.setPointSize(fontSize)
font.setBold(fontBold)
font.setItalic(fontItalic)
srtTextShadow = QGraphicsDropShadowEffect() # 设置阴影
srtTextShadow.setOffset(fontShadowOffset)
txt = ''
self.tipText.setDefaultTextColor(fontColor)
self.tipText.setFont(font)
self.tipText.setGraphicsEffect(srtTextShadow)
if self.replay == 1: # 循环播放提示
txt += '循环播放: %s —— %s\n' % tuple(map(ms2Time, self.playRange))
elif self.replay == 2: # 单次播放提示
txt += '单次播放: %s —— %s\n' % tuple(map(ms2Time, self.playRange))
if self.secondeMedia: # 切换第二音轨时视频左上角提示文字
if self.voiceMedia:
txt += '当前播放: 人声音轨\n'
else:
txt += '当前播放: 背景音轨\n'
self.tipText.setPlainText(txt)
def subHeaderClick(self, row): # 点击行号跳转
if self.player.duration():
position = int(row * self.globalInterval) + self.position # 进度为 点击行号x间隔 +全局进度
self.player.setPosition(position)
self.player_vocal.setPosition(position)
self.videoSlider.setValue(position * self.videoSlider.width() // self.player.duration())
self.setTimeLabel(position)
def startEdit(self):
self.releaseKeyboard()
self.editToken = True
try:
self.subtitle.cellChanged.disconnect(self.subEdit) # 在连接cellchanged信号前先尝试断开
except:
pass
self.subtitle.cellChanged.connect(self.subEdit)
def subEdit(self, row, col):
self.subtitle.cellChanged.disconnect(self.subEdit) # cellChanged信号只是用来进入subEdit函数 进来就断开
repeat = self.subtitle.rowSpan(row, col) # 获取合并格数
text = self.subtitle.item(row, col).text()
containToken = False
newS = int((row + self.row) * self.globalInterval)
subData = self.subtitleDict[col]
for start, subLine in subData.items():
delta = subLine[0]
end = start + delta
if newS >= start and newS < end:
self.subtitleDict[col][start] = [delta, text]
containToken = True
break
if not containToken:
self.setSubtitleDict(row, col, repeat, text) # 更新字典
else:
self.updateBackend() # 备份并刷新显示
for y in range(repeat):
self.subtitle.setItem(row + y, col, QTableWidgetItem(text)) # 更新表格
self.subtitle.item(row + y, col).setTextAlignment(Qt.AlignTop) # 字幕居上
delta = int(repeat * self.globalInterval)
self.subtitle.item(row, col).setBackground(QColor('#35545d'))
self.grabKeyboard()
def setSubtitleDict(self, row, col, repeat, text, concat=False, delete=False):
newSRow = row + self.row # 编辑起始位置(行数)
newERow = newSRow + repeat # 编辑结束位置(行数)
newS = int(newSRow * self.globalInterval)
newE = int(newERow * self.globalInterval)
start_end = [99999999, 0]
old_start_end = [99999999, 0]
keyList = copy.deepcopy(list(self.subtitleDict[col].keys()))
for oldS in keyList:
oldE = self.subtitleDict[col][oldS][0] + oldS
if (newS <= oldS and newE > oldS + int(self.globalInterval)) or \
(newS < oldE - int(self.globalInterval) and newE >= oldE):
del self.subtitleDict[col][oldS]
if oldS < old_start_end[0]:
old_start_end[0] = oldS
if oldE > old_start_end[1]:
old_start_end[1] = oldE
if concat:
if newS > oldS and newS < oldE - int(self.globalInterval):
newS = oldS
if oldS < start_end[0]:
start_end[0] = oldS
if newE > oldS + int(self.globalInterval) and newE < oldE:
newE = oldE
if oldE > start_end[1]:
start_end[1] = oldE
if concat:
if start_end[0] != 99999999 and start_end[1]:
self.subtitleDict[col][start_end[0]] = [start_end[1] - start_end[0], text]
else:
start = newS
end = newE
subStartList = sorted(self.subtitleDict[col].keys())
for subStart in subStartList:
subEnd = self.subtitleDict[col][subStart][0] + subStart
if start < subEnd and end > subEnd:
start = subEnd
if end > subStart and end < subEnd:
end = subStart
self.subtitleDict[col][int(start)] = [int(end - start), text] # 更新字典
elif old_start_end[0] != 99999999 and old_start_end[1]:
start, end = old_start_end
subStartList = sorted(self.subtitleDict[col].keys())
for subStart in subStartList:
subEnd = self.subtitleDict[col][subStart][0] + subStart
if start < subEnd and end > subEnd:
start = subEnd
if end > subStart and end < subEnd:
end = subStart
self.subtitleDict[col][start] = [end - start, text]
else:
start = newS
end = newE
self.subtitleDict[col][round(start)] = [round(end - start), text] # 更新字典
if delete:
try:
del self.subtitleDict[col][newS]
except:
pass
self.updateBackend()
def updateBackend(self): # 保存修改记录
selected = self.subtitle.selectionModel().selection().indexes()
if selected:
y = selected[0].row()
else:
y = 0
scrollValue = self.subtitle.verticalScrollBar().value()
self.subtitleBackend = self.subtitleBackend[:self.subtitleBackendPoint + 1]
self.subtitleBackend.append([copy.deepcopy(self.subtitleDict), self.position, y, scrollValue])
self.subtitleBackendPoint = len(self.subtitleBackend) - 1
if len(self.subtitleBackend) > 100: # 超出100次修改 则删除最早的修改
self.subtitleBackend.pop(0)
if self.subPreview:
self.refreshSubPreview()
def refreshSubPreview(self): # 修改实时预览字幕
self.videoDecoder.copySubtitle(self.subtitleDict) # 更新字幕内容给输出
self.videoDecoder.writeAss(self.subPreview, False, True, allSub=True) # 写入ass文件
self.player.setPosition(self.position) # 刷新视频
def popTableMenu(self, pos): # 右键菜单
pos = QPoint(pos.x() + 55, pos.y() + 30)
menu = QMenu()
setSpan = menu.addAction('合并')
cutSpan = menu.addAction('切割')
clrSpan = menu.addAction('拆分')
cut = menu.addAction('剪切')
_copy = menu.addAction('复制')
paste = menu.addAction('粘贴')
delete = menu.addAction('删除')
check = menu.addAction('检查')
addSub = menu.addAction('导入')
replay = menu.addAction('循环播放')
cancelReplay = menu.addAction('取消循环')
action = menu.exec_(self.subtitle.mapToGlobal(pos))
selected = self.subtitle.selectionModel().selection().indexes()
xList = [] # 选中行
for i in range(len(selected)):
x = selected[i].column()
if x not in xList: # 剔除重复选择
xList.append(x)
yList = [selected[0].row(), selected[-1].row()]
if action == cut: # 剪切
selectRange = [int((y + self.row) * self.globalInterval) for y in range(yList[0], yList[1] + 1)]
self.clipBoard = []
for x in xList:
for start, subData in self.subtitleDict[x].items():
end = subData[0] + start
for position in selectRange:
if start < position and position < end:
self.clipBoard.append([start, subData])
break
for i in self.clipBoard:
start = i[0]
try:
del self.subtitleDict[x][start]
except:
pass
for y in range(yList[0], yList[1] + 1):
if self.subtitle.item(y, x):
self.subtitle.setSpan(y, x, 1, 1)
self.subtitle.setItem(y, x, QTableWidgetItem(''))
self.subtitle.item(y, x).setBackground(QColor('#232629')) # 没内容颜色
break # 只剪切选中的第一列
elif action == _copy: # 复制
selectRange = [int((y + self.row) * self.globalInterval) for y in range(yList[0], yList[1] + 1)]
self.clipBoard = []
for x in xList:
for start, subData in self.subtitleDict[x].items():
end = subData[0] + start
for position in selectRange:
if start < position and position < end:
self.clipBoard.append([start, subData])
break
break # 只复制选中的第一列
elif action == paste: # 粘贴
if self.clipBoard:
clipBoard = []
for i in self.clipBoard:
clipBoard.append([i[0] - self.clipBoard[0][0], i[1]]) # 减去复制的字幕的起始偏移量
startOffset = int((yList[0] + self.row) * self.globalInterval)
for x in xList:
for subData in clipBoard:
start, subData = subData
delta, text = subData
start += startOffset
end = start + delta
for subStart in list(self.subtitleDict[x].keys()):
subEnd = self.subtitleDict[x][subStart][0] + subStart
if subStart < end and end < subEnd or subStart < start and start < subEnd:
del self.subtitleDict[x][subStart]
self.subtitleDict[x][start] = [delta, text]
scrollValue = self.subtitle.verticalScrollBar().value()
self.refreshTable(int(self.row * self.globalInterval), yList[0], scrollValue)
self.updateBackend()
self.refreshGraph(True)
elif action == delete: # 删除选中
selectRange = [int((y + self.row) * self.globalInterval) for y in yList]
for x in xList:
startList = sorted(self.subtitleDict[x].keys())
for start in startList:
end = self.subtitleDict[x][start][0] + start
for position in range(selectRange[0], selectRange[-1] + 1):
if start <= position and position < end:
try:
del self.subtitleDict[x][start]
except:
pass
for x in xList:
for y in range(yList[0], yList[1] + 1):
if self.subtitle.item(y, x):
self.subtitle.setSpan(y, x, 1, 1)
self.subtitle.setItem(y, x, QTableWidgetItem(''))
self.subtitle.item(y, x).setBackground(QColor('#232629')) # 没内容颜色
self.updateBackend()
self.refreshGraph(True)
elif action == check: # 检查字幕
styles = self.videoDecoder.returnSubDictStyle()
self.assCheck = assCheck(self.subtitleDict, xList[0], styles, self.styleNameList)
self.assCheck.getSub.connect(self.sendSubtitleToAssCheck) # 刷新检查表格
self.assCheck.position.connect(self.setPlayerPosition)
self.assCheck.show()
elif action == setSpan: # 合并函数
if yList[0] < yList[-1]:
for x in xList: # 循环所有选中的列
firstItem = ''
for y in range(yList[0], yList[1] + 1): # 从选中行开始往下查询到第一个有效值后退出 一直没找到则为空
if self.subtitle.item(y, x):
if self.subtitle.item(y, x).text():
firstItem = self.subtitle.item(y, x).text()
break
for y in range(yList[0], yList[1] + 1):
if self.subtitle.rowSpan(y, x) > 1:
self.subtitle.setSpan(y, x, 1, 1) # 清除合并格子
self.subtitle.setItem(yList[0], x, QTableWidgetItem(firstItem)) # 全部填上firstItem
self.subtitle.item(yList[0], x).setTextAlignment(Qt.AlignTop) # 字幕居上
self.subtitle.setSpan(yList[0], x, yList[1] - yList[0] + 1, 1) # 合并单元格
self.subtitle.item(yList[0], x).setBackground(QColor('#35545d')) # 第一个单元格填上颜色即可
self.setSubtitleDict(yList[0], x, yList[1] - yList[0] + 1, firstItem, concat=True) # 更新表格
elif action == cutSpan: # 切割
y = yList[0]
cutToken = False
selectTime = int((y + self.row) * self.globalInterval)
copySubtitleDict = copy.deepcopy(self.subtitleDict)
for x in copySubtitleDict.keys():
for start, subData in copySubtitleDict[x].items():
delta, text = subData
if selectTime >= start and selectTime <= start + delta:
cutToken = True
self.subtitleDict[x][start] = [selectTime - start, text]
self.subtitleDict[x][selectTime] = [start + delta - selectTime, text]
if cutToken:
scrollValue = self.subtitle.verticalScrollBar().value()
self.refreshTable(int(self.row * self.globalInterval), y, scrollValue)
self.refreshGraph(True)
self.updateBackend()
elif action == clrSpan: # 拆分
clearToken = False
for x in xList:
startList = sorted(self.subtitleDict[x].keys()) # 对起始时间排序
for cnt, start in enumerate(startList):
delta, text = self.subtitleDict[x][start]
selectList = [int((y + self.row) * self.globalInterval) for y in range(yList[0], yList[1] + 1)]
for select in selectList:
if select >= start and select < start + delta: # 确认选中的轴
clearToken = True
for i in range(int(delta / self.globalInterval)):
self.subtitleDict[x][start] = [int(self.globalInterval), text]
start += int(self.globalInterval)
if clearToken:
scrollValue = self.subtitle.verticalScrollBar().value()
self.refreshTable(int(self.row * self.globalInterval), yList[0], scrollValue)
self.updateBackend()
self.refreshGraph(True)
elif action == addSub: # 添加字幕
for x in xList:
self.addSubtitle(x)
break # 只添加选中的第一列
elif action == replay: # 循环播放
self.replay = 1
self.playRange = [int((yList[0] + self.row) * self.globalInterval),
int((yList[1] + self.row + 1) * self.globalInterval)]
elif action == cancelReplay: # 取消循环
self.replay = 0
self.playRange = [0, self.duration]
def sendSubtitleToAssCheck(self):
styles = self.videoDecoder.returnSubDictStyle()
self.assCheck.setDefault(self.subtitleDict, styles) # 检查字幕里的刷新
def setPlayerPosition(self, position): # 响应检查表格里的双击
self.player.setPosition(position)
self.player_vocal.setPosition(position)
self.videoSlider.setValue(position * self.videoSlider.width() // self.player.duration())
self.setTimeLabel(position)
self.refreshTable(position)
def setToolBar(self):
'''
menu bar, file menu, play menu, tool bar.
'''
toolBar = QToolBar()
self.setContextMenuPolicy(Qt.NoContextMenu)
self.addToolBar(toolBar)
fileMenu = self.menuBar().addMenu('&文件')
openAction = QAction(QIcon.fromTheme('document-open'), '&打开...', self, shortcut=QKeySequence.Open, triggered=self.open)
fileMenu.addAction(openAction)
downloadAction = QAction(QIcon.fromTheme('document-open'), '&Youtube下载器', self, triggered=self.popDnld)
fileMenu.addAction(downloadAction)
exitAction = QAction(QIcon.fromTheme('application-exit'), '&退出', self, shortcut='Ctrl+Q', triggered=self.close)
fileMenu.addAction(exitAction)
playMenu = self.menuBar().addMenu('&功能')
self.playIcon = self.style().standardIcon(QStyle.SP_MediaPlay)
self.pauseIcon = self.style().standardIcon(QStyle.SP_MediaPause)
self.playAction = toolBar.addAction(self.playIcon, '播放')
self.playAction.triggered.connect(self.mediaPlay)
self.volumeIcon = self.style().standardIcon(QStyle.SP_MediaVolume)
self.volumeMuteIcon = self.style().standardIcon(QStyle.SP_MediaVolumeMuted)
self.volumeAction = toolBar.addAction(self.volumeIcon, '静音')
self.volumeAction.triggered.connect(self.volumeMute)
separateAction = QAction(QIcon.fromTheme('document-open'), '&AI自动打轴', self, triggered=self.popSeparate)
playMenu.addAction(separateAction)
previewAction = QAction(QIcon.fromTheme('document-open'), '&设置字幕样式', self, triggered=self.decode)
playMenu.addAction(previewAction)
anime4KAction = QAction(QIcon.fromTheme('document-open'), '&Anime4K画质扩展', self, triggered=self.popAnime4K)
playMenu.addAction(anime4KAction)
reloadVideo = QAction(QIcon.fromTheme('document-open'), '&尝试解决字幕卡死', self, triggered=self.reloadVideo)
playMenu.addAction(reloadVideo)
decodeMenu = self.menuBar().addMenu('&输出')
decodeAction = QAction(QIcon.fromTheme('document-open'), '&输出字幕及视频', self, triggered=self.decode)
decodeMenu.addAction(decodeAction)
helpMenu = self.menuBar().addMenu('&帮助')
settingAction = QAction(QIcon.fromTheme('document-open'), '&设置', self, triggered=self.popSettingPage)
helpMenu.addAction(settingAction)
tutorialAction = QAction(QIcon.fromTheme('document-open'), '&B站教程', self, triggered=self.popTutorial)
helpMenu.addAction(tutorialAction)
releasesAction = QAction(QIcon.fromTheme('document-open'), '&版本更新', self, triggered=self.popReleases)
helpMenu.addAction(releasesAction)
helpInfoAction = QAction(QIcon.fromTheme('document-open'), '&快捷键说明', self, triggered=self.popHotKeyInfo)
helpMenu.addAction(helpInfoAction)
payMenu = self.menuBar().addMenu('&赞助')
payAction = QAction(QIcon.fromTheme('document-open'), '&赞助和打赏', self, triggered=self.popPayment)
payMenu.addAction(payAction)
self.volSlider = Slider()
self.volSlider.setOrientation(Qt.Horizontal)
self.volSlider.setMinimum(0)
self.volSlider.setMaximum(100)
self.volSlider.setFixedWidth(120)
self.volSlider.setValue(self.player.volume())
self.volSlider.setToolTip(str(self.volSlider.value()))
self.volSlider.pointClicked.connect(self.setVolume)
toolBar.addWidget(self.volSlider)
self.videoPositionEdit = LineEdit('00:00')
self.videoPositionEdit.setAlignment(Qt.AlignRight)
self.videoPositionEdit.setFixedWidth(75)
self.videoPositionEdit.setFont(QFont('Timers', 14))
self.videoPositionEdit.setReadOnly(True)
self.videoPositionEdit.clicked.connect(self.mediaPauseOnly)
self.videoPositionEdit.editingFinished.connect(self.mediaPlayOnly)
self.videoPositionLabel = QLabel(' / 00:00 ')
self.videoPositionLabel.setFont(QFont('Timers', 14))
toolBar.addWidget(QLabel(' '))
toolBar.addWidget(self.videoPositionEdit)
toolBar.addWidget(self.videoPositionLabel)
self.videoSlider = Slider()
self.videoSlider.setEnabled(False)
self.videoSlider.setOrientation(Qt.Horizontal)
self.videoSlider.setFixedWidth(self.width() * 0.8)
self.videoSlider.setMaximum(self.videoSlider.width())
self.videoSlider.sliderMoved.connect(self.timeStop)
self.videoSlider.sliderReleased.connect(self.timeStart)
self.videoSlider.pointClicked.connect(self.videoSliderClick)
toolBar.addWidget(self.videoSlider)
toolBar.addWidget(QLabel(' '))
self.playRateComBox = QComboBox()
self.playRateComBox.addItems(['倍速 x0.1', '倍速 x0.25', '倍速 x0.5', '倍速 x0.75', '倍速 x1',
'倍速 x1.25', '倍速 x1.5', '倍速 x1.75', '倍速 x2'])
self.playRateComBox.setCurrentIndex(4)
self.playRateComBox.currentIndexChanged.connect(self.setPlayRate)
toolBar.addWidget(self.playRateComBox)
toolBar.addWidget(QLabel(' '))
self.globalIntervalComBox = QComboBox()
self.globalIntervalComBox.addItems(['间隔 10ms', '间隔 16ms(60FPS)', '间隔 20ms', '间隔 33ms(30FPS)',
'间隔 50ms(20FPS)', '间隔 100ms', '间隔 200ms', '间隔 500ms', '间隔 1s'])
self.globalIntervalComBox.setCurrentIndex(3)
self.globalIntervalComBox.currentIndexChanged.connect(self.setGlobalInterval)
toolBar.addWidget(self.globalIntervalComBox)
toolBar.addWidget(QLabel(' '))
self.subEditComBox = QComboBox()
for i in range(self.subtitle.columnCount()):
self.subEditComBox.addItem('字幕 ' + str(i + 1))
toolBar.addWidget(self.subEditComBox)
toolBar.addWidget(QLabel(' '))
addSub = QPushButton('导入')
addSub.setFixedWidth(50)
addSub.setFixedHeight(31)
toolBar.addWidget(addSub)
toolBar.addWidget(QLabel(' '))
clearSub = QPushButton('清空')
clearSub.setFixedWidth(50)
clearSub.setFixedHeight(31)
toolBar.addWidget(clearSub)
toolBar.addWidget(QLabel(' '))
addSub.clicked.connect(lambda: self.addSubtitle(self.subEditComBox.currentIndex()))
clearSub.clicked.connect(self.clearSub)
def setGlobalInterval(self, index): # 设置全局间隔
if not self.playStatus:
self.mediaPlay()
self.globalInterval = {0: 10, 1: 50 / 3, 2: 20, 3: 100 / 3, 4: 50, 5: 100, 6: 200, 7: 500, 8: 1000}[index]
if self.globalInterval > self.tableRefreshLimit:
self.timer.setInterval(self.globalInterval)
else:
self.timer.setInterval(self.tableRefreshLimit)
self.refreshTable()
def setPlayRate(self, index): # 倍速功能
playRate = {0: 0.1, 1: 0.25, 2: 0.5, 3: 0.75, 4: 1, 5: 1.25, 6: 1.5, 7: 1.75, 8: 2}[index]
self.player.setPlaybackRate(playRate)
self.player_vocal.setPlaybackRate(playRate)
def clearSub(self):
row = self.subEditComBox.currentIndex()
reply = QMessageBox.information(self, '清空字幕', '清空第 %s 列字幕条?' % (row + 1), QMessageBox.Yes | QMessageBox.No)
if reply == QMessageBox.Yes:
self.subtitleDict[row] = {}
self.updateBackend()
self.refreshTable()
def exportSubWindow(self, start=0, end=0, index=None):
self.releaseKeyboard()
self.exportWindow.hide()
self.exportWindow.show()
start = '00:00.0' if not start else splitTime(start)
end = splitTime(self.duration) if not end else splitTime(end)
if not index:
index = self.subEditComBox.currentIndex() + 1
self.exportWindow.setDefault(start, end, index)
def exportSubtitle(self, exportArgs):
videostart = calSubTime2(exportArgs[0])
videoend = calSubTime2(exportArgs[1])
subStart = calSubTime2(exportArgs[2])
index = exportArgs[3] - 1
subData = self.subtitleDict[index]
rowList = sorted(subData.keys())
exportRange = []
for t in rowList:
if t >= videostart and t <= videoend:
exportRange.append(t)
subNumber = 1
if exportArgs[-1]: # 有效路径
with open(exportArgs[-1], 'w', encoding='utf-8') as exportFile:
for t in exportRange:
text = subData[t][1]
if text:
start = ms2SRTTime(t - videostart + subStart)
end = ms2SRTTime(t - videostart + subStart + subData[t][0])
exportFile.write('%s\n%s --> %s\n%s\n\n' % (subNumber, start, end, text))
subNumber += 1
QMessageBox.information(self, '导出字幕', '导出完成', QMessageBox.Yes)
self.exportWindow.hide()
def open(self):
self.videoPath = QFileDialog.getOpenFileName(self,"请选择视频文件", None,
"视频文件 (*.mp4 *.avi *.flv);;音频文件 (*.mp3 *.wav *.aac);;所有文件 (*.*)")[0]
if self.videoPath:
self.openVideo(self.videoPath)
def openVideo(self, videoPath):
self.videoPath = videoPath
if not self.saveToken:
reply = QMessageBox.information(self, '字幕文件未保存', '是否保存字幕?', QMessageBox.Yes | QMessageBox.No | QMessageBox.Cancel)
if reply == QMessageBox.Yes:
self.videoDecoder.hide()
self.videoDecoder.show() # 弹出输出保存界面
elif reply == QMessageBox.No:
if self.subPreview:
os.remove(self.subPreview) # 删除预览字幕文件
if self.backupASS:
originalASS = os.path.splitext(self.videoPath)[0] + '.ass'
try:
os.rename(self.backupASS, originalASS) # 将备份ass文件改回去
except:
pass
self.saveToken = True
elif reply == QMessageBox.Cancel:
self.saveToken = False
if self.saveToken:
for f in os.listdir('temp_audio'):
os.remove('temp_audio\%s' % f)
cmd = ['ffmpeg.exe', '-i', videoPath]
p = subprocess.Popen(cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
p.wait()
try:
for l in p.stdout.readlines(): # FFMpeg这蛋疼的视频信息格式
l = l.decode('gb18030', 'ignore')
if 'Duration' in l:
self.duration = calSubTime(l.split(' ')[3][:-1])
self.bitrate = int(l.split(' ')[-2])
if 'Stream' in l and 'DAR' in l:
args = l.split(',')
for resolution in args[2:5]:
resolution = resolution.replace(' ', '')
if '[' in resolution:
resolution = resolution.split('[')[0]
if 'x' in resolution:
self.videoWidth, self.videoHeight = map(int, resolution.split('x'))
for arg in args:
if 'fps' in arg:
self.fps = float(arg.split('fps')[0])
break
except:
self.duration = 114514 # 万一读取不上来视频长度就先随便分配个 之后在timeout修正
# 向输出页面发送视频信息
self.videoDecoder.setDefault(videoPath, self.videoWidth, self.videoHeight, self.duration,
self.bitrate, self.fps, self.subtitleDict, self.styleNameList)
self.subPreview = os.path.splitext(videoPath)[0] # 设置主界面实时预览字幕路径 采用k-lite解码器读取视频目录下同名的ass文件来加载
if os.path.exists(self.subPreview + '.ass'): # 防止覆盖已存在的ass文件 若有 复制一个备份
with codecs.open(self.subPreview + '.ass', 'r', 'utf_8_sig') as sub:
sub = sub.readlines()
if os.path.getsize(self.subPreview + '.ass') != 682 or len(sub) != 20: # 字幕文件大小不等于烤肉机默认输出大小或行数不等于20
self.backupASS = '%s_备份_%s.ass' % (self.subPreview, time.strftime("%H%M%S", time.localtime()))
shutil.copy(self.subPreview + '.ass', self.backupASS)
else:
self.backupASS = ''
self.subPreview += '.ass'
self.videoDecoder.writeAss(self.subPreview, False, True) # 创建空白文件
self.position = 0
self.oldPosition = 0
url = QUrl.fromLocalFile(videoPath)
self.stack.setCurrentIndex(1)
self.player.stop()
self.player.setMedia(url)
self.player.setPlaybackRate(1)
self.playStatus = True
self.saveToken = False
self.videoSlider.setEnabled(True)
w, h = self.videoWindowSizePreset[self.videoWindowSizeIndex]
self.stack.setFixedSize(w, h)
self.view.setFixedSize(w, h)
self.scene.setSceneRect(5, 5, w - 10, h - 10)
self.playerWidget.setSize(QSizeF(w, h))
self.playRange = [0, self.duration] # 播放范围
if self.sepMain.isRunning: # 检测上一个视频的切片主音频进程是否还在进行
self.sepMain.terminate()
self.sepMain.quit()
self.sepMain.wait()
self.sepMain = sepMainAudio(videoPath, self.duration) # 开始切片主音频
self.sepMain.mainAudioWave.connect(self.addMainAudioWave)
self.sepMain.start()
self.refreshMainAudioToken = False # 刷新主音频
self.mainAudioWaveX = []
self.mainAudioWaveY = []
self.refreshVoiceToken = False # 刷新AI识别人声音频
self.voiceWaveX = []
self.voiceWaveY = []
self.bgmWaveY = []
self.secondeMedia = False # False: 播放原音轨;True: 播放第二音轨
self.voiceMedia = True # True: 人声音轨;False: BGM音轨
self.mainAudio.plot([0], [0], 0, 1)
self.voiceAudio.plot([0], [0], True, 0, 1)
self.mediaPlay()
self.timer.stop()
self.subTimer.stop()
self.graphTimer.stop()
try: # 尝试断开三个timer
self.timer.timeout.disconnect(self.timeOut)
except:
pass
try:
self.subTimer.timeout.disconnect(self.subTimeOut)
except:
pass
try:
self.graphTimer.timeout.disconnect(self.refreshGraph)
except:
pass
self.timer.start()
self.timer.timeout.connect(self.timeOut)
self.subTimer.start()
self.subTimer.timeout.connect(self.subTimeOut)
self.graphTimer.start() # 音频图timer启动
self.graphTimer.timeout.connect(self.refreshGraph)
def changeSetting(self, settingDict): # 配置设置参数
self.settingDict = settingDict
self.tableRefresh = [True, False][int(settingDict['tableRefresh'])]
self.redLineLeft = [10 * x for x in range(11)][int(settingDict['redLinePos'])]
self.redLineRight = 100 - self.redLineLeft
self.tableRefreshLimit = [15, 30, 50, 100][int(settingDict['tableRefreshFPS'])]
self.timer.setInterval(self.tableRefreshLimit)
self.graphTimer.setInterval([15, 30, 50, 100][int(settingDict['graphRefreshFPS'])])
def popDnld(self):
self.releaseKeyboard()
self.dnldWindow.hide()
self.dnldWindow.show()
def popPreview(self):
self.releaseKeyboard()
self.previewSubtitle.hide()
self.previewSubtitle.show()
def popSeparate(self):
self.releaseKeyboard()
self.separate.setDefault(self.videoPath, self.duration, self.subtitleDict)
self.separate.hide()
self.separate.show()
def popAnime4K(self):
self.releaseKeyboard()
self.anime4KWindow.setDefault(self.videoPath, self.duration, self.videoWidth, self.videoHeight)
self.anime4KWindow.hide()
self.anime4KWindow.show()
def reloadVideo(self):
position = self.player.position()
self.player.stop()
self.player.setMedia(QUrl.fromLocalFile(''))
self.player.stop()
self.player.setMedia(QUrl.fromLocalFile(self.videoPath))
self.player.setPosition(position)
def addMainAudioWave(self, x, y): # 添加主音频数据
self.mainAudioWaveX = x
self.mainAudioWaveY = y
self.mainAudioMax = max(self.mainAudioWaveY) // 100 * 50 # 50%
self.refreshMainAudioToken = True
def addVoiceWave(self, x, y, bgm): # 添加人声音轨
self.voiceWaveX = x
self.voiceWaveY = y
self.bgmWaveY = bgm
self.refreshVoiceToken = True
def refreshGraph(self, force=False):
position = self.player.position()
step = int(self.globalInterval / 100) + 1 # 波形列表切片步长
if self.oldPosition != position or self.oldGlobalInterval != self.globalInterval or force:
self.oldPosition = position
self.oldGlobalInterval = self.globalInterval
if self.refreshMainAudioToken: # 绘制主音频波形
pos = int((position / self.duration) * len(self.mainAudioWaveX))
if pos > len(self.mainAudioWaveX):
pos = len(self.mainAudioWaveX) - int(self.globalInterval * self.redLineRight) - 1
start = pos - int(self.globalInterval * self.redLineLeft)
if start < 0:
start = 0
start = start // step * step
end = pos + int(self.globalInterval * self.redLineRight) # 显示当前间隔x100的区域
if end > len(self.mainAudioWaveX):
end = len(self.mainAudioWaveX)
end = end // step * step
xList = self.mainAudioWaveX[start:end:step]
yList = self.mainAudioWaveY[start:end:step]
subtitleLine = {0: [], 1: [], 2: [], 3: [], 4: []}
for x, subData in self.subtitleDict.items():
for sub_start in subData.keys():
sub_end = sub_start + subData[sub_start][0]
if (sub_start > start and sub_start < end) or (sub_end > start and sub_end < end) or\
(sub_start < start and sub_end > end):
subtitleLine[x].append([sub_start, sub_end])
self.mainAudio.mp3Path = os.path.join(self.dir, r'temp_audio\audio_original.aac')
self.mainAudio.plot(xList, yList, position, step, [-self.mainAudioMax, self.mainAudioMax], subtitleLine)
if self.refreshVoiceToken: # 绘制AI产生的人声波形
pos = int((position / self.duration) * len(self.voiceWaveX))
if pos > len(self.voiceWaveX):
pos = len(self.voiceWaveX) - int(self.globalInterval * self.redLineRight) - 1
start = pos - int(self.globalInterval * self.redLineLeft)
if start < 0:
start = 0
start = start // step * step
end = pos + int(self.globalInterval * self.redLineRight) # 显示当前间隔x100的区域
if end > len(self.voiceWaveX):
end = len(self.voiceWaveX)
end = end // step * step
xList = self.voiceWaveX[start:end:step]
if self.voiceMedia:
yList = self.voiceWaveY[start:end:step]
# mp3Path = os.path.join(self.dir, r'temp_audio\vocals.mp3')
else:
yList = self.bgmWaveY[start:end:step]
# mp3Path = os.path.join(, r'temp_audio\bgm.mp3')
self.voiceAudio.mp3Path = self.dir + r'\temp_audio'
self.voiceAudio.plot(xList, yList, self.voiceMedia, position, step,
[-self.mainAudioMax, self.mainAudioMax], subtitleLine)
def playMainAudio(self): # 播放主音频
# if not self.playStatus:
self.secondeMedia = False
self.player_vocal.setMuted(True)
self.player.setMuted(False)
def playVocal(self): # 播放人声音频
if os.path.exists(r'temp_audio\vocals.mp3') and self.videoPath:
self.player.setMuted(True)
self.player_vocal.setMuted(False)
if not self.secondeMedia: # 从原音轨切换至第二音轨
self.secondeMedia = not self.secondeMedia
if self.player_vocal.mediaStatus() == QMediaPlayer.MediaStatus.NoMedia:
url = QUrl.fromLocalFile(r'temp_audio\vocals.mp3')
self.player_vocal.setMedia(url)
else: # 第二音轨在人声音轨和背景音轨之间来回切换
if self.voiceMedia: # 人声音轨切换至背景音轨
url = QUrl.fromLocalFile(r'temp_audio\bgm.mp3')
self.player_vocal.setMedia(url)
else: # 背景音轨切换至人声音轨
url = QUrl.fromLocalFile(r'temp_audio\vocals.mp3')
self.player_vocal.setMedia(url)
self.voiceMedia = not self.voiceMedia
self.refreshGraph(True)
self.player_vocal.setPosition(self.player.position())
if not self.playStatus:
self.player_vocal.play()
else:
self.player_vocal.pause()
def setTablePreset(self, preset):
self.tablePreset = preset # 填充字符 输出列
def clearSubtitle(self, index, videoStart, videoEnd): # 清空字幕轴
startTime = videoStart * 60000
endTime = videoEnd * 60000
subtitle = copy.deepcopy(self.subtitleDict[index])
for start, subData in subtitle.items():
end = start + subData[0]
if start >= startTime and start <= endTime or end >= startTime and end <= endTime: # 判断是否落在所选范围内
del self.subtitleDict[index][start]
self.updateBackend()
self.refreshTable()
def setAutoSubtitle(self, voiceList): # AI自动打轴更新至字幕字典里
for t in voiceList:
start, delta = t
txt, index = self.tablePreset
self.subtitleDict[index][start] = [delta, txt]
self.updateBackend()
self.refreshTable() # 刷新表格
self.refreshSubPreview()
def updateTranslateResult(self, result):
start, delta, source, target, sourceIndex, targetIndex = result # 更新翻译结果至字典里
if sourceIndex != 5:
self.subtitleDict[sourceIndex][start] = [delta, source]
self.subtitleDict[targetIndex][start] = [delta, target]
self.refreshTable() # 刷新表格
self.refreshSubPreview()
def decode(self):
self.releaseKeyboard()
self.videoDecoder.setDefault(self.videoPath, self.videoWidth, self.videoHeight, self.duration,
self.bitrate, self.fps, self.subtitleDict, self.styleNameList)
self.videoDecoder.hide()
self.videoDecoder.show()
def popPayment(self):
self.pay.hide()
self.pay.show()
def popHotKeyInfo(self):
self.hotKeyInfo.hide()
self.hotKeyInfo.show()
def popSettingPage(self):
self.setting.hide()
self.setting.show()
def popTutorial(self):
QDesktopServices.openUrl(QUrl('https://www.bilibili.com/video/BV1p5411b7o7'))
def popReleases(self):
self.releases.hide()
self.releases.show()
def mediaPlay(self):
if self.playStatus:
self.stack.setCurrentIndex(1)
self.player.play()
try:
self.player_vocal.play()
except:
pass
self.grabKeyboard()
self.timeStart()
self.playStatus = False
self.playAction.setIcon(self.pauseIcon)
self.playAction.setText('暂停')
else:
self.player.pause()
try:
self.player_vocal.pause()
except:
pass
self.timeStop()
self.playStatus = True
self.playAction.setIcon(self.playIcon)
self.playAction.setText('播放')
def mediaPlayOnly(self):
self.grabKeyboard()
try:
timeText = self.videoPositionEdit.text().replace(':', ':').split(':')
m, s = timeText[:2]
if not m:
m = '00'
if not s:
s = '00'
if len(m) > 3:
m = m[:3]
if len(s) > 2:
s = s[:2]
m = int(m)
s = int(s)
if s > 60:
s = 60
total_m = self.player.duration() // 60000
if m > total_m:
m = total_m
self.player.setPosition(m * 60000 + s * 1000)
self.player_vocal.setPosition(m * 60000 + s * 1000)
# self.videoSlider.setValue(self.player.position() * self.videoSlider.width() / self.player.duration())
except:
pass
self.videoPositionEdit.setReadOnly(True)
self.videoSlider.setValue(self.player.position() * self.videoSlider.width() // self.player.duration())
def mediaPauseOnly(self):
self.releaseKeyboard()
self.videoPositionEdit.setReadOnly(False)
self.player.pause()
self.timeStop()
self.playStatus = True
self.playAction.setIcon(self.playIcon)
self.playAction.setText('播放')
def timeOut(self):
if self.duration == 114514 or not self.duration:
self.duration = self.player.duration()
position = 0
if self.player.position() <= self.playRange[0] or self.player.position() >= self.playRange[1]: # 循环播放
if self.player.position() >= self.playRange[1] and self.replay == 2: # 单次播放超出范围
position = self.playRange[0]
self.player.setPosition(position)
self.player_vocal.setPosition(position)
self.videoSlider.setValue(position * self.videoSlider.width() // self.player.duration())
self.setTimeLabel(position)
self.replay = 0 # 恢复播放范围
self.playRange = [0, self.duration]
if not self.playStatus:
self.mediaPlay()
else:
self.player.setPosition(self.playRange[0])
self.player_vocal.setPosition(self.playRange[0])
self.refreshTable(position)
try:
self.videoSlider.setValue(self.player.position() * self.videoSlider.width() / self.player.duration())
self.setTimeLabel()
except:
pass
def timeStop(self):
self.timer.stop()
def timeStart(self):
self.timer.start()
def videoSliderClick(self, p):
x = p.x()
if x < 0: # 限制
x = 0
if x > self.videoSlider.width():
x = self.videoSlider.width()
self.videoSlider.setValue(x)
position = x * self.duration // self.videoSlider.width()
self.player.setPosition(position)
self.player_vocal.setPosition(position)
self.refreshTable(position)
self.setTimeLabel(position)
def setVolume(self, p):
self.volumeValue = p.x()
if self.volumeValue > 100:
self.volumeValue = 100
if self.volumeValue < 0:
self.volumeValue = 0
self.volSlider.setValue(self.volumeValue)
self.player.setVolume(self.volumeValue)
self.player_vocal.setVolume(self.volumeValue)
self.volSlider.setToolTip(str(self.volSlider.value()))
if self.volumeValue:
self.volumeStatus = True
self.volumeAction.setIcon(self.volumeIcon)
else:
self.volumeStatus = False
self.volumeAction.setIcon(self.volumeMuteIcon)
def volumeMute(self):
if self.volumeStatus:
self.volumeStatus = False
self.old_volumeValue = self.player.volume()
self.player.setVolume(0)
self.volSlider.setValue(0)
self.volumeAction.setIcon(self.volumeMuteIcon)
else:
self.volumeStatus = True
self.player.setVolume(self.old_volumeValue)
self.volSlider.setValue(self.old_volumeValue)
self.volumeAction.setIcon(self.volumeIcon)
def setTimeLabel(self, pos=0):
if not pos:
now = splitTime(self.player.position())
else:
now = splitTime(pos)
total = splitTime(self.player.duration())
self.videoPositionEdit.setText(now)
self.videoPositionLabel.setText(' / %s ' % total)
def setSaveToken(self, token):
self.saveToken = token
def eventFilter(self, obj, event):
if obj == self.subtitle.verticalScrollBar(): # 过滤表格滚轮事件 用于刷新超出表格视窗范围的滚动
if event.type() == QEvent.Wheel:
scrollBarValue = self.subtitle.verticalScrollBar().value()
if scrollBarValue == self.oldScrollBarValue:
delta = event.delta() // 30 # 滚轮四倍速!!!(120 / 30)
if scrollBarValue > 0 and delta < 0: # 向下滚动超出范围
self.position -= int(delta * self.globalInterval) # 前进3行 同时重置视频进度及刷新
if self.position > self.duration:
self.position = int(self.duration - self.globalInterval)
self.player.setPosition(self.position)
self.player_vocal.setPosition(self.position)
self.videoSlider.setValue(self.position * self.videoSlider.width() / self.duration)
self.refreshTable(self.position, scroll=scrollBarValue) # 向下滚的时候选择要特殊处理下
self.setTimeLabel(self.position)
elif scrollBarValue == 0 and delta > 0: # 向上滚动超出范围
self.position = self.player.position() - int(delta * self.globalInterval) # 倒退3行 同时重置视频进度及刷新
if self.position < 0:
self.position = 0
self.player.setPosition(self.position)
self.player_vocal.setPosition(self.position)
self.videoSlider.setValue(self.position * self.videoSlider.width() / self.duration)
self.refreshTable(self.position)
self.setTimeLabel(self.position)
self.oldScrollBarValue = scrollBarValue
elif obj == self.view: # 点击视频窗口播放/暂停
if event.type() == QEvent.MouseButtonPress:
self.mediaPlay()
return QMainWindow.eventFilter(self, obj, event)
def closeEvent(self, QCloseEvent): # 重写关闭函数 捕获关闭主界面信号 删除临时字幕
if not self.saveToken:
reply = QMessageBox.information(self, '字幕文件未保存', '是否保存字幕?', QMessageBox.Yes | QMessageBox.No | QMessageBox.Cancel)
if reply == QMessageBox.Yes:
QCloseEvent.ignore()
self.videoDecoder.hide()
self.videoDecoder.show() # 弹出输出保存界面
elif reply == QMessageBox.No:
if self.subPreview:
os.remove(self.subPreview) # 删除预览字幕文件
if self.backupASS:
originalASS = os.path.splitext(self.videoPath)[0] + '.ass'
os.rename(self.backupASS, originalASS) # 将备份ass文件改回去
for wind in [self.dnldWindow, self.exportWindow, self.videoDecoder, self.separate, self.editStyleNameDialog]:
if not wind.isHidden():
wind.hide()
QCloseEvent.accept()
elif reply == QMessageBox.Cancel:
QCloseEvent.ignore()
else:
for wind in [self.dnldWindow, self.exportWindow, self.videoDecoder, self.separate, self.editStyleNameDialog]:
if not wind.isHidden():
wind.hide()
def dragEnterEvent(self, QDragEnterEvent): # 启用拖入文件功能
QDragEnterEvent.accept()
def dropEvent(self, QEvent): # 检测拖入的文件
if QEvent.mimeData().hasUrls:
dropFile = QEvent.mimeData().urls()[0].toLocalFile()
_, format = os.path.splitext(dropFile)
if format in ['.ass', '.srt', '.vtt', '.lrc']:
self.addSubtitle(self.subEditComBox.currentIndex(), dropFile)
else:
self.openVideo(dropFile)
def keyPressEvent(self, QKeyEvent):
key = QKeyEvent.key()
if key == Qt.Key_Left:
if self.videoSlider.isEnabled():
self.position = self.player.position() - self.globalInterval # ←键倒退1行 同时重置视频进度及刷新
if self.position < 0:
self.position = 0
self.player.setPosition(self.position)
self.player_vocal.setPosition(self.position)
self.videoSlider.setValue(self.position * self.videoSlider.width() / self.duration)
self.refreshTable(self.position)
self.setTimeLabel(self.position)
elif key == Qt.Key_Right:
if self.videoSlider.isEnabled():
self.position = self.player.position() + self.globalInterval # →键前进1行 同时重置视频进度及刷新
if self.position > self.duration:
self.position = self.duration - self.globalInterval
self.player.setPosition(self.position)
self.player_vocal.setPosition(self.position)
self.videoSlider.setValue(self.position * self.videoSlider.width() / self.duration)
self.refreshTable(self.position)
self.setTimeLabel(self.position)
elif key == Qt.Key_Up: # ↑键跳转至上一条字幕
y = self.subtitle.selectionModel().selection().indexes()[0].row()
position = int((y + self.row) * self.globalInterval)
startList = []
for subDict in self.subtitleDict.values():
startList += list(subDict.keys())
startList = sorted(startList)
if len(startList) > 1:
refreshToken = False
for cnt, i in enumerate(startList[1:]):
if i >= position:
self.position = startList[cnt]
position = startList[cnt] - 10 * self.globalInterval # 预留10行
refreshToken = True
break
if not refreshToken:
self.position = startList[-1]
position = startList[-1] - 10 * self.globalInterval # 预留10行
self.refreshTable(position, select=10) # 刷新表格
self.subHeaderClick(10) # 重置当前视频时间
self.refreshGraph(True)
elif key == Qt.Key_Down: # ↓键跳转至下一条字幕
y = self.subtitle.selectionModel().selection().indexes()[0].row()
position = int((y + self.row) * self.globalInterval)
startList = []
for subDict in self.subtitleDict.values():
startList += list(subDict.keys())
startList = sorted(startList)
if len(startList) > 1:
refreshToken = False
for cnt, i in enumerate(startList):
if i > position:
self.position = startList[cnt]
position = startList[cnt] - 10 * self.globalInterval # 预留10行
refreshToken = True
break
if not refreshToken:
self.position = startList[-1]
position = startList[-1] - 10 * self.globalInterval # 预留10行
self.refreshTable(position, select=10) # 刷新表格
self.subHeaderClick(10) # 重置当前视频时间
self.refreshGraph(True)
elif key == Qt.Key_Space: # 空格暂停/播放 需要主界面处于grabkeyboard状态
self.mediaPlay()
elif key == Qt.Key_Delete: # 删除选择字幕 等效右键菜单删除
selected = self.subtitle.selectionModel().selection().indexes()
xList = [] # 选中行
for i in range(len(selected)):
x = selected[i].column()
if x not in xList: # 剔除重复选择
xList.append(x)
yList = [selected[0].row(), selected[-1].row()]
selectRange = [int((y + self.row) * self.globalInterval) for y in yList]
for x in xList:
startList = sorted(self.subtitleDict[x].keys())
for start in startList:
end = self.subtitleDict[x][start][0] + start
for position in range(selectRange[0], selectRange[-1] + 1):
if start <= position and position < end:
try:
del self.subtitleDict[x][start]
except:
pass
for x in xList:
for y in range(yList[0], yList[1] + 1):
if self.subtitle.item(y, x):
self.subtitle.setSpan(y, x, 1, 1)
self.subtitle.setItem(y, x, QTableWidgetItem(''))
self.subtitle.item(y, x).setBackground(QColor('#232629')) # 没内容颜色
self.updateBackend()
self.refreshGraph(True)
elif key in [Qt.Key_Q, Qt.Key_W, Qt.Key_E, Qt.Key_R, Qt.Key_1, Qt.Key_2, Qt.Key_3, Qt.Key_4]:
self.graphTimer.stop()
try:
selected = self.subtitle.selectionModel().selection().indexes()
x = selected[0].column()
if len(selected) == 1: # 特殊情况 当刚合并完后选择该单个单元格 选中的只有第一个格子 需要修正一下
y = selected[0].row()
yList = [y, y + self.subtitle.rowSpan(y, x) - 1]
else:
yList = [selected[0].row(), selected[-1].row()]
select = (yList[0] + self.row) * self.globalInterval
startList = sorted(self.subtitleDict[x].keys()) # 对起始时间排序
for cnt, start in enumerate(startList):
delta, text = self.subtitleDict[x][start]
if select >= start and select < start + delta: # 确认选中的轴
if key in [Qt.Key_Q, Qt.Key_1]:
if start >= self.globalInterval:
if cnt > 0:
preStart = startList[cnt - 1] # 向前检测叠轴
if start - self.globalInterval >= preStart + self.subtitleDict[x][preStart][0]:
checkToken = 1
elif start > preStart + self.subtitleDict[x][preStart][0]:
checkToken = 2
else:
checkToken = 0
else: # 第一条轴就跳过向前检测
checkToken = 1
if checkToken:
del self.subtitleDict[x][start] # 删除旧轴
if checkToken == 1:
start -= int(self.globalInterval) # 向前+1间隔时长
self.position = start - int(10 * self.globalInterval) # 预留10行
self.subtitleDict[x][start] = [int(delta + self.globalInterval), text] # 更新至字典
elif checkToken == 2:
end = delta + start
start = preStart + self.subtitleDict[x][preStart][0]
self.position = start - int(9 * self.globalInterval) # 预留10行
self.subtitleDict[x][start] = [end - start, text] # 更新至字典
self.refreshTable(self.position, select=10) # 刷新表格
self.subHeaderClick(10) # 重置当前视频时间
elif key in [Qt.Key_W, Qt.Key_2]:
if delta > self.globalInterval:
del self.subtitleDict[x][start] # 删除旧轴
start += int(self.globalInterval) # 向后-1间隔时长
self.subtitleDict[x][start] = [int(delta - self.globalInterval), text] # 更新至字典
self.position = start - int(10 * self.globalInterval) # 预留10行
self.refreshTable(self.position, select=10) # 刷新表格
self.subHeaderClick(10) # 重置当前视频时间
elif key in [Qt.Key_E, Qt.Key_3]:
if delta > self.globalInterval:
self.subtitleDict[x][start] = [delta - int(self.globalInterval), text] # 轴下沿上移间隔
self.position = start + delta - int(12 * self.globalInterval) # 预留10行
self.refreshTable(self.position, select=10) # 刷新表格
self.subHeaderClick(10) # 重置当前视频时间
elif key in [Qt.Key_R, Qt.Key_4]:
if start + delta + self.globalInterval < self.duration:
if cnt < len(startList) - 1: # 向后检测叠轴
nxtStart = startList[cnt + 1]
if start + delta + self.globalInterval <= nxtStart:
checkToken = 1
elif start + delta < nxtStart:
checkToken = 2
else:
checkToken = 0
else: # 最后一条轴就跳过向后检测
checkToken = 1
if checkToken:
if checkToken == 1:
self.subtitleDict[x][start] = [int(delta + self.globalInterval), text] # 轴下沿下移间隔
self.position = int(start + delta - 10 * self.globalInterval) # 预留10行
elif checkToken == 2:
self.subtitleDict[x][start] = [nxtStart - start, text] # 轴下沿下移间隔
self.position = int(start + delta - 11 * self.globalInterval) # 预留10行
self.refreshTable(self.position, select=10) # 刷新表格
self.subHeaderClick(10) # 重置当前视频时间
self.subtitle.selectionModel().select(self.subtitle.model().index(10, x), QItemSelectionModel.ClearAndSelect)
self.updateBackend()
self.refreshGraph(True)
break
except Exception as e:
print(str(e))
self.graphTimer.start()
elif QKeyEvent.modifiers() == Qt.ControlModifier and key == Qt.Key_X: # 剪切
selected = self.subtitle.selectionModel().selection().indexes()
xList = [] # 选中行
for i in range(len(selected)):
x = selected[i].column()
if x not in xList: # 剔除重复选择
xList.append(x)
yList = [selected[0].row(), selected[-1].row()]
selectRange = [int((y + self.row) * self.globalInterval) for y in range(yList[0], yList[1] + 1)]
self.clipBoard = []
for x in xList:
for start, subData in self.subtitleDict[x].items():
end = subData[0] + start
for position in selectRange:
if start < position and position < end:
self.clipBoard.append([start, subData])
break
for i in self.clipBoard:
start = i[0]
try:
del self.subtitleDict[x][start]
except:
pass
for y in range(yList[0], yList[1] + 1):
if self.subtitle.item(y, x):
self.subtitle.setSpan(y, x, 1, 1)
self.subtitle.setItem(y, x, QTableWidgetItem(''))
self.subtitle.item(y, x).setBackground(QColor('#232629')) # 没内容颜色
break # 只剪切选中的第一列
elif QKeyEvent.modifiers() == Qt.ControlModifier and key == Qt.Key_C: # 复制
selected = self.subtitle.selectionModel().selection().indexes()
xList = [] # 选中行
for i in range(len(selected)):
x = selected[i].column()
if x not in xList: # 剔除重复选择
xList.append(x)
yList = [selected[0].row(), selected[-1].row()]
selectRange = [int((y + self.row) * self.globalInterval) for y in range(yList[0], yList[1] + 1)]
self.clipBoard = []
for x in xList:
for start, subData in self.subtitleDict[x].items():
end = subData[0] + start
for position in selectRange:
if start < position and position < end:
self.clipBoard.append([start, subData])
break
break # 只复制选中的第一列
elif QKeyEvent.modifiers() == Qt.ControlModifier and key == Qt.Key_V: # 粘贴
selected = self.subtitle.selectionModel().selection().indexes()
xList = [] # 选中行
for i in range(len(selected)):
x = selected[i].column()
if x not in xList: # 剔除重复选择
xList.append(x)
yList = [selected[0].row(), selected[-1].row()]
if self.clipBoard:
clipBoard = []
for i in self.clipBoard:
clipBoard.append([i[0] - self.clipBoard[0][0], i[1]]) # 减去复制的字幕的起始偏移量
startOffset = int((yList[0] + self.row) * self.globalInterval)
for x in xList:
for subData in clipBoard:
start, subData = subData
delta, text = subData
start += startOffset
end = start + delta
for subStart in list(self.subtitleDict[x].keys()):
subEnd = self.subtitleDict[x][subStart][0] + subStart
if subStart < end and end < subEnd or subStart < start and start < subEnd:
del self.subtitleDict[x][subStart]
self.subtitleDict[x][start] = [delta, text]
scrollValue = self.subtitle.verticalScrollBar().value()
self.refreshTable(int(self.row * self.globalInterval), yList[0], scrollValue)
self.updateBackend()
self.refreshGraph(True)
elif key == Qt.Key_5: # 按当前选择位置裁剪字幕
selected = self.subtitle.selectionModel().selection().indexes()
y = selected[0].row()
cutToken = False
selectTime = int((y + self.row) * self.globalInterval)
copySubtitleDict = copy.deepcopy(self.subtitleDict)
for x in copySubtitleDict.keys():
for start, subData in copySubtitleDict[x].items():
delta, text = subData
if selectTime >= start and selectTime <= start + delta:
cutToken = True
self.subtitleDict[x][start] = [selectTime - start, text]
self.subtitleDict[x][selectTime] = [start + delta - selectTime, text]
if cutToken:
scrollValue = self.subtitle.verticalScrollBar().value()
self.refreshTable(int(self.row * self.globalInterval), y, scrollValue)
self.refreshGraph(True)
self.updateBackend()
elif QKeyEvent.modifiers() == Qt.ControlModifier and key == Qt.Key_S: # 保存
self.videoDecoder.hide()
self.videoDecoder.show() # 弹出输出保存界面
elif key == Qt.Key_S: # 播放当前选择字幕
selectedToken = False
selected = self.subtitle.selectionModel().selection().indexes()
x = selected[0].column()
yList = [selected[0].row(), selected[-1].row()]
selectRange = [int((y + self.row) * self.globalInterval) for y in yList]
startList = sorted(self.subtitleDict[x].keys())
for start in startList:
end = self.subtitleDict[x][start][0] + start
for position in range(selectRange[0], selectRange[-1] + 1):
if start <= position and position < end:
selectedToken = True
break
if selectedToken:
break
if selectedToken:
position = start
self.player.setPosition(position)
self.player_vocal.setPosition(position)
self.videoSlider.setValue(position * self.videoSlider.width() // self.player.duration())
self.setTimeLabel(position)
end = self.subtitleDict[x][start][0] + start
self.replay = 2 # 单次播放选择区间
self.playRange = [start, end]
if self.playStatus: # 若处于暂停状态则开始播放
self.mediaPlay()
elif QKeyEvent.modifiers() == Qt.ControlModifier and key == Qt.Key_Z: # 撤回
if self.subtitleBackendPoint > 0:
self.subtitleBackendPoint -= 1
backupData = copy.deepcopy(self.subtitleBackend[self.subtitleBackendPoint])
self.subtitleDict, self.position, y, scrollValue = backupData
self.refreshTable(self.position, y, scrollValue)
self.refreshSubPreview()
elif QKeyEvent.modifiers() == Qt.ControlModifier and key == Qt.Key_Y: # 取消撤回
if self.subtitleBackendPoint < len(self.subtitleBackend) - 1:
self.subtitleBackendPoint += 1
backupData = copy.deepcopy(self.subtitleBackend[self.subtitleBackendPoint])
self.subtitleDict, self.position, y, scrollValue = backupData
self.refreshTable(self.position, y, scrollValue)
self.refreshSubPreview()
================================================
FILE: utils/pay.py
================================================
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import images
import requests
from PySide2.QtWidgets import QGridLayout, QDialog, QLabel, QApplication, QTableWidget, QTableWidgetItem,\
QAbstractItemView
from PySide2.QtCore import Qt, QUrl, QThread, Signal
def _translate(context, text, disambig):
return QApplication.translate(context, text, disambig)
class thankToBoss(QThread):
bossList = Signal(list)
def __init__(self, parent=None):
super(thankToBoss, self).__init__(parent)
def run(self):
headers = {'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/49.0.2623.221 Safari/537.36 SE 2.X MetaSr 1.0'}
response = requests.get(r'https://github.com/jiafangjun/DD_KaoRou2/blob/master/感谢石油王.csv', headers=headers)
bossList = []
html = response.text.split('\n')
for cnt, line in enumerate(html):
if 'RMB<' in line:
boss = html[cnt - 1].split('>')[1].split('<')[0]
rmb = line.split('>')[1].split('<')[0]
bossList.append([boss, rmb])
if bossList:
self.bossList.emit(bossList)
else:
self.bossList.emit([['名单列表获取失败', '']])
class pay(QDialog):
def __init__(self):
super().__init__()
self.setWindowTitle('赞助和支持')
self.resize(600, 520)
layout = QGridLayout()
self.setLayout(layout)
txt = u'DD烤肉机由B站up:执鸣神君 业余时间独立开发制作。\n\
\n所有功能全部永久免费给广大烤肉man使用,无需专门找我获取授权。\n\
\n有独立经济来源的老板们如觉得烤肉机好用的话,不妨小小支持亿下\n\
\n一元也是对我继续更新烤肉机的莫大鼓励。十分感谢!\n'
label = QLabel(txt)
label.setTextInteractionFlags(Qt.TextSelectableByMouse)
label.setAlignment(Qt.AlignCenter)
layout.addWidget(label, 0, 0, 1, 1)
bilibili_url = QLabel()
bilibili_url.setAlignment(Qt.AlignCenter)
bilibili_url.setOpenExternalLinks(True)
bilibili_url.setText(_translate("MainWindow", "\
执鸣神君B站主页: https://space.bilibili.com/637783
", None))
layout.addWidget(bilibili_url, 1, 0, 1, 1)
github_url = QLabel()
github_url.setAlignment(Qt.AlignCenter)
github_url.setOpenExternalLinks(True)
github_url.setText(_translate("MainWindow", "\
烤肉机项目开源地址: https://github.com/jiafangjun/DD_KaoRou2
", None))
layout.addWidget(github_url, 2, 0, 1, 1)
layout.addWidget(QLabel(), 3, 0, 1, 1)
alipay = QLabel()
alipay.setFixedSize(260, 338)
alipay.setStyleSheet('border-image: url(:/images/0.jpg)')
layout.addWidget(alipay, 4, 0, 1, 1)
weixin = QLabel()
weixin.setFixedSize(260, 338)
weixin.setStyleSheet('border-image: url(:/images/1.jpg)')
layout.addWidget(weixin, 4, 1, 1, 1)
layout.addWidget(QLabel(), 5, 0, 1, 1)
self.bossTable = QTableWidget()
self.bossTable.setEditTriggers(QAbstractItemView.NoEditTriggers)
self.bossTable.setRowCount(3)
self.bossTable.setColumnCount(2)
for i in range(2):
self.bossTable.setColumnWidth(i, 105)
self.bossTable.setHorizontalHeaderLabels(['石油王', '打赏'])
self.bossTable.setItem(0, 0, QTableWidgetItem('石油王鸣谢名单'))
self.bossTable.setItem(0, 1, QTableWidgetItem('正在获取...'))
layout.addWidget(self.bossTable, 0, 1, 3, 1)
self.thankToBoss = thankToBoss()
self.thankToBoss.bossList.connect(self.updateBossList)
self.thankToBoss.start()
def updateBossList(self, bossList):
self.bossTable.clear()
self.bossTable.setColumnCount(2)
self.bossTable.setRowCount(len(bossList))
if len(bossList) > 3:
biggestBossList = []
for _ in range(3):
sc = 0
for cnt, i in enumerate(bossList):
money = float(i[1].split(' ')[0])
if money > sc:
sc = money
bossNum = cnt
biggestBossList.append(bossList.pop(bossNum))
for y, i in enumerate(biggestBossList):
self.bossTable.setItem(y, 0, QTableWidgetItem(i[0]))
self.bossTable.setItem(y, 1, QTableWidgetItem(i[1]))
self.bossTable.item(y, 0).setTextAlignment(Qt.AlignCenter)
self.bossTable.item(y, 1).setTextAlignment(Qt.AlignCenter)
for y, i in enumerate(bossList):
self.bossTable.setItem(y + 3, 0, QTableWidgetItem(i[0]))
self.bossTable.setItem(y + 3, 1, QTableWidgetItem(i[1]))
self.bossTable.item(y + 3, 0).setTextAlignment(Qt.AlignCenter)
self.bossTable.item(y + 3, 1).setTextAlignment(Qt.AlignCenter)
self.bossTable.setHorizontalHeaderLabels(['石油王', '打赏'])
================================================
FILE: utils/qdark.qss
================================================
/*
The MIT License
Copyright (c) 2013-2018 Colin Duquesnoy https://github.com/ColinDuquesnoy/QDarkStyleSheet/blob/master/LICENSE.md
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.
*/
QToolTip {
border: 1px solid #76797C;
background-color: #5A7566;
color: white;
padding: 0px; /*remove padding, for fix combobox tooltip.*/
opacity: 200;
}
QWidget {
color: #eff0f1;
background-color: #31363b;
selection-background-color: #3daee9;
selection-color: #eff0f1;
background-clip: border;
border-image: none;
border: 0px transparent black;
outline: 0;
}
QWidget:item:hover {
background-color: #18465d;
color: #eff0f1;
}
QWidget:item:selected {
background-color: #18465d;
}
QGroupBox::indicator {
width: 18px;
height: 18px;
}
QGroupBox::indicator {
margin-left: 2px;
}
QGroupBox::indicator:unchecked {
image: url(:/qss_icons/rc/checkbox_unchecked.png);
}
QGroupBox::indicator:unchecked:hover,
QGroupBox::indicator:unchecked:focus,
QGroupBox::indicator:unchecked:pressed {
border: none;
image: url(:/qss_icons/rc/checkbox_unchecked_focus.png);
}
QGroupBox::indicator:checked {
image: url(:/qss_icons/rc/checkbox_checked.png);
}
QGroupBox::indicator:checked:hover,
QGroupBox::indicator:checked:focus,
QGroupBox::indicator:checked:pressed {
border: none;
image: url(:/qss_icons/rc/checkbox_checked_focus.png);
}
QCheckBox::indicator:indeterminate {
image: url(:/qss_icons/rc/checkbox_indeterminate.png);
}
QCheckBox::indicator:indeterminate:focus,
QCheckBox::indicator:indeterminate:hover,
QCheckBox::indicator:indeterminate:pressed {
image: url(:/qss_icons/rc/checkbox_indeterminate_focus.png);
}
QCheckBox::indicator:checked:disabled,
QGroupBox::indicator:checked:disabled {
image: url(:/qss_icons/rc/checkbox_checked_disabled.png);
}
QCheckBox::indicator:unchecked:disabled,
QGroupBox::indicator:unchecked:disabled {
image: url(:/qss_icons/rc/checkbox_unchecked_disabled.png);
}
QRadioButton {
spacing: 5px;
outline: none;
color: #eff0f1;
margin-bottom: 2px;
}
QRadioButton:disabled {
color: #76797C;
}
QRadioButton::indicator {
width: 21px;
height: 21px;
}
QRadioButton::indicator:unchecked {
image: url(:/qss_icons/rc/radio_unchecked.png);
}
QRadioButton::indicator:unchecked:hover,
QRadioButton::indicator:unchecked:focus,
QRadioButton::indicator:unchecked:pressed {
border: none;
outline: none;
image: url(:/qss_icons/rc/radio_unchecked_focus.png);
}
QRadioButton::indicator:checked {
border: none;
outline: none;
image: url(:/qss_icons/rc/radio_checked.png);
}
QRadioButton::indicator:checked:hover,
QRadioButton::indicator:checked:focus,
QRadioButton::indicator:checked:pressed {
border: none;
outline: none;
image: url(:/qss_icons/rc/radio_checked_focus.png);
}
QRadioButton::indicator:checked:disabled {
outline: none;
image: url(:/qss_icons/rc/radio_checked_disabled.png);
}
QRadioButton::indicator:unchecked:disabled {
image: url(:/qss_icons/rc/radio_unchecked_disabled.png);
}
QMenuBar {
background-color: #31363b;
color: #eff0f1;
}
QMenuBar::item {
background: transparent;
}
QMenuBar::item:selected {
background: transparent;
border: 1px solid #76797C;
}
QMenuBar::item:pressed {
border: 1px solid #76797C;
background-color: #3daee9;
color: #eff0f1;
margin-bottom: -1px;
padding-bottom: 1px;
}
QMenu {
border: 1px solid #76797C;
color: #eff0f1;
margin: 2px;
}
QMenu::icon {
margin: 5px;
}
QMenu::item {
padding: 5px 30px 5px 30px;
border: 1px solid transparent;
/* reserve space for selection border */
}
QMenu::item:selected {
color: #eff0f1;
}
QMenu::separator {
height: 2px;
background: lightblue;
margin-left: 10px;
margin-right: 5px;
}
QMenu::indicator {
width: 18px;
height: 18px;
}
/* non-exclusive indicator = check box style indicator
(see QActionGroup::setExclusive) */
QMenu::indicator:non-exclusive:unchecked {
image: url(:/qss_icons/rc/checkbox_unchecked.png);
}
QMenu::indicator:non-exclusive:unchecked:selected {
image: url(:/qss_icons/rc/checkbox_unchecked_disabled.png);
}
QMenu::indicator:non-exclusive:checked {
image: url(:/qss_icons/rc/checkbox_checked.png);
}
QMenu::indicator:non-exclusive:checked:selected {
image: url(:/qss_icons/rc/checkbox_checked_disabled.png);
}
/* exclusive indicator = radio button style indicator (see QActionGroup::setExclusive) */
QMenu::indicator:exclusive:unchecked {
image: url(:/qss_icons/rc/radio_unchecked.png);
}
QMenu::indicator:exclusive:unchecked:selected {
image: url(:/qss_icons/rc/radio_unchecked_disabled.png);
}
QMenu::indicator:exclusive:checked {
image: url(:/qss_icons/rc/radio_checked.png);
}
QMenu::indicator:exclusive:checked:selected {
image: url(:/qss_icons/rc/radio_checked_disabled.png);
}
QMenu::right-arrow {
margin: 5px;
image: url(:/qss_icons/rc/right_arrow.png)
}
QWidget:disabled {
color: #454545;
background-color: #31363b;
}
QAbstractItemView {
alternate-background-color: #31363b;
color: #eff0f1;
border: 1px solid #3A3939;
border-radius: 2px;
}
QWidget:focus,
QMenuBar:focus {
border: 1px solid #3daee9;
}
QTabWidget:focus,
QCheckBox:focus,
QRadioButton:focus,
QSlider:focus {
border: none;
}
QLineEdit {
background-color: #232629;
padding: 5px;
border-style: solid;
border: 1px solid #76797C;
border-radius: 2px;
color: #eff0f1;
}
QAbstractItemView QLineEdit {
padding: 0;
}
QGroupBox {
border: 1px solid #76797C;
border-radius: 2px;
margin-top: 20px;
}
QGroupBox::title {
subcontrol-origin: margin;
subcontrol-position: top center;
padding-left: 10px;
padding-right: 10px;
padding-top: 10px;
}
QAbstractScrollArea {
border-radius: 2px;
border: 1px solid #76797C;
background-color: transparent;
}
QScrollBar:horizontal {
height: 15px;
margin: 3px 15px 3px 15px;
border: 1px transparent #2A2929;
border-radius: 4px;
background-color: #2A2929;
}
QScrollBar::handle:horizontal {
background-color: #605F5F;
min-width: 5px;
border-radius: 4px;
}
QScrollBar::add-line:horizontal {
margin: 0px 3px 0px 3px;
border-image: url(:/qss_icons/rc/right_arrow_disabled.png);
width: 10px;
height: 10px;
subcontrol-position: right;
subcontrol-origin: margin;
}
QScrollBar::sub-line:horizontal {
margin: 0px 3px 0px 3px;
border-image: url(:/qss_icons/rc/left_arrow_disabled.png);
height: 10px;
width: 10px;
subcontrol-position: left;
subcontrol-origin: margin;
}
QScrollBar::add-line:horizontal:hover,
QScrollBar::add-line:horizontal:on {
border-image: url(:/qss_icons/rc/right_arrow.png);
height: 10px;
width: 10px;
subcontrol-position: right;
subcontrol-origin: margin;
}
QScrollBar::sub-line:horizontal:hover,
QScrollBar::sub-line:horizontal:on {
border-image: url(:/qss_icons/rc/left_arrow.png);
height: 10px;
width: 10px;
subcontrol-position: left;
subcontrol-origin: margin;
}
QScrollBar::up-arrow:horizontal,
QScrollBar::down-arrow:horizontal {
background: none;
}
QScrollBar::add-page:horizontal,
QScrollBar::sub-page:horizontal {
background: none;
}
QScrollBar:vertical {
background-color: #2A2929;
width: 15px;
margin: 15px 3px 15px 3px;
border: 1px transparent #2A2929;
border-radius: 4px;
}
QScrollBar::handle:vertical {
background-color: #605F5F;
min-height: 40px;
border-radius: 4px;
}
QScrollBar::sub-line:vertical {
margin: 3px 0px 3px 0px;
border-image: url(:/qss_icons/rc/up_arrow_disabled.png);
height: 10px;
width: 10px;
subcontrol-position: top;
subcontrol-origin: margin;
}
QScrollBar::add-line:vertical {
margin: 3px 0px 3px 0px;
border-image: url(:/qss_icons/rc/down_arrow_disabled.png);
height: 10px;
width: 10px;
subcontrol-position: bottom;
subcontrol-origin: margin;
}
QScrollBar::sub-line:vertical:hover,
QScrollBar::sub-line:vertical:on {
border-image: url(:/qss_icons/rc/up_arrow.png);
height: 10px;
width: 10px;
subcontrol-position: top;
subcontrol-origin: margin;
}
QScrollBar::add-line:vertical:hover,
QScrollBar::add-line:vertical:on {
border-image: url(:/qss_icons/rc/down_arrow.png);
height: 10px;
width: 10px;
subcontrol-position: bottom;
subcontrol-origin: margin;
}
QScrollBar::up-arrow:vertical,
QScrollBar::down-arrow:vertical {
background: none;
}
QScrollBar::add-page:vertical,
QScrollBar::sub-page:vertical {
background: none;
}
QTextEdit {
background-color: #232629;
color: #eff0f1;
border: 1px solid #76797C;
}
QPlainTextEdit {
background-color: #232629;
;
color: #eff0f1;
border-radius: 2px;
border: 1px solid #76797C;
}
QHeaderView::section {
background-color: #76797C;
color: #eff0f1;
padding: 5px;
border: 1px solid #76797C;
}
QSizeGrip {
image: url(:/qss_icons/rc/sizegrip.png);
width: 12px;
height: 12px;
}
QMainWindow::separator {
background-color: #31363b;
color: white;
padding-left: 4px;
spacing: 2px;
border: 1px dashed #76797C;
}
QMainWindow::separator:hover {
background-color: #787876;
color: white;
padding-left: 4px;
border: 1px solid #76797C;
spacing: 2px;
}
QMenu::separator {
height: 1px;
background-color: #76797C;
color: white;
padding-left: 4px;
margin-left: 10px;
margin-right: 5px;
}
QFrame {
border-radius: 2px;
border: 1px solid #76797C;
}
QFrame[frameShape="0"] {
border-radius: 2px;
border: 1px transparent #76797C;
}
QStackedWidget {
border: 1px transparent black;
}
QToolBar {
border: 1px transparent #393838;
background: 1px solid #31363b;
font-weight: bold;
}
QToolBar::handle:horizontal {
image: url(:/qss_icons/rc/Hmovetoolbar.png);
}
QToolBar::handle:vertical {
image: url(:/qss_icons/rc/Vmovetoolbar.png);
}
QToolBar::separator:horizontal {
image: url(:/qss_icons/rc/Hsepartoolbar.png);
}
QToolBar::separator:vertical {
image: url(:/qss_icons/rc/Vsepartoolbar.png);
}
QToolButton#qt_toolbar_ext_button {
background: #58595a
}
QPushButton {
color: #eff0f1;
background-color: #31363b;
border-width: 1px;
border-color: #76797C;
border-style: solid;
padding: 5px;
border-radius: 2px;
outline: none;
}
QPushButton:disabled {
background-color: #31363b;
border-width: 1px;
border-color: #454545;
border-style: solid;
padding-top: 5px;
padding-bottom: 5px;
padding-left: 10px;
padding-right: 10px;
border-radius: 2px;
color: #454545;
}
QPushButton:pressed {
background-color: #3daee9;
padding-top: -15px;
padding-bottom: -17px;
}
QComboBox {
selection-background-color: #3daee9;
border-style: solid;
border: 1px solid #76797C;
border-radius: 2px;
padding: 5px;
}
QPushButton:checked {
background-color: #76797C;
border-color: #6A6969;
}
QComboBox:hover,
QPushButton:hover,
QAbstractSpinBox:hover,
QLineEdit:hover,
QTextEdit:hover,
QPlainTextEdit:hover,
QAbstractView:hover,
QTreeView:hover {
border: 1px solid #3daee9;
color: #eff0f1;
}
QComboBox:on {
padding-top: 3px;
padding-left: 4px;
selection-background-color: #4a4a4a;
}
QComboBox QAbstractItemView {
background-color: #232629;
border-radius: 2px;
border: 1px solid #76797C;
selection-background-color: #18465d;
}
QComboBox::drop-down {
subcontrol-origin: padding;
subcontrol-position: top right;
width: 15px;
border-left-width: 0px;
border-left-color: darkgray;
border-left-style: solid;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
QComboBox::down-arrow {
image: url(:/qss_icons/rc/down_arrow_disabled.png);
}
QComboBox::down-arrow:on,
QComboBox::down-arrow:hover,
QComboBox::down-arrow:focus {
image: url(:/qss_icons/rc/down_arrow.png);
}
QAbstractSpinBox {
padding: 5px;
border: 1px solid #76797C;
background-color: #232629;
color: #eff0f1;
border-radius: 2px;
min-width: 75px;
}
QAbstractSpinBox:up-button {
background-color: transparent;
subcontrol-origin: border;
subcontrol-position: center right;
}
QAbstractSpinBox:down-button {
background-color: transparent;
subcontrol-origin: border;
subcontrol-position: center left;
}
QAbstractSpinBox::up-arrow,
QAbstractSpinBox::up-arrow:disabled,
QAbstractSpinBox::up-arrow:off {
image: url(:/qss_icons/rc/up_arrow_disabled.png);
width: 10px;
height: 10px;
}
QAbstractSpinBox::up-arrow:hover {
image: url(:/qss_icons/rc/up_arrow.png);
}
QAbstractSpinBox::down-arrow,
QAbstractSpinBox::down-arrow:disabled,
QAbstractSpinBox::down-arrow:off {
image: url(:/qss_icons/rc/down_arrow_disabled.png);
width: 10px;
height: 10px;
}
QAbstractSpinBox::down-arrow:hover {
image: url(:/qss_icons/rc/down_arrow.png);
}
QLabel {
border: 0px solid black;
}
QTabWidget {
border: 0px transparent black;
}
QTabWidget::pane {
border: 1px solid #76797C;
padding: 5px;
margin: 0px;
}
QTabWidget::tab-bar {
/* left: 5px; move to the right by 5px */
}
QTabBar {
qproperty-drawBase: 0;
border-radius: 3px;
}
QTabBar:focus {
border: 0px transparent black;
}
QTabBar::close-button {
image: url(:/qss_icons/rc/close.png);
background: transparent;
}
QTabBar::close-button:hover {
image: url(:/qss_icons/rc/close-hover.png);
background: transparent;
}
QTabBar::close-button:pressed {
image: url(:/qss_icons/rc/close-pressed.png);
background: transparent;
}
/* TOP TABS */
QTabBar::tab:top {
color: #eff0f1;
border: 1px solid #76797C;
border-bottom: 1px transparent black;
background-color: #31363b;
padding: 5px;
min-width: 50px;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
QTabBar::tab:top:selected {
color: #eff0f1;
background-color: #54575B;
border: 1px solid #76797C;
border-bottom: 2px solid #3daee9;
border-top-left-radius: 2px;
border-top-right-radius: 2px;
}
QTabBar::tab:top:!selected:hover {
background-color: #3daee9;
}
/* BOTTOM TABS */
QTabBar::tab:bottom {
color: #eff0f1;
border: 1px solid #76797C;
border-top: 1px transparent black;
background-color: #31363b;
padding: 5px;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
min-width: 50px;
}
QTabBar::tab:bottom:selected {
color: #eff0f1;
background-color: #54575B;
border: 1px solid #76797C;
border-top: 2px solid #3daee9;
border-bottom-left-radius: 2px;
border-bottom-right-radius: 2px;
}
QTabBar::tab:bottom:!selected:hover {
background-color: #3daee9;
}
/* LEFT TABS */
QTabBar::tab:left {
color: #eff0f1;
border: 1px solid #76797C;
border-left: 1px transparent black;
background-color: #31363b;
padding: 5px;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
min-height: 50px;
}
QTabBar::tab:left:selected {
color: #eff0f1;
background-color: #54575B;
border: 1px solid #76797C;
border-left: 2px solid #3daee9;
border-top-right-radius: 2px;
border-bottom-right-radius: 2px;
}
QTabBar::tab:left:!selected:hover {
background-color: #3daee9;
}
/* RIGHT TABS */
QTabBar::tab:right {
color: #eff0f1;
border: 1px solid #76797C;
border-right: 1px transparent black;
background-color: #31363b;
padding: 5px;
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
min-height: 50px;
}
QTabBar::tab:right:selected {
color: #eff0f1;
background-color: #54575B;
border: 1px solid #76797C;
border-right: 2px solid #3daee9;
border-top-left-radius: 2px;
border-bottom-left-radius: 2px;
}
QTabBar::tab:right:!selected:hover {
background-color: #3daee9;
}
QTabBar QToolButton::right-arrow:enabled {
image: url(:/qss_icons/rc/right_arrow.png);
}
QTabBar QToolButton::left-arrow:enabled {
image: url(:/qss_icons/rc/left_arrow.png);
}
QTabBar QToolButton::right-arrow:disabled {
image: url(:/qss_icons/rc/right_arrow_disabled.png);
}
QTabBar QToolButton::left-arrow:disabled {
image: url(:/qss_icons/rc/left_arrow_disabled.png);
}
QDockWidget {
background: #31363b;
border: 1px solid #403F3F;
titlebar-close-icon: url(:/qss_icons/rc/close.png);
titlebar-normal-icon: url(:/qss_icons/rc/undock.png);
}
QDockWidget::close-button,
QDockWidget::float-button {
border: 1px solid transparent;
border-radius: 2px;
background: transparent;
}
QDockWidget::close-button:hover,
QDockWidget::float-button:hover {
background: rgba(255, 255, 255, 10);
}
QDockWidget::close-button:pressed,
QDockWidget::float-button:pressed {
padding: 1px -1px -1px 1px;
background: rgba(255, 255, 255, 10);
}
QTreeView,
QListView {
border: 1px solid #76797C;
background-color: #232629;
}
QTreeView:branch:selected,
QTreeView:branch:hover {
background: url(:/qss_icons/rc/transparent.png);
}
QTreeView::branch:has-siblings:!adjoins-item {
border-image: url(:/qss_icons/rc/transparent.png);
}
QTreeView::branch:has-siblings:adjoins-item {
border-image: url(:/qss_icons/rc/transparent.png);
}
QTreeView::branch:!has-children:!has-siblings:adjoins-item {
border-image: url(:/qss_icons/rc/transparent.png);
}
QTreeView::branch:has-children:!has-siblings:closed,
QTreeView::branch:closed:has-children:has-siblings {
image: url(:/qss_icons/rc/branch_closed.png);
}
QTreeView::branch:open:has-children:!has-siblings,
QTreeView::branch:open:has-children:has-siblings {
image: url(:/qss_icons/rc/branch_open.png);
}
QTreeView::branch:has-children:!has-siblings:closed:hover,
QTreeView::branch:closed:has-children:has-siblings:hover {
image: url(:/qss_icons/rc/branch_closed-on.png);
}
QTreeView::branch:open:has-children:!has-siblings:hover,
QTreeView::branch:open:has-children:has-siblings:hover {
image: url(:/qss_icons/rc/branch_open-on.png);
}
QListView::item:!selected:hover,
QTreeView::item:!selected:hover {
background: #18465d;
outline: 0;
color: #eff0f1
}
QListView::item:selected:hover,
QTreeView::item:selected:hover {
background: #287399;
color: #eff0f1;
}
QTreeView::indicator:checked,
QListView::indicator:checked {
image: url(:/qss_icons/rc/checkbox_checked.png);
}
QTreeView::indicator:unchecked,
QListView::indicator:unchecked {
image: url(:/qss_icons/rc/checkbox_unchecked.png);
}
QTreeView::indicator:indeterminate,
QListView::indicator:indeterminate {
image: url(:/qss_icons/rc/checkbox_indeterminate.png);
}
QTreeView::indicator:checked:hover,
QTreeView::indicator:checked:focus,
QTreeView::indicator:checked:pressed,
QListView::indicator:checked:hover,
QListView::indicator:checked:focus,
QListView::indicator:checked:pressed {
image: url(:/qss_icons/rc/checkbox_checked_focus.png);
}
QTreeView::indicator:unchecked:hover,
QTreeView::indicator:unchecked:focus,
QTreeView::indicator:unchecked:pressed,
QListView::indicator:unchecked:hover,
QListView::indicator:unchecked:focus,
QListView::indicator:unchecked:pressed {
image: url(:/qss_icons/rc/checkbox_unchecked_focus.png);
}
QTreeView::indicator:indeterminate:hover,
QTreeView::indicator:indeterminate:focus,
QTreeView::indicator:indeterminate:pressed,
QListView::indicator:indeterminate:hover,
QListView::indicator:indeterminate:focus,
QListView::indicator:indeterminate:pressed {
image: url(:/qss_icons/rc/checkbox_indeterminate_focus.png);
}
QSlider::groove:horizontal {
border: 1px solid #565a5e;
height: 4px;
background: #565a5e;
margin: 0px;
border-radius: 2px;
}
QSlider::handle:horizontal {
background: #232629;
border: 1px solid #565a5e;
width: 16px;
height: 16px;
margin: -8px 0;
border-radius: 9px;
}
QSlider::groove:vertical {
border: 1px solid #565a5e;
width: 4px;
background: #565a5e;
margin: 0px;
border-radius: 3px;
}
QSlider::handle:vertical {
background: #232629;
border: 1px solid #565a5e;
width: 16px;
height: 16px;
margin: 0 -8px;
border-radius: 9px;
}
QToolButton {
background-color: transparent;
border: 1px transparent #76797C;
border-radius: 2px;
margin: 3px;
padding: 5px;
}
QToolButton[popupMode="1"] {
/* only for MenuButtonPopup */
padding-right: 20px;
/* make way for the popup button */
border: 1px #76797C;
border-radius: 5px;
}
QToolButton[popupMode="2"] {
/* only for InstantPopup */
padding-right: 10px;
/* make way for the popup button */
border: 1px #76797C;
}
QToolButton:hover,
QToolButton::menu-button:hover {
background-color: transparent;
border: 1px solid #3daee9;
padding: 5px;
}
QToolButton:checked,
QToolButton:pressed,
QToolButton::menu-button:pressed {
background-color: #3daee9;
border: 1px solid #3daee9;
padding: 5px;
}
/* the subcontrol below is used only in the InstantPopup or DelayedPopup mode */
QToolButton::menu-indicator {
image: url(:/qss_icons/rc/down_arrow.png);
top: -7px;
left: -2px;
/* shift it a bit */
}
/* the subcontrols below are used only in the MenuButtonPopup mode */
QToolButton::menu-button {
border: 1px transparent #76797C;
border-top-right-radius: 6px;
border-bottom-right-radius: 6px;
/* 16px width + 4px for border = 20px allocated above */
width: 16px;
outline: none;
}
QToolButton::menu-arrow {
image: url(:/qss_icons/rc/down_arrow.png);
}
QToolButton::menu-arrow:open {
border: 1px solid #76797C;
}
QPushButton::menu-indicator {
subcontrol-origin: padding;
subcontrol-position: bottom right;
left: 8px;
}
QTableView {
border: 1px solid #76797C;
gridline-color: #383f46;
background-color: #232629;
}
QTableView,
QHeaderView {
border-radius: 0px;
}
QTableView::item:pressed,
QListView::item:pressed,
QTreeView::item:pressed {
background: #18465d;
color: #eff0f1;
}
QTableView::item:selected:active,
QTreeView::item:selected:active,
QListView::item:selected:active {
background: #287399;
color: #eff0f1;
}
QHeaderView {
background-color: #31363b;
border: 1px transparent;
border-radius: 0px;
margin: 0px;
padding: 0px;
}
QHeaderView::section {
background-color: #31363b;
color: #eff0f1;
padding: 5px;
border: 1px solid #76797C;
border-radius: 0px;
text-align: center;
}
QHeaderView::section::vertical::first,
QHeaderView::section::vertical::only-one {
border-top: 1px solid #76797C;
}
QHeaderView::section::vertical {
border-top: transparent;
}
QHeaderView::section::horizontal::first,
QHeaderView::section::horizontal::only-one {
border-left: 1px solid #76797C;
}
QHeaderView::section::horizontal {
border-left: transparent;
}
QHeaderView::section:checked {
color: white;
background-color: #334e5e;
}
/* style the sort indicator */
QHeaderView::down-arrow {
image: url(:/qss_icons/rc/down_arrow.png);
}
QHeaderView::up-arrow {
image: url(:/qss_icons/rc/up_arrow.png);
}
QTableCornerButton::section {
background-color: #31363b;
border: 1px transparent #76797C;
border-radius: 0px;
}
QToolBox {
padding: 5px;
border: 1px transparent black;
}
QToolBox::tab {
color: #eff0f1;
background-color: #31363b;
border: 1px solid #76797C;
border-bottom: 1px transparent #31363b;
border-top-left-radius: 5px;
border-top-right-radius: 5px;
}
QToolBox::tab:selected {
/* italicize selected tabs */
font: italic;
background-color: #31363b;
border-color: #3daee9;
}
QStatusBar::item {
border: 0px transparent dark;
}
QFrame[height="3"],
QFrame[width="3"] {
background-color: #76797C;
}
QSplitter::handle {
border: 1px dashed #76797C;
}
QSplitter::handle:hover {
background-color: #787876;
border: 1px solid #76797C;
}
QSplitter::handle:horizontal {
width: 1px;
}
QSplitter::handle:vertical {
height: 1px;
}
QProgressBar {
border: 1px solid #76797C;
border-radius: 5px;
text-align: center;
}
QProgressBar::chunk {
background-color: #05B8CC;
}
QDateEdit {
selection-background-color: #3daee9;
border-style: solid;
border: 1px solid #3375A3;
border-radius: 2px;
padding: 1px;
min-width: 75px;
}
QDateEdit:on {
padding-top: 3px;
padding-left: 4px;
selection-background-color: #4a4a4a;
}
QDateEdit QAbstractItemView {
background-color: #232629;
border-radius: 2px;
border: 1px solid #3375A3;
selection-background-color: #3daee9;
}
QDateEdit::drop-down {
subcontrol-origin: padding;
subcontrol-position: top right;
width: 15px;
border-left-width: 0px;
border-left-color: darkgray;
border-left-style: solid;
border-top-right-radius: 3px;
border-bottom-right-radius: 3px;
}
QDateEdit::down-arrow {
image: url(:/qss_icons/rc/down_arrow_disabled.png);
}
QDateEdit::down-arrow:on,
QDateEdit::down-arrow:hover,
QDateEdit::down-arrow:focus {
image: url(:/qss_icons/rc/down_arrow.png);
}
================================================
FILE: utils/releases.py
================================================
#!/usr/bin/python3
# -*- coding: utf-8 -*-
from PySide2.QtWidgets import QGridLayout, QDialog, QLabel, QApplication
from PySide2.QtCore import Qt
def _translate(context, text, disambig):
return QApplication.translate(context, text, disambig)
class label(QLabel):
def __init__(self, txt, parent=None):
super().__init__(parent)
self.setText(txt)
self.setAlignment(Qt.AlignLeft | Qt.AlignVCenter)
class releases(QDialog):
def __init__(self):
super().__init__()
self.setWindowTitle('版本更新')
self.resize(400, 200)
layout = QGridLayout()
self.setLayout(layout)
layout.addWidget(label('当前版本'), 0, 0, 1, 1)
layout.addWidget(label('DD烤肉机2.0.1'), 0, 1, 1, 1)
layout.addWidget(label('检查更新'), 1, 0, 1, 1)
releases_url = label('')
releases_url.setOpenExternalLinks(True)
releases_url.setText(_translate("MainWindow", "\
https://github.com/jiafangjun/DD_KaoRou2/releases
", None))
layout.addWidget(releases_url, 1, 1, 1, 1)
================================================
FILE: utils/setting.py
================================================
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
from PySide2.QtWidgets import QGridLayout, QDialog, QLabel, QComboBox, QMessageBox
from PySide2.QtCore import Qt, Signal
class label(QLabel):
def __init__(self, txt, parent=None):
super().__init__(parent)
self.setText(txt)
self.setAlignment(Qt.AlignLeft | Qt.AlignVCenter)
class settingPage(QDialog):
settingSignal = Signal(dict)
def __init__(self):
super().__init__()
self.settingDict = {'layoutType': 0, # 0: 风格1, 1: 风格2
'redLinePos': 5,
'tableRefresh': 0, # 0: 开启, 1: 关闭
'tableRefreshFPS': 0, # 0: 60FPS, 1: 30FPS, 2: 20FPS, 3: 10FPS
'graphRefreshFPS': 1, # 0: 60FPS, 1: 30FPS, 2: 20FPS, 3: 10FPS
}
self.setWindowTitle('设置')
self.resize(640, 480)
layout = QGridLayout()
self.setLayout(layout)
if os.path.exists('config'): # 导入已存在的设置
with open('config', 'r') as cfg:
for line in cfg:
if '=' in line:
try:
cfgName, cfgValue = line.strip().replace(' ', '').split('=')
self.settingDict[cfgName] = cfgValue
except Exception as e:
print(str(e))
self.settingSignal.emit(self.settingDict) # 发射默认配置给主界面
layout.addWidget(label('布局风格'), 0, 0, 1, 1)
self.mainWindowLayoutType = QComboBox()
self.mainWindowLayoutType.addItems(['波形图居左下', '波形图居正下'])
self.mainWindowLayoutType.setCurrentIndex(int(self.settingDict['layoutType']))
self.mainWindowLayoutType.currentIndexChanged.connect(self.layoutTypeChange)
layout.addWidget(self.mainWindowLayoutType, 0, 1, 1, 1)
layout.addWidget(label('波形图红线位置'), 1, 0, 1, 1)
self.redLinePosition = QComboBox()
self.redLinePosition.addItems(['%s' % (x * 10) + '%' for x in range(11)])
self.redLinePosition.setCurrentIndex(int(self.settingDict['redLinePos']))
self.redLinePosition.currentIndexChanged.connect(self.changeSetting)
layout.addWidget(self.redLinePosition, 1, 1, 1, 1)
layout.addWidget(label(''), 0, 2, 1, 1)
layout.addWidget(label('表格进度跟随鼠标'), 0, 3, 1, 1)
self.tableRefreshCombox = QComboBox()
self.tableRefreshCombox.addItems(['开启', '关闭'])
self.tableRefreshCombox.setCurrentIndex(int(self.settingDict['tableRefresh']))
self.tableRefreshCombox.currentIndexChanged.connect(self.changeSetting)
layout.addWidget(self.tableRefreshCombox, 0, 4, 1, 1)
layout.addWidget(label('限制表格刷新率'), 1, 3, 1, 1)
self.tableRefreshFPSCombox = QComboBox()
self.tableRefreshFPSCombox.addItems(['60FPS (有点吃配置)', '30FPS (推荐)', '20FPS', '10FPS'])
self.tableRefreshFPSCombox.setCurrentIndex(int(self.settingDict['tableRefreshFPS']))
self.tableRefreshFPSCombox.currentIndexChanged.connect(self.changeSetting)
layout.addWidget(self.tableRefreshFPSCombox, 1, 4, 1, 1)
layout.addWidget(label('限制波形图刷新率'), 2, 3, 1, 1)
self.graphRefreshFPSCombox = QComboBox()
self.graphRefreshFPSCombox.addItems(['60FPS (比较吃配置)', '30FPS (推荐)', '20FPS', '10FPS'])
self.graphRefreshFPSCombox.setCurrentIndex(int(self.settingDict['graphRefreshFPS']))
self.graphRefreshFPSCombox.currentIndexChanged.connect(self.changeSetting)
layout.addWidget(self.graphRefreshFPSCombox, 2, 4, 1, 1)
def layoutTypeChange(self):
QMessageBox.information(self, '修改主界面排版', '界面排版需重启生效', QMessageBox.Ok)
self.changeSetting()
def changeSetting(self):
self.settingDict['layoutType'] = self.mainWindowLayoutType.currentIndex()
self.settingDict['redLinePos'] = self.redLinePosition.currentIndex()
self.settingDict['tableRefresh'] = self.tableRefreshCombox.currentIndex()
self.settingDict['tableRefreshFPS'] = self.tableRefreshFPSCombox.currentIndex()
self.settingDict['graphRefreshFPS'] = self.graphRefreshFPSCombox.currentIndex()
try:
with open('config', 'w') as cfg: # 尝试更新配置文件
for cfgName, cfgValue in self.settingDict.items():
cfg.write('%s=%s\n' % (cfgName, cfgValue))
except Exception as e:
print(str(e))
self.settingSignal.emit(self.settingDict) # 发射修改后的配置参数给主界面
================================================
FILE: utils/subtitle.py
================================================
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
from PySide2.QtWidgets import QGridLayout, QFileDialog, QDialog, QLabel, QPushButton, QLineEdit
from PySide2.QtGui import QFont
from PySide2.QtCore import Qt, Signal
class exportSubtitle(QDialog):
exportArgs = Signal(list)
def __init__(self):
super().__init__()
self.subNum = 1
self.setWindowTitle('字幕裁剪: 第%s列字幕' % self.subNum)
self.resize(800, 200)
self.layout = QGridLayout()
self.setLayout(self.layout)
self.layout.addWidget(QLabel('视频起始时间: '), 0, 0, 1, 1)
self.startEdit = QLineEdit('00:00.0')
self.layout.addWidget(self.startEdit, 0, 1, 1, 1)
self.startEdit.setAlignment(Qt.AlignRight)
self.startEdit.setFixedWidth(100)
self.startEdit.setFont(QFont('Timers', 14))
self.startEdit.textChanged.connect(self.setSubtStart)
self.layout.addWidget(QLabel(), 0, 2, 1, 1)
self.layout.addWidget(QLabel('视频结束时间: '), 0, 3, 1, 1)
self.endEdit = QLineEdit('00:00.0')
self.layout.addWidget(self.endEdit, 0, 4, 1, 1)
self.endEdit.setAlignment(Qt.AlignRight)
self.endEdit.setFixedWidth(100)
self.endEdit.setFont(QFont('Timers', 14))
self.layout.addWidget(QLabel(), 0, 5, 1, 1)
self.layout.addWidget(QLabel('字幕起始时间: '), 0, 6, 1, 1)
self.subStartEdit = QLineEdit('00:00.0')
self.layout.addWidget(self.subStartEdit, 0, 7, 1, 1)
self.subStartEdit.setAlignment(Qt.AlignRight)
self.subStartEdit.setFixedWidth(100)
self.subStartEdit.setFont(QFont('Timers', 14))
self.outputPath = QLineEdit()
self.layout.addWidget(self.outputPath, 1, 0, 1, 6)
self.outputButton = QPushButton('保存路径')
self.outputButton.setFixedHeight(28)
self.layout.addWidget(self.outputButton, 1, 6, 1, 1)
self.outputButton.clicked.connect(self.outputChoose)
self.startButton = QPushButton('开始导出')
self.startButton.setFixedHeight(28)
self.layout.addWidget(self.startButton, 1, 7, 1, 1)
self.startButton.clicked.connect(self.export)
def setSubtStart(self, t):
self.subStartEdit.setText(t)
def setDefault(self, start, end, subNum):
self.startEdit.setText(start)
self.endEdit.setText(end)
self.subNum = subNum
self.setWindowTitle('字幕裁剪: 第%s列字幕' % self.subNum)
if self.outputPath.text():
fPath, _ = os.path.split(self.outputPath.text())
self.outputPath.setText(os.path.join(fPath, '未命名_第%s列字幕_%s-%s.srt' % (self.subNum, start.replace(':', '.'), end.replace(':', '.'))))
def outputChoose(self):
start = self.startEdit.text().replace(':', ':').replace(':', '.')
end = self.endEdit.text().replace(':', ':').replace(':', '.')
subtitlePath = QFileDialog.getSaveFileName(self, "选择输出字幕文件夹", './未命名_第%s列字幕_%s-%s.srt' % (self.subNum, start, end), "字幕文件 (*.srt)")[0]
if subtitlePath:
self.outputPath.setText(subtitlePath)
def export(self):
start = self.startEdit.text().replace(':', ':')
end = self.endEdit.text().replace(':', ':')
subStart = self.subStartEdit.text().replace(':', ':')
self.exportArgs.emit([start, end, subStart, self.subNum, self.outputPath.text()])
================================================
FILE: utils/videoDecoder.py
================================================
import os, time, copy, codecs, subprocess, psutil
from PySide2.QtWidgets import QGridLayout, QFileDialog, QDialog, QPushButton, QApplication,\
QLineEdit, QTableWidget, QTableWidgetItem, QCheckBox, QProgressBar, QLabel,\
QComboBox, QCheckBox, QWidget, QSlider, QFontDialog, QColorDialog, QTabWidget, QMessageBox
from PySide2.QtCore import Qt, QTimer, Signal, QThread, QPoint
from PySide2.QtGui import QFontInfo, QPixmap, QIntValidator, QDoubleValidator
def ms2SRTTime(ms):
'''
receive int
return str
ms -> h:m:s,ms
'''
h, m = divmod(ms, 3600000)
m, s = divmod(m, 60000)
s, ms = divmod(s, 1000)
return '%s:%02d:%02d,%03d' % (h, m, s, ms)
def ms2ASSTime(ms):
'''
receive int
return str
ms -> h:m:s.ms
'''
h, m = divmod(ms, 3600000)
m, s = divmod(m, 60000)
s, ms = divmod(s, 1000)
ms = ('%03d' % ms)[:2]
return '%s:%02d:%02d.%s' % (h, m, s, ms)
def ms2LRCTime(ms):
'''
receive int
return str
ms -> m:s.ms
'''
m, s = divmod(ms, 60000)
s, ms = divmod(s, 1000)
ms = ('%03d' % ms)[:2]
return '%02d:%02d.%s' % (m, s, ms)
def calSubTime(t):
'''
receive str
return int
h:m:s.ms -> s in total
'''
h = int(t[:2])
m = int(t[3:5])
s = int(t[6:8])
return h * 3600 + m * 60 + s
class Slider(QSlider):
pointClicked = Signal(QPoint)
def mousePressEvent(self, event):
self.pointClicked.emit(event.pos())
def mouseMoveEvent(self, event):
self.pointClicked.emit(event.pos())
class videoEncoder(QThread):
processBar = Signal(int)
currentPos = Signal(str)
encodeResult = Signal(bool)
def __init__(self, videoPath, cmd, parent=None):
super(videoEncoder, self).__init__(parent)
self.videoPath = videoPath
self.cmd = cmd
def run(self):
self.p = subprocess.Popen(['ffmpeg.exe', '-i', self.videoPath, '-map', '0:v:0', '-c', 'copy', '-f', 'null', '-'], stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
self.p.wait()
frames = self.p.stdout.readlines()[-2].decode('gb18030').split('frame=')[-1].split(' ')
for f in frames:
if f:
totalFrames = int(f)
break
self.p = subprocess.Popen(self.cmd, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
cnt = 0
while self.p.poll() is None:
console = self.p.stdout.read(1000).decode('gb18030', 'ignore')
if 'frame=' in console:
break
while self.p.poll() is None:
console = self.p.stdout.read(300).decode('gb18030', 'ignore')
if '\r' in console:
console = console.split('\r')[-2]
if 'frame=' in console:
frameArgs = console.split('frame=')[-1].split(' ')
for frame in frameArgs:
if frame:
self.processBar.emit(int(frame) * 100 // totalFrames)
break
cnt += 1
if not cnt % 4:
if 'time=' in console:
videoPos = console.split('time=')[-1].split(' ')[0]
self.currentPos.emit(videoPos)
if self.p.poll() == 1:
self.encodeResult.emit(False)
elif self.p.poll() == 0:
self.encodeResult.emit(True)
class label(QLabel):
clicked = Signal()
def mouseReleaseEvent(self, QMouseEvent):
self.clicked.emit()
class encodeOption(QWidget):
def __init__(self):
super().__init__()
self.resize(600, 300)
self.setWindowTitle('编码设置 (输出格式为mp4时生效 mkv默认无损合流)')
layout = QGridLayout()
self.setLayout(layout)
resolution = QWidget()
resolutionLayout = QGridLayout()
resolution.setLayout(resolutionLayout)
layout.addWidget(resolution, 0, 0, 1, 1)
resolutionLayout.addWidget(QLabel('分辨率 '), 0, 0, 1, 1)
self.exportVideoWidth = QLineEdit()
self.exportVideoWidth.setMaximumWidth(100)
self.exportVideoWidth.setAlignment(Qt.AlignCenter)
self.exportVideoWidth.setValidator(QIntValidator(100, 10000))
self.exportVideoHeight = QLineEdit()
self.exportVideoHeight.setMaximumWidth(100)
self.exportVideoHeight.setAlignment(Qt.AlignCenter)
self.exportVideoHeight.setValidator(QIntValidator(100, 10000))
resolutionLayout.addWidget(self.exportVideoWidth, 0, 1, 1, 1)
xLabel = QLabel('x')
xLabel.setAlignment(Qt.AlignCenter)
resolutionLayout.addWidget(xLabel, 0, 2, 1, 1)
resolutionLayout.addWidget(self.exportVideoHeight, 0, 3, 1, 1)
layout.addWidget(QLabel(), 0, 2, 1, 1)
layout.addWidget(QLabel('码率(k)'), 0, 3, 1, 1)
self.exportVideoBitrate = QLineEdit()
self.exportVideoBitrate.setValidator(QIntValidator(100, 10000))
layout.addWidget(self.exportVideoBitrate, 0, 4, 1, 1)
layout.addWidget(QLabel(), 0, 5, 1, 1)
layout.addWidget(QLabel('帧率'), 0, 6, 1, 1)
self.exportVideoFPS = QLineEdit()
self.exportVideoFPS.setValidator(QIntValidator(10, 200))
layout.addWidget(self.exportVideoFPS, 0, 7, 1, 1)
self.anime4k = QPushButton('使用Anime4K扩展画质 ')
# self.anime4k.clicked.connect(self.anime4kClick)
layout.addWidget(self.anime4k, 1, 0, 1, 1)
layout.addWidget(QLabel('压缩比'), 1, 3, 1, 1)
self.exportVideoPreset = QComboBox()
self.exportVideoPreset.addItems(['极致(最慢)', '较高(较慢)', '中等(中速)', '较低(较快)', '最低(最快)'])
self.exportVideoPreset.setCurrentIndex(2)
layout.addWidget(self.exportVideoPreset, 1, 4, 1, 1)
layout.addWidget(QLabel(), 1, 5, 1, 1)
layout.addWidget(QLabel('编码器'), 1, 6, 1, 1)
self.encoder = QComboBox()
self.encoder.addItems(['CPU', 'N卡 H264', 'N卡 HEVC', 'A卡 H264', 'A卡 HEVC'])
self.encoder.currentIndexChanged.connect(self.encoderChange)
layout.addWidget(self.encoder, 1, 7, 1, 1)
self.mixAudioPath = QLineEdit()
layout.addWidget(self.mixAudioPath, 2, 0, 1, 1)
self.mixAudioButton = QPushButton('音频混流')
self.mixAudioButton.clicked.connect(self.openAudio)
layout.addWidget(self.mixAudioButton, 2, 1, 1, 1)
self.confirm = QPushButton('确定')
self.confirm.clicked.connect(self.hide)
layout.addWidget(self.confirm, 2, 6, 1, 2)
# def anime4kClick(self):
# self.anime4KToken = not self.anime4KToken
# if self.anime4KToken:
# self.anime4k.setStyleSheet('background-color:#3daee9')
# else:
# self.anime4k.setStyleSheet('background-color:#31363b')
def openAudio(self):
self.audioPath = QFileDialog.getOpenFileName(self, "请选择音频文件", None, "音频文件 (*.m4a *.mp3 *.wav *.wma);;所有文件(*.*)")[0]
if self.audioPath:
self.mixAudioPath.setText(self.audioPath)
def encoderChange(self, index):
self.exportVideoPreset.clear()
if not index:
self.exportVideoPreset.addItems(['极致(最慢)', '较高(较慢)', '中等(中速)', '较低(较快)', '最低(最快)'])
else:
self.exportVideoPreset.addItems(['较高(较慢)', '中等(中速)', '较低(较快)'])
class advanced(QWidget):
def __init__(self, videoWidth, videoHeight):
super().__init__()
layout = QGridLayout()
self.setLayout(layout)
layout.addWidget(QLabel('Title:'), 0, 0, 1, 1)
self.title = QLineEdit()
layout.addWidget(self.title, 0, 1, 1, 4)
layout.addWidget(QLabel('Script:'), 1, 0, 1, 1)
self.originalScript = QLineEdit()
layout.addWidget(self.originalScript, 1, 1, 1, 1)
layout.addWidget(QLabel('Translation:'), 1, 3, 1, 1)
self.translation = QLineEdit()
layout.addWidget(self.translation, 1, 4, 1, 1)
layout.addWidget(QLabel('Editing:'), 2, 0, 1, 1)
self.editing = QLineEdit()
layout.addWidget(self.editing, 2, 1, 1, 1)
layout.addWidget(QLabel('Timing:'), 2, 3, 1, 1)
self.timing = QLineEdit()
layout.addWidget(self.timing, 2, 4, 1, 1)
layout.addWidget(QLabel('Script Type:'), 3, 0, 1, 1)
self.scriptType = QLineEdit('v4.00+')
layout.addWidget(self.scriptType, 3, 1, 1, 1)
layout.addWidget(QLabel('Collisions:'), 3, 3, 1, 1)
self.collisions = QComboBox()
self.collisions.addItems(['Normal', 'Reverse'])
layout.addWidget(self.collisions, 3, 4, 1, 1)
layout.addWidget(QLabel('PlayResX:'), 4, 0, 1, 1)
self.playResX = QLineEdit(str(videoWidth))
layout.addWidget(self.playResX, 4, 1, 1, 1)
layout.addWidget(QLabel('PlayResY:'), 4, 3, 1, 1)
self.playResY = QLineEdit(str(videoHeight))
layout.addWidget(self.playResY, 4, 4, 1, 1)
layout.addWidget(QLabel('Timer:'), 5, 0, 1, 1)
self.timer = QLineEdit('100.0000')
layout.addWidget(self.timer, 5, 1, 1, 1)
layout.addWidget(QLabel('WrapStyle:'), 5, 3, 1, 1)
self.warpStyle = QComboBox()
self.warpStyle.addItems(['0: 上行更长', '1: 行尾换行', '2: 不换行', '3: 下行更长'])
layout.addWidget(self.warpStyle, 5, 4, 1, 1)
layout.addWidget(QLabel('Scaled Border And Shadow:'), 6, 0, 1, 3)
self.scaleBS = QComboBox()
self.scaleBS.addItems(['yes', 'no'])
layout.addWidget(self.scaleBS, 6, 4, 1, 1)
def setPlayRes(self, videoWidth, videoHeight):
self.playResX.setText(str(videoWidth))
self.playResY.setText(str(videoHeight))
class fontWidget(QWidget):
def __init__(self):
super().__init__()
self.fontName = '微软雅黑'
self.fontSize = 90
self.fontBold = True
self.fontItalic = False
self.fontUnderline = False
self.fontStrikeout = False
self.fontColor = '#ffffff'
self.secondColor = '#ff5cf7'
self.outlineColor = '#000000'
self.shadowColor = '#696969'
fontBold = '粗体' if self.fontBold else ''
fontItalic = '斜体' if self.fontItalic else ''
fontUnderline = '下划线' if self.fontUnderline else ''
fontStrikeOut = '删除线' if self.fontStrikeout else ''
self.optionLayout = QGridLayout()
self.setLayout(self.optionLayout)
self.fontSelect = QPushButton('%s%s号%s%s%s%s' % (self.fontName, self.fontSize, fontBold, fontItalic, fontUnderline, fontStrikeOut))
self.fontSelect.setFixedWidth(150)
self.fontSelect.clicked.connect(self.getFont)
self.optionLayout.addWidget(self.fontSelect, 0, 0, 1, 2)
self.optionLayout.addWidget(QLabel(''), 0, 2, 1, 1)
self.fontColorSelect = label()
self.fontColorSelect.setAlignment(Qt.AlignCenter)
self.fontColorSelect.setText(self.fontColor)
self.fontColorSelect.setStyleSheet('background-color:%s;color:%s' % (self.fontColor, self.colorReverse(self.fontColor)))
self.fontColorSelect.clicked.connect(self.getFontColor)
self.optionLayout.addWidget(self.fontColorSelect, 0, 3, 1, 1)
self.fontColorLabel = QLabel('字体颜色')
self.optionLayout.addWidget(self.fontColorLabel, 0, 4, 1, 1)
self.karaoke = QPushButton('卡拉OK平移模式')
self.karaoke.setFixedWidth(150)
self.karaokeStatus = False
self.karaoke.clicked.connect(self.setKaraoke)
self.optionLayout.addWidget(self.karaoke, 1, 0, 1, 2)
self.secondColorSelect = label()
self.secondColorSelect.setAlignment(Qt.AlignCenter)
self.secondColorSelect.setText(self.secondColor)
self.secondColorSelect.setStyleSheet('background-color:%s;color:%s' % (self.secondColor, self.colorReverse(self.secondColor)))
self.secondColorSelect.clicked.connect(self.getSecondFontColor)
self.secondColorSelect.hide()
self.optionLayout.addWidget(self.secondColorSelect, 1, 3, 1, 1)
self.secondColorLabel = QLabel('次要颜色')
self.secondColorLabel.hide()
self.optionLayout.addWidget(self.secondColorLabel, 1, 4, 1, 1)
validator = QIntValidator()
self.horizontalMoveEdit = QLineEdit('100')
self.horizontalMoveEdit.setValidator(validator)
self.horizontalMoveEdit.setFixedWidth(100)
self.horizontalMoveEdit.hide()
self.optionLayout.addWidget(self.horizontalMoveEdit, 2, 0, 1, 1)
self.horizontalMoveLabel = QLabel('水平移动')
self.horizontalMoveLabel.hide()
self.optionLayout.addWidget(self.horizontalMoveLabel, 2, 1, 1, 1)
self.verticalMoveEdit = QLineEdit('0')
self.verticalMoveEdit.setValidator(validator)
self.verticalMoveEdit.setFixedWidth(100)
self.verticalMoveEdit.hide()
self.optionLayout.addWidget(self.verticalMoveEdit, 2, 3, 1, 1)
self.verticalMoveLabel = QLabel('竖直移动')
self.verticalMoveLabel.hide()
self.optionLayout.addWidget(self.verticalMoveLabel, 2, 4, 1, 1)
validator = QDoubleValidator()
self.outlineSizeEdit = QLineEdit('2')
self.outlineSizeEdit.setValidator(validator)
self.outlineSizeEdit.setFixedWidth(100)
self.optionLayout.addWidget(self.outlineSizeEdit, 3, 0, 1, 1)
self.outlineSizeLabel = QLabel('描边大小')
self.optionLayout.addWidget(self.outlineSizeLabel, 3, 1, 1, 1)
self.outlineColorSelect = label()
self.outlineColorSelect.setAlignment(Qt.AlignCenter)
self.outlineColorSelect.setText(self.outlineColor)
self.outlineColorSelect.setStyleSheet('background-color:%s;color:%s' % (self.outlineColor, self.colorReverse(self.outlineColor)))
self.outlineColorSelect.clicked.connect(self.getOutlineColor)
self.optionLayout.addWidget(self.outlineColorSelect, 3, 3, 1, 1)
self.outlineColorLabel = QLabel('描边颜色')
self.optionLayout.addWidget(self.outlineColorLabel, 3, 4, 1, 1)
self.shadowSizeEdit = QLineEdit('2')
self.shadowSizeEdit.setValidator(validator)
self.shadowSizeEdit.setFixedWidth(100)
self.optionLayout.addWidget(self.shadowSizeEdit, 4, 0, 1, 1)
self.shadowSizeLabel = QLabel('阴影大小')
self.optionLayout.addWidget(self.shadowSizeLabel, 4, 1, 1, 1)
self.shadowColorSelect = label()
self.shadowColorSelect.setAlignment(Qt.AlignCenter)
self.shadowColorSelect.setText(self.shadowColor)
self.shadowColorSelect.setStyleSheet('background-color:%s;color:%s' % (self.shadowColor, self.colorReverse(self.shadowColor)))
self.shadowColorSelect.clicked.connect(self.getShadowColor)
self.optionLayout.addWidget(self.shadowColorSelect, 4, 3, 1, 1)
self.shadowColorLabel = QLabel('阴影颜色')
self.optionLayout.addWidget(self.shadowColorLabel, 4, 4, 1, 1)
self.align = QComboBox()
self.align.addItems(['1: 左下', '2: 中下', '3: 右下', '4: 中左', '5: 中间', '6: 中右', '7: 左上', '8: 中上', '9: 右上'])
self.align.setCurrentIndex(1)
self.align.setFixedWidth(100)
self.optionLayout.addWidget(self.align, 5, 0, 1, 1)
self.alignLabel = QLabel('对齐方式')
self.optionLayout.addWidget(self.alignLabel, 5, 1, 1, 1)
validator = QIntValidator()
self.VAlignSlider = QLineEdit('100')
self.VAlignSlider.setValidator(validator)
self.VAlignSlider.setFixedWidth(100)
self.optionLayout.addWidget(self.VAlignSlider, 5, 3, 1, 1)
self.VAlignLabel = QLabel('垂直边距')
self.optionLayout.addWidget(self.VAlignLabel, 5, 4, 1, 1)
self.LAlignSlider = QLineEdit('0')
self.LAlignSlider.setValidator(validator)
self.LAlignSlider.setFixedWidth(100)
self.optionLayout.addWidget(self.LAlignSlider, 6, 0, 1, 1)
self.LAlignLabel = QLabel('左边距')
self.optionLayout.addWidget(self.LAlignLabel, 6, 1, 1, 1)
self.RAlignSlider = QLineEdit('0')
self.RAlignSlider.setValidator(validator)
self.RAlignSlider.setFixedWidth(100)
self.optionLayout.addWidget(self.RAlignSlider, 6, 3, 1, 1)
self.RAlignLabel = QLabel('右边距')
self.optionLayout.addWidget(self.RAlignLabel, 6, 4, 1, 1)
def getFont(self):
status, font = QFontDialog.getFont()
if status:
self.font = QFontInfo(font)
self.fontName = self.font.family()
self.fontSize = self.font.pointSize()
self.fontBold = self.font.bold()
self.fontItalic = self.font.italic()
self.fontUnderline = self.font.underline()
self.fontStrikeout = self.font.strikeOut()
fontBold = '粗体' if self.fontBold else ''
fontItalic = '斜体' if self.fontItalic else ''
fontUnderline = '下划线' if self.fontUnderline else ''
fontStrikeOut = '删除线' if self.fontStrikeout else ''
self.fontSelect.setText('%s%s号%s%s%s%s' % (self.fontName, self.fontSize, fontBold, fontItalic, fontUnderline, fontStrikeOut))
def setKaraoke(self):
self.karaokeStatus = not self.karaokeStatus
if self.karaokeStatus:
self.secondColorSelect.show()
self.secondColorLabel.show()
self.horizontalMoveEdit.show()
self.horizontalMoveLabel.show()
self.verticalMoveEdit.show()
self.verticalMoveLabel.show()
self.karaoke.setStyleSheet('background-color:#3daee9')
else:
self.secondColorSelect.hide()
self.secondColorLabel.hide()
self.horizontalMoveEdit.hide()
self.horizontalMoveLabel.hide()
self.verticalMoveEdit.hide()
self.verticalMoveLabel.hide()
self.karaoke.setStyleSheet('background-color:#31363b')
def getFontColor(self):
color = QColorDialog.getColor()
if color.isValid():
self.fontColor = color.name()
self.fontColorSelect.setText(self.fontColor)
self.fontColorSelect.setStyleSheet('background-color:%s;color:%s' % (self.fontColor, self.colorReverse(self.fontColor)))
def getSecondFontColor(self):
color = QColorDialog.getColor()
if color.isValid():
self.secondColor = color.name()
self.secondColorSelect.setText(self.secondColor)
self.secondColorSelect.setStyleSheet('background-color:%s;color:%s' % (self.secondColor, self.colorReverse(self.secondColor)))
def getOutlineColor(self):
color = QColorDialog.getColor()
if color.isValid():
self.outlineColor = color.name()
self.outlineColorSelect.setText(self.outlineColor)
self.outlineColorSelect.setStyleSheet('background-color:%s;color:%s' % (self.outlineColor, self.colorReverse(self.outlineColor)))
def getShadowColor(self):
color = QColorDialog.getColor()
if color.isValid():
self.shadowColor = color.name()
self.shadowColorSelect.setText(self.shadowColor)
self.shadowColorSelect.setStyleSheet('background-color:%s;color:%s' % (self.shadowColor, self.colorReverse(self.shadowColor)))
def colorReverse(self, color):
r = 255 - int(color[1:3], 16)
g = 255 - int(color[3:5], 16)
b = 255 - int(color[5:7], 16)
return '#%s%s%s' % (hex(r)[2:], hex(g)[2:], hex(b)[2:])
class VideoDecoder(QWidget):
saveToken = Signal(bool)
popAnime4K = Signal()
def __init__(self):
self.videoPath = ''
self.subPreview = ''
self.videoWidth = 1920
self.videoHeight = 1080
self.subtitles = {x: {} for x in range(5)}
self.styleNameList = [str(x) for x in range(1, 6)]
self.setEncode = encodeOption()
self.setEncode.anime4k.clicked.connect(lambda: self.popAnime4K.emit())
super().__init__()
self.setWindowTitle('字幕输出及合成')
screenRect = QApplication.primaryScreen().geometry()
screenHeight = screenRect.height() * 2 / 3
screenWidth = screenRect.width() * 3 / 4
self.resize(screenWidth, screenHeight)
self.layout = QGridLayout()
self.setLayout(self.layout)
self.preview = QLabel('效果预览')
self.preview.setFixedSize(screenWidth * 4 / 5, screenWidth * 9 / 20)
self.showMaximized()
# self.preview.setMaximumHeight(720)
# self.preview.setMaximumWidth(1280)
frame = QWidget()
frameLayout = QGridLayout()
frame.setLayout(frameLayout)
frameLayout.addWidget(self.preview)
self.layout.addWidget(frame, 0, 0, 6, 10)
self.preview.setScaledContents(True)
self.preview.setAlignment(Qt.AlignCenter)
self.preview.setStyleSheet("QLabel{background:white;}")
self.previewSlider = Slider()
self.previewSlider.setOrientation(Qt.Horizontal)
self.previewSlider.setMinimum(0)
self.previewSlider.setMaximum(1000)
self.previewSlider.pointClicked.connect(self.setPreviewSlider)
self.layout.addWidget(self.previewSlider, 6, 0, 1, 10)
self.option = QTabWidget()
self.option.setMaximumWidth(450)
self.layout.addWidget(self.option, 0, 10, 3, 2)
self.subDict = {x: fontWidget() for x in range(5)}
for subNumber, tabPage in self.subDict.items():
self.option.addTab(tabPage, '字幕 %s' % (subNumber + 1))
self.advanced = advanced(self.videoWidth, self.videoHeight)
self.option.addTab(self.advanced, 'ASS字幕信息')
self.startGrid = QWidget()
self.layout.addWidget(self.startGrid, 3, 10, 3, 2)
self.startLayout = QGridLayout()
self.startGrid.setLayout(self.startLayout)
self.sub1Check = QPushButton('字幕 1')
self.sub1Check.setStyleSheet('background-color:#3daee9')
self.sub2Check = QPushButton('字幕 2')
self.sub2Check.setStyleSheet('background-color:#3daee9')
self.sub3Check = QPushButton('字幕 3')
self.sub3Check.setStyleSheet('background-color:#3daee9')
self.sub4Check = QPushButton('字幕 4')
self.sub4Check.setStyleSheet('background-color:#3daee9')
self.sub5Check = QPushButton('字幕 5')
self.sub5Check.setStyleSheet('background-color:#3daee9')
self.sub1CheckStatus = True
self.sub2CheckStatus = True
self.sub3CheckStatus = True
self.sub4CheckStatus = True
self.sub5CheckStatus = True
self.sub1Check.clicked.connect(self.sub1CheckButtonClick)
self.sub2Check.clicked.connect(self.sub2CheckButtonClick)
self.sub3Check.clicked.connect(self.sub3CheckButtonClick)
self.sub4Check.clicked.connect(self.sub4CheckButtonClick)
self.sub5Check.clicked.connect(self.sub5CheckButtonClick)
self.startLayout.addWidget(self.sub1Check, 0, 0, 1, 1)
self.startLayout.addWidget(self.sub2Check, 0, 1, 1, 1)
self.startLayout.addWidget(self.sub3Check, 0, 2, 1, 1)
self.startLayout.addWidget(self.sub4Check, 0, 3, 1, 1)
self.startLayout.addWidget(self.sub5Check, 0, 4, 1, 1)
self.layerCheck = QPushButton('禁止字幕重叠')
self.layerCheck.setStyleSheet('background-color:#3daee9')
self.layerCheckStatus = True
self.layerCheck.clicked.connect(self.layerButtonClick)
self.startLayout.addWidget(self.layerCheck, 1, 0, 1, 2)
self.encodeSetup = QPushButton('编码设置')
self.encodeSetup.clicked.connect(self.setEncodeArgs)
self.startLayout.addWidget(self.encodeSetup, 1, 3, 1, 2)
self.outputEdit = QLineEdit()
self.outputEdit.setFocusPolicy(Qt.NoFocus)
self.startLayout.addWidget(self.outputEdit, 2, 0, 1, 4)
self.outputButton = QPushButton('保存为')
self.startLayout.addWidget(self.outputButton, 2, 4, 1, 1)
self.outputButton.clicked.connect(self.setSavePath)
self.exportSubButton = QPushButton('导出字幕')
self.exportSubButton.clicked.connect(self.exportSub)
self.exportSubButton.setFixedHeight(50)
self.startLayout.addWidget(self.exportSubButton, 3, 0, 1, 2)
self.startButton = QPushButton('开始压制')
self.startButton.clicked.connect(self.exportVideo)
self.startButton.setFixedHeight(50)
self.startLayout.addWidget(self.startButton, 3, 3, 1, 2)
self.processBar = QProgressBar()
self.processBar.setStyleSheet("QProgressBar{border:1px;text-align:center;background:white}")
self.processBar.setMaximumWidth(450)
self.layout.addWidget(self.processBar, 6, 10, 1, 2)
self.totalFrames = 0
self.old_decodeArgs = []
self.videoPos = 1
self.old_videoPos = 1
self.duration = 0
self.previewTimer = QTimer()
self.previewTimer.setInterval(50)
self.previewTimer.start()
self.previewTimer.timeout.connect(self.generatePreview)
def sub1CheckButtonClick(self):
self.sub1CheckStatus = not self.sub1CheckStatus
if self.sub1CheckStatus:
self.sub1Check.setStyleSheet('background-color:#3daee9')
else:
self.sub1Check.setStyleSheet('background-color:#31363b')
def sub2CheckButtonClick(self):
self.sub2CheckStatus = not self.sub2CheckStatus
if self.sub2CheckStatus:
self.sub2Check.setStyleSheet('background-color:#3daee9')
else:
self.sub2Check.setStyleSheet('background-color:#31363b')
def sub3CheckButtonClick(self):
self.sub3CheckStatus = not self.sub3CheckStatus
if self.sub3CheckStatus:
self.sub3Check.setStyleSheet('background-color:#3daee9')
else:
self.sub3Check.setStyleSheet('background-color:#31363b')
def sub4CheckButtonClick(self):
self.sub4CheckStatus = not self.sub4CheckStatus
if self.sub4CheckStatus:
self.sub4Check.setStyleSheet('background-color:#3daee9')
else:
self.sub4Check.setStyleSheet('background-color:#31363b')
def sub5CheckButtonClick(self):
self.sub5CheckStatus = not self.sub5CheckStatus
if self.sub5CheckStatus:
self.sub5Check.setStyleSheet('background-color:#3daee9')
else:
self.sub5Check.setStyleSheet('background-color:#31363b')
def layerButtonClick(self):
self.layerCheckStatus = not self.layerCheckStatus
if self.layerCheckStatus:
self.layerCheck.setStyleSheet('background-color:#3daee9')
else:
self.layerCheck.setStyleSheet('background-color:#31363b')
def setSavePath(self):
if self.videoPath:
outputName = os.path.split(self.videoPath)[1]
else:
outputName = ''
savePath = QFileDialog.getSaveFileName(self, "选择视频输出文件夹", outputName, "MP4格式 (*.mp4);;MKV格式 (*.mkv)")[0]
if savePath:
self.outputEdit.setText(savePath)
def setDefault(self, videoPath, videoWidth, videoHeight, duration, bitrate, fps, subtitles, styleNameList):
self.videoPath = videoPath
self.subPreview = os.path.splitext(self.videoPath)[0] + '.ass'
self.videoWidth = videoWidth
self.videoHeight = videoHeight
self.setEncode.exportVideoWidth.setText(str(videoWidth))
self.setEncode.exportVideoHeight.setText(str(videoHeight))
self.setEncode.exportVideoBitrate.setText(str(bitrate))
self.setEncode.exportVideoFPS.setText(str(fps))
self.duration = duration
self.advanced.setPlayRes(videoWidth, videoHeight)
self.subtitles = copy.deepcopy(subtitles)
for index in self.subtitles:
if -1 in self.subtitles[index]:
del self.subtitles[index][-1]
self.styleNameList = styleNameList
def copySubtitle(self, subtitles):
self.subtitles = copy.deepcopy(subtitles)
for index in self.subtitles:
if -1 in self.subtitles[index]:
del self.subtitles[index][-1]
def setSubDictStyle(self, assSummary):
subNumber = assSummary[0]
styleName = assSummary[1]
assDict = assSummary[2]
fontName = assDict['Fontname']
fontSize = assDict['Fontsize']
fontBold = True if assDict['Bold'] == '-1' else False
fontItalic = True if assDict['Italic'] == '-1' else False
fontUnderline = True if assDict['Underline'] == '-1' else False
fontStrikeOut = True if assDict['StrikeOut'] == '-1' else False
fontColor = self.rgbColor(assDict['PrimaryColour'])
secondColor = self.rgbColor(assDict['SecondaryColour'])
outlineColor = self.rgbColor(assDict['OutlineColour'])
shadowColor = self.rgbColor(assDict['BackColour'])
outline = assDict['Outline']
shadow = assDict['Shadow']
alignment = int(assDict['Alignment']) - 1
VA = assDict['MarginV']
LA = assDict['MarginL']
RA = assDict['MarginR']
tabPage = self.subDict[subNumber]
tabPage.fontName = fontName
tabPage.fontSize = fontSize
tabPage.fontBold = fontBold
tabPage.fontItalic = fontItalic
tabPage.fontUnderline = fontUnderline
tabPage.fontStrikeout = fontStrikeOut
tabPage.fontColor = fontColor
tabPage.secondColor = secondColor
tabPage.outlineColor = outlineColor
tabPage.shadowColor = shadowColor
fontBold = '粗体' if fontBold else ''
fontItalic = '斜体' if fontItalic else ''
fontUnderline = '下划线' if fontUnderline else ''
fontStrikeOut = '删除线' if fontStrikeOut else ''
tabPage.fontSelect.setText('%s%s号%s%s%s%s' % (fontName, fontSize, fontBold, fontItalic, fontUnderline, fontStrikeOut))
tabPage.fontColorSelect.setText(fontColor)
tabPage.fontColorSelect.setStyleSheet('background-color:%s;color:%s' % (fontColor, self.colorReverse(fontColor)))
tabPage.secondColorSelect.setText(secondColor)
tabPage.secondColorSelect.setStyleSheet('background-color:%s;color:%s' % (secondColor, self.colorReverse(secondColor)))
tabPage.outlineSizeEdit.setText(outline)
tabPage.outlineColorSelect.setText(outlineColor)
tabPage.outlineColorSelect.setStyleSheet('background-color:%s;color:%s' % (outlineColor, self.colorReverse(outlineColor)))
tabPage.shadowSizeEdit.setText(shadow)
tabPage.shadowColorSelect.setText(shadowColor)
tabPage.shadowColorSelect.setStyleSheet('background-color:%s;color:%s' % (shadowColor, self.colorReverse(shadowColor)))
tabPage.align.setCurrentIndex(alignment)
tabPage.VAlignSlider.setText(VA)
tabPage.LAlignSlider.setText(LA)
tabPage.RAlignSlider.setText(RA)
def returnSubDictStyle(self):
selectedSubDict = {}
for subNumber in range(5):
selectedSubDict[subNumber] = self.subDict[subNumber]
subtitleArgs = {}
self.karaokDict = {}
for subNumber, font in selectedSubDict.items():
if font.karaokeStatus:
try:
self.karaokDict[subNumber] = [True, self.ffmpegColor(font.secondColor), int(font.LAlignSlider.text()),
int(font.VAlignSlider.text()), int(font.horizontalMoveEdit.text()),
int(font.verticalMoveEdit.text())]
except:
self.karaokDict[subNumber] = [True, self.ffmpegColor(font.secondColor), int(font.LAlignSlider.text()),
int(font.VAlignSlider.text()), 0, 0]
else:
self.karaokDict[subNumber] = [False, '&H00000000']
fontBold = -1 if font.fontBold else 0
fontItalic = -1 if font.fontItalic else 0
fontUnderline = -1 if font.fontUnderline else 0
fontStrikeout = -1 if font.fontStrikeout else 0
subtitleArgs[subNumber] = [font.fontName, font.fontSize, self.ffmpegColor(font.fontColor), self.karaokDict[subNumber][1],
self.ffmpegColor(font.outlineColor), self.ffmpegColor(font.shadowColor),
fontBold, fontItalic, fontUnderline, fontStrikeout, 100, 100, 0, 0, 1,
font.outlineSizeEdit.text()[:4], font.shadowSizeEdit.text()[:4],
font.align.currentText().split(':')[0],
int(font.LAlignSlider.text()), int(font.RAlignSlider.text()), int(font.VAlignSlider.text()), 1]
return subtitleArgs
def setPreviewSlider(self, p):
pos = p.x() / self.previewSlider.width() * 1000
if pos > 1000:
pos = 1000
elif pos < 0:
pos = 0
self.previewSlider.setValue(pos)
self.videoPos = pos * self.duration // 1000000
def ffmpegColor(self, color):
'''
rgb color --> ffmpeg color
'''
color = color.upper()
r = color[1:3]
g = color[3:5]
b = color[5:7]
return '&H00%s%s%s' % (b, g, r)
def rgbColor(self, color):
'''
ffmpeg color --> rgb color
'''
color = color[-6:].lower()
b = color[:2]
g = color[2:4]
r = color[4:6]
return '#%s%s%s' % (r, g, b)
def colorReverse(self, color):
r = 255 - int(color[1:3], 16)
g = 255 - int(color[3:5], 16)
b = 255 - int(color[5:7], 16)
return '#%s%s%s' % (hex(r)[2:], hex(g)[2:], hex(b)[2:])
def collectArgs(self, allSub=False):
self.decodeArgs = [[self.advanced.title.text(), self.advanced.originalScript.text(), self.advanced.translation.text(),
self.advanced.editing.text(), self.advanced.timing.text(), self.advanced.scriptType.text(),
self.advanced.collisions.currentText(), self.advanced.playResX.text(), self.advanced.playResY.text(),
self.advanced.timer.text(), self.advanced.warpStyle.currentText().split(':')[0], self.advanced.scaleBS.currentText()]]
self.selectedSubDict = {}
for subNumber, subCheck in enumerate([self.sub1CheckStatus, self.sub2CheckStatus, self.sub3CheckStatus, self.sub4CheckStatus, self.sub5CheckStatus]):
if subCheck or allSub:
self.selectedSubDict[subNumber] = self.subDict[subNumber]
self.subtitleArgs = {}
self.karaokDict = {}
font = ''
for subNumber, font in self.selectedSubDict.items():
if not font.LAlignSlider.text():
font.LAlignSlider.setText('0')
if not font.RAlignSlider.text():
font.RAlignSlider.setText('0')
if not font.VAlignSlider.text():
font.VAlignSlider.setText('0')
if font.karaokeStatus:
try:
self.karaokDict[subNumber] = [True, self.ffmpegColor(font.secondColor), int(font.LAlignSlider.text()),
int(font.VAlignSlider.text()), int(font.horizontalMoveEdit.text()),
int(font.verticalMoveEdit.text())]
except:
self.karaokDict[subNumber] = [True, self.ffmpegColor(font.secondColor), int(font.LAlignSlider.text()),
int(font.VAlignSlider.text()), 0, 0]
else:
self.karaokDict[subNumber] = [False, '&H00000000']
fontBold = -1 if font.fontBold else 0
fontItalic = -1 if font.fontItalic else 0
fontUnderline = -1 if font.fontUnderline else 0
fontStrikeout = -1 if font.fontStrikeout else 0
self.subtitleArgs[subNumber] = [font.fontName, font.fontSize, self.ffmpegColor(font.fontColor), self.karaokDict[subNumber][1],
self.ffmpegColor(font.outlineColor), self.ffmpegColor(font.shadowColor),
fontBold, fontItalic, fontUnderline, fontStrikeout, 100, 100, 0, 0, 1,
font.outlineSizeEdit.text()[:4], font.shadowSizeEdit.text()[:4],
font.align.currentText().split(':')[0],
int(font.LAlignSlider.text()), int(font.RAlignSlider.text()), int(font.VAlignSlider.text()), 1]
self.decodeArgs.append(self.subtitleArgs)
if font:
self.decodeArgs.append([self.videoPath, self.layerCheckStatus, font.karaokeStatus])
else:
self.decodeArgs.append([self.videoPath, self.layerCheckStatus, ''])
def exportSub(self):
subtitlePath = QFileDialog.getSaveFileName(self, "选择字幕输出文件夹", None, "ass文件 (*.ass);;srt文件 (*.srt);;lrc文件 (*.lrc)")[0]
if subtitlePath:
self.writeAss(subtitlePath, False, True)
QMessageBox.information(self, '导出字幕', '导出完成', QMessageBox.Ok)
self.saveToken.emit(True)
def writeAss(self, outputPath='temp_sub.ass', preview=True, tip=False, pos=0, allSub=False):
if allSub:
self.collectArgs(True)
if outputPath.endswith('.ass'): # ass字幕
ass = codecs.open(outputPath, 'w', 'utf_8_sig')
ass.write('[Script Info]\n')
ass.write('; Script generated by DD烤肉机2.0; Powered by 执鸣神君\n')
ass.write('; B站个人空间:https://space.bilibili.com/637783;Github项目地址:https://github.com/jiafangjun/DD_KaoRou2\n')
ass.write('Title: %s\n' % self.advanced.title.text())
ass.write('OriginalScript: %s\n' % self.advanced.originalScript.text())
ass.write('OriginalTranslation: %s\n' % self.advanced.translation.text())
ass.write('OriginalEditing: %s\n' % self.advanced.editing.text())
ass.write('OriginalTiming: %s\n' % self.advanced.timing.text())
ass.write('ScriptType: %s\n' % self.advanced.scriptType.text())
ass.write('Collisions: %s\n' % self.advanced.collisions.currentText())
ass.write('PlayResX: %s\n' % self.advanced.playResX.text())
ass.write('PlayResY: %s\n' % self.advanced.playResY.text())
ass.write('Timer: %s\n' % self.advanced.timer.text())
ass.write('WrapStyle: %s\n' % self.advanced.warpStyle.currentText().split(':')[0])
ass.write('ScaledBorderAndShadow: %s\n\n' % self.advanced.scaleBS.currentText())
ass.write('[V4+ Styles]\n')
ass.write('Format: Name, Fontname, Fontsize, PrimaryColour, SecondaryColour, OutlineColour, BackColour, Bold, Italic, Underline, StrikeOut, ')
ass.write('ScaleX, ScaleY, Spacing, Angle, BorderStyle, Outline, Shadow, Alignment, MarginL, MarginR, MarginV, Encoding\n')
for subNumber, fontArgs in self.subtitleArgs.items():
style = 'Style: %s' % self.styleNameList[subNumber]
for i in fontArgs:
style += ',%s' % i
ass.write('%s\n\n' % style)
ass.write('[Events]\n')
ass.write('Format: Layer, Start, End, Style, Name, MarginL, MarginR, MarginV, Effect, Text\n')
if preview:
for subNumber in self.subtitleArgs:
num = subNumber + 1
if self.karaokDict[subNumber][0]:
karaX = self.karaokDict[subNumber][2]
karaY = self.karaokDict[subNumber][3]
moveX = self.karaokDict[subNumber][4]
moveY = self.karaokDict[subNumber][5]
if self.layerCheckStatus:
line = 'Dialogue: 0,0:00:00.00,0:00:10.00,%s,#%s,0,0,0,,{\\K10\\move(%s,%s,%s,%s)}%s\n' % \
(self.styleNameList[num - 1], num, karaX, karaY, karaX + moveX, karaY + moveY, r'Hi! 我是第%s列歌词。' % num)
else:
line = 'Dialogue: %s,0:00:00.00,0:00:10.00,%s,#%s,0,0,0,,{\\K10\\move(%s,%s,%s,%s)}%s\n' % \
(subNumber, self.styleNameList[num - 1], num, karaX, karaY, karaX + moveX, karaY + moveY, 'Hi! 我是第%s列歌词。' % num)
ass.write(line)
else:
if self.layerCheckStatus:
line = 'Dialogue: 0,0:00:00.00,0:00:10.00,%s,#%s,0,0,0,,%s\n' % \
(self.styleNameList[num - 1], num, r'Hi! 我是第%s列字幕。' % num)
else:
line = 'Dialogue: %s,0:00:00.00,0:00:10.00,%s,#%s,0,0,0,,%s\n' % \
(subNumber, self.styleNameList[num - 1], num, 'Hi! 我是第%s列字幕。' % num)
ass.write(line)
if tip:
QMessageBox.information(self, '导出字幕', '导出完成', QMessageBox.Ok)
else:
if not pos:
for subNumber in self.subtitleArgs:
for start in sorted(self.subtitles[subNumber].keys()):
subData = self.subtitles[subNumber][start]
if start >= 0:
num = subNumber + 1
if self.karaokDict[subNumber][0]:
karaX = self.karaokDict[subNumber][2]
karaY = self.karaokDict[subNumber][3]
moveX = self.karaokDict[subNumber][4]
moveY = self.karaokDict[subNumber][5]
if self.layerCheckStatus:
line = 'Dialogue: 0,%s,%s,%s,#%s,0,0,0,,{\\K%s\\move(%s,%s,%s,%s)\\fad(500,500)}%s\n' % \
(ms2ASSTime(start), ms2ASSTime(start + subData[0]), self.styleNameList[num - 1], num, subData[0] // 10 - 100, karaX, karaY, karaX + moveX, karaY + moveY, subData[1])
else:
line = 'Dialogue: %s,%s,%s,%s,#%s,0,0,0,,{\\K%s\\move(%s,%s,%s,%s)\\fad(500,500)}%s\n' % \
(subNumber, ms2ASSTime(start), ms2ASSTime(start + subData[0]), self.styleNameList[num - 1], num, subData[0] // 10 - 100, karaX, karaY, karaX + moveX, karaY + moveY, subData[1])
ass.write(line)
else:
if self.layerCheckStatus:
line = 'Dialogue: 0,%s,%s,%s,#%s,0,0,0,,%s\n' % (ms2ASSTime(start), ms2ASSTime(start + subData[0]), self.styleNameList[num - 1], num, subData[1])
else:
line = 'Dialogue: %s,%s,%s,%s,#%s,0,0,0,,%s\n' % (subNumber, ms2ASSTime(start), ms2ASSTime(start + subData[0]), self.styleNameList[num - 1], num, subData[1])
ass.write(line)
else:
for subNumber in self.subtitleArgs:
startKeys = sorted(self.subtitles[subNumber].keys())
for cnt, start in enumerate(startKeys):
if start / 1000 > pos and cnt:
start = startKeys[cnt - 1]
subData = self.subtitles[subNumber][start]
num = subNumber + 1
if self.karaokDict[subNumber][0]:
karaX = self.karaokDict[subNumber][2]
karaY = self.karaokDict[subNumber][3]
moveX = self.karaokDict[subNumber][4]
moveY = self.karaokDict[subNumber][5]
if self.layerCheckStatus:
line = 'Dialogue: 0,0:00:00.00,0:00:10.00,%s,#%s,0,0,0,,{\\K1000\\move(%s,%s,%s,%s)}%s\n' % \
(self.styleNameList[num - 1], num, karaX, karaY, karaX + moveX, karaY + moveY, subData[1])
else:
line = 'Dialogue: %s,0:00:00.00,0:00:10.00,%s,#%s,0,0,0,,{\\K1000\\move(%s,%s,%s,%s)}%s\n' % \
(subNumber, self.styleNameList[num - 1], num, karaX, karaY, karaX + moveX, karaY + moveY, subData[1])
ass.write(line)
break
else:
if self.layerCheckStatus:
line = 'Dialogue: 0,0:00:00.00,0:00:10.00,%s,#%s,0,0,0,,%s\n' % \
(self.styleNameList[num - 1], num, subData[1])
else:
line = 'Dialogue: %s,0:00:00.00,0:00:10.00,%s,#%s,0,0,0,,%s\n' % \
(subNumber, self.styleNameList[num - 1], num, subData[1])
ass.write(line)
break
ass.close()
elif outputPath.endswith('.srt'): # srt字幕
cnt = 1
srt = codecs.open(outputPath, 'w', 'utf_8_sig')
for subDict in self.subtitles.values():
for start in sorted(subDict.keys()):
delta, text = subDict[start]
end = ms2SRTTime(start + delta)
start = ms2SRTTime(start)
srt.write('%s\n%s --> %s\n%s\n\n' % (cnt, start, end, text))
cnt += 1
srt.close()
elif outputPath.endswith('.lrc'): # lrc字幕
lrc = codecs.open(outputPath, 'w', 'utf_8_sig')
lrc.write('[ti:]\n[ar:]\n[al:]\n[by:]\n[offset:0]\n')
for subDict in self.subtitles.values():
for start in sorted(subDict.keys()):
_, text = subDict[start]
start = ms2LRCTime(start)
lrc.write('[%s]%s\n' % (start, text))
lrc.close()
def generatePreview(self, force=False):
self.collectArgs()
if not self.selectedSubDict:
self.exportSubButton.setEnabled(False)
else:
self.exportSubButton.setEnabled(True)
# if not self.videoPath or not self.outputEdit.text():
# self.startButton.setEnabled(False)
# else:
# self.startButton.setEnabled(True)
if self.decodeArgs != self.old_decodeArgs or self.videoPos != self.old_videoPos or force:
if os.path.exists('temp_sub.jpg'):
os.remove('temp_sub.jpg')
if self.decodeArgs != self.old_decodeArgs:
self.old_decodeArgs = self.decodeArgs
self.writeAss()
if self.subPreview:
self.writeAss(self.subPreview, False, True, allSub=True) # 字幕样式修改的同时修改主界面预览字幕样式
elif self.videoPos != self.old_videoPos:
self.old_videoPos = self.videoPos
self.writeAss(preview=False, pos=self.videoPos)
else:
self.writeAss()
videoWidth = self.setEncode.exportVideoWidth.text()
videoHeight = self.setEncode.exportVideoHeight.text()
bit = self.setEncode.exportVideoBitrate.text() + 'k'
preset = ['veryslow', 'slow', 'medium', 'fast', 'ultrafast'][self.setEncode.exportVideoPreset.currentIndex()]
cmd = ['ffmpeg.exe', '-y', '-ss', str(self.videoPos), '-i', self.videoPath, '-frames', '1', '-vf', 'ass=temp_sub.ass',
'-s', '%sx%s' % (videoWidth, videoHeight), '-b:v', bit, '-preset', preset, '-q:v', '1', '-f', 'image2', 'temp_sub.jpg']
if not self.videoPath:
self.preview.setText('请先在主界面选择视频')
self.preview.setStyleSheet("QLabel{background:white;color:#232629}")
else:
p = subprocess.Popen(cmd)
p.wait()
pixmap = QPixmap('temp_sub.jpg')
self.preview.setPixmap(pixmap)
else:
pass
def setEncodeArgs(self):
self.setEncode.hide()
self.setEncode.show()
def exportVideo(self):
outputPath = self.outputEdit.text()
if not self.videoPath:
QMessageBox.information(self, '导出视频', '导出视频失败!请先在主界面选择视频打开', QMessageBox.Ok)
elif not outputPath:
QMessageBox.information(self, '导出视频', '导出视频失败!请选择保存路径', QMessageBox.Ok)
else:
self.startButton.setText('停止')
self.startButton.setStyleSheet('background-color:#3daee9')
self.startButton.clicked.disconnect(self.exportVideo)
self.startButton.clicked.connect(self.terminateEncode)
self.processBar.setValue(0)
try:
if os.path.exists(outputPath):
os.remove(outputPath)
encodeOK = True
except:
self.preview.setText('渲染失败 是否有进程正在占用:\n%s' % outputPath)
self.preview.setStyleSheet("QLabel{background:white;color:#232629}")
encodeOK = False
if encodeOK:
if os.path.exists('temp_sub.ass'):
os.remove('temp_sub.ass')
self.previewTimer.stop()
self.collectArgs()
self.writeAss(preview=False)
videoWidth = self.setEncode.exportVideoWidth.text()
videoHeight = self.setEncode.exportVideoHeight.text()
audio = ''
if self.setEncode.mixAudioPath.text():
audio = self.setEncode.mixAudioPath.text()
encoder = self.setEncode.encoder.currentIndex()
if not encoder:
preset = ['veryslow', 'slow', 'medium', 'fast', 'ultrafast'][self.setEncode.exportVideoPreset.currentIndex()]
else:
preset = ['slow', 'medium', 'fast'][self.setEncode.exportVideoPreset.currentIndex()]
bit = self.setEncode.exportVideoBitrate.text() + 'k'
fps = self.setEncode.exportVideoFPS.text()
if outputPath.endswith('.mp4'):
cmd = ['ffmpeg.exe', '-y', '-i', self.videoPath]
if audio:
cmd += ['-i', audio, '-c:a', 'aac']
cmd += ['-s', '%sx%s' % (videoWidth, videoHeight), '-preset', preset, '-vf', 'ass=temp_sub.ass']
if encoder == 1:
cmd += ['-c:v', 'h264_nvenc']
elif encoder == 2:
cmd += ['-c:v', 'hevc_nvenc']
elif encoder == 3:
cmd += ['-c:v', 'h264_amf']
elif encoder == 4:
cmd += ['-c:v', 'hevc_amf']
cmd += ['-b:v', bit, '-r', fps]
cmd.append(outputPath)
elif outputPath.endswith('.mkv'):
cmd = ['ffmpeg.exe', '-y', '-i', self.videoPath]
if audio:
cmd += ['-i', audio]
cmd += ['-i', 'temp_sub.ass', '-c', 'copy']
cmd.append(outputPath)
self.videoEncoder = videoEncoder(self.videoPath, cmd)
self.videoEncoder.processBar.connect(self.setProcessBar)
self.videoEncoder.currentPos.connect(self.setEncodePreview)
self.videoEncoder.encodeResult.connect(self.encodeFinish)
self.videoEncoder.start()
def setProcessBar(self, value):
self.processBar.setValue(value)
self.previewSlider.setValue(value * 10)
def setEncodePreview(self, currentPos):
self.writeAss(preview=False, pos=calSubTime(currentPos))
cmd = ['ffmpeg.exe', '-y', '-ss', currentPos, '-i', self.videoPath, '-frames', '1', '-vf', 'ass=temp_sub.ass', '-q:v', '1', '-f', 'image2', 'temp_sub.jpg']
p = subprocess.Popen(cmd)
p.wait()
pixmap = QPixmap('temp_sub.jpg')
self.preview.setPixmap(pixmap)
def encodeFinish(self, result):
self.startButton.setText('开始压制')
self.startButton.setStyleSheet('background-color:#31363b')
self.startButton.clicked.disconnect(self.terminateEncode)
self.startButton.clicked.connect(self.exportVideo)
if result:
self.previewTimer.start()
self.processBar.setValue(100)
QMessageBox.information(self, '导出视频', '导出完成', QMessageBox.Ok)
else:
self.previewTimer.start()
self.processBar.setValue(0)
QMessageBox.information(self, '导出视频', '导出视频失败!请检查参数或编码器是否选择正确', QMessageBox.Ok)
self.generatePreview(force=True)
def terminateEncode(self):
self.startButton.setText('开始压制')
self.startButton.setStyleSheet('background-color:#31363b')
self.startButton.clicked.disconnect(self.terminateEncode)
self.startButton.clicked.connect(self.exportVideo)
try:
p = psutil.Process(self.videoEncoder.p.pid)
for proc in p.children(True):
proc.kill()
p.kill()
except:
pass
self.videoEncoder.terminate()
self.videoEncoder.quit()
self.videoEncoder.wait()
del self.videoEncoder
self.processBar.setValue(0)
QMessageBox.information(self, '导出视频', '中止导出', QMessageBox.Ok)
self.generatePreview(force=True)
self.previewTimer.start()
================================================
FILE: utils/youtube_downloader.py
================================================
#!/usr/bin/python3
# -*- coding: utf-8 -*-
import os
import time
import shutil
import subprocess
from PySide2.QtWidgets import QGridLayout, QFileDialog, QDialog, QPushButton,\
QLineEdit, QTableWidget, QTableWidgetItem, QProgressBar, QLabel
from PySide2.QtCore import QTimer, Signal, QThread
class dnldThread(QThread):
downloading = Signal(str)
percent = Signal(str)
done = Signal(str)
def __init__(self, dnldNum, videoType, resolution, savePath, title, args, url, parent=None):
super(dnldThread, self).__init__(parent)
self.dnldNum = dnldNum
self.videoType = videoType
self.resolution = resolution
self.savePath = savePath.replace('/', '\\')
if not os.path.isdir(self.savePath):
self.savePath = os.path.split(self.savePath)[0]
self.title = title
self.args = args
self.url = url
def run(self):
for cnt, num in enumerate(self.dnldNum):
modifyName = '%s_%s_%s.%s' % (self.title, num, self.resolution[cnt], self.videoType[cnt])
outputPath = os.path.join(self.savePath, modifyName.replace(':', ' -')) # 文件路径里不能带冒号
if not os.path.exists(outputPath):
self.downloading.emit(outputPath)
cmd = ['utils/youtube-dl.exe', '-f', num]
if not cnt:
cmd += self.args
cmd.append(self.url)
cmd.append('-o')
cmd.append(outputPath)
p = subprocess.Popen(cmd, stdin=subprocess.PIPE, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
while p.poll() is None:
line = p.stdout.read(100).decode('utf8', 'ignore')
print(line)
self.percent.emit(line)
time.sleep(1)
# if '?v=' in self.url:
# _id = self.url.split('?v=')[-1]
# else:
# _id = self.url.split('/')[-1]
# if self.savePath != os.getcwd():
# for f in os.listdir(os.getcwd()):
# if _id in f:
# if f.endswith('.vtt') or f.endswith('.srt') or f.endswith('.jpg') or f.endswith('.webp'):
# if os.path.exists(os.path.join(self.savePath, f)):
# os.remove(f)
# else:
# shutil.move(f, self.savePath)
# elif f.endswith('.mp4') or f.endswith('.webm') or f.endswith('.m4a') or f.endswith('.part'):
# if os.path.exists(os.path.join(self.savePath, f)):
# os.remove(f)
# else:
# shutil.move(f, outputPath)
# else:
# for f in os.listdir(os.getcwd()):
# if _id in f and 'part' not in f and not f.endswith('.vtt') and\
# not f.endswith('.srt') and not f.endswith('.jpg') and not f.endswith('.webp'):
# if os.path.exists(modifyName):
# os.remove(f)
# else:
# os.rename(f, modifyName)
self.done.emit('单项完成')
else:
self.done.emit('文件已存在 跳过')
self.done.emit('下载完成')
class dnldCheck(QThread):
searchCnt = Signal(int)
checkStatus = Signal(bool)
videoTitle = Signal(str)
videoResults = Signal(list)
def __init__(self, url, parent=None):
super(dnldCheck, self).__init__(parent)
self.url = url
def run(self):
cnt = 0
p = subprocess.Popen(['utils/youtube-dl.exe', '-e', self.url], stdout=subprocess.PIPE)
while not p.poll() in [0, 1]:
cnt += 1
self.searchCnt.emit(cnt % 3 + 1)
time.sleep(0.3)
pass
if p.poll():
self.checkStatus.emit(False)
self.searchCnt.emit(0)
else:
self.checkStatus.emit(True)
title = p.stdout.read().decode('gb18030').strip().replace('/', '_')
self.videoTitle.emit(title)
p = subprocess.Popen(['utils/youtube-dl.exe', '-F', self.url], stdout=subprocess.PIPE)
while not p.poll() in [0, 1]:
cnt += 1
self.searchCnt.emit(cnt % 3 + 1)
time.sleep(0.3)
pass
results = p.stdout.read().decode().split('\n')
self.videoResults.emit(results[::-1])
self.searchCnt.emit(0)
class YoutubeDnld(QDialog):
def __init__(self):
super().__init__()
self.downloadToken = False
self.downloadName = ''
self.downloadPercent = ''
self.downloadSpeed = ''
self.oldDownloadPercent = 0
self.setWindowTitle('Youtube下载器 (此窗口可关闭至后台下载 支持断点下载 需要自备梯子)')
self.resize(1000, 600)
self.layout = QGridLayout()
self.setLayout(self.layout)
self.tipLabel = QLabel('Youtube链接:')
self.layout.addWidget(self.tipLabel, 0, 0, 1, 2)
self.urlInput = QLineEdit('请输入Youtube视频链接')
self.layout.addWidget(self.urlInput, 0, 2, 1, 5)
self.searchButton = QPushButton('查询')
self.searchButton.clicked.connect(self.checkURL)
self.layout.addWidget(self.searchButton, 0, 7, 1, 1)
self.searchToken = False
self.videoInfo = QTableWidget()
self.videoInfo.verticalHeader().setHidden(True)
self.videoInfo.setRowCount(10)
self.videoInfo.setColumnCount(6)
self.videoInfo.setColumnWidth(0, 100)
self.videoInfo.setColumnWidth(1, 100)
self.videoInfo.setColumnWidth(2, 100)
self.videoInfo.setColumnWidth(3, 100)
self.videoInfo.setColumnWidth(4, 100)
self.videoInfo.setColumnWidth(5, 450)
self.videoInfo.setHorizontalHeaderLabels(['序号', '后缀名', '分辨率', '码率', '类型', '备注'])
self.layout.addWidget(self.videoInfo, 1, 0, 4, 8)
self.dnldInput = QLineEdit()
self.layout.addWidget(self.dnldInput, 5, 0, 1, 2)
self.dnldLabel = QLabel('输入要下载的视频/音频序号,多个序号用空格隔开 ')
self.layout.addWidget(self.dnldLabel, 5, 2, 1, 2)
self.jaCheck = QPushButton('下载日语字幕(自动识别)')
self.zhCheck = QPushButton('下载中文字幕(油管机翻)')
self.thumbnailCheck = QPushButton('下载封面')
self.jaCheck.setStyleSheet('background-color:#3daee9')
self.zhCheck.setStyleSheet('background-color:#3daee9')
self.thumbnailCheck.setStyleSheet('background-color:#3daee9')
self.jaCheckStatus = True
self.zhCheckStatus = True
self.thumbnailCheckStatus = True
self.jaCheck.clicked.connect(self.jaCheckClick)
self.zhCheck.clicked.connect(self.zhCheckClick)
self.thumbnailCheck.clicked.connect(self.thumbnailCheckClick)
self.layout.addWidget(self.jaCheck, 5, 4, 1, 1)
self.layout.addWidget(self.zhCheck, 5, 5, 1, 1)
self.layout.addWidget(self.thumbnailCheck, 5, 6, 1, 1)
self.savePath = QLineEdit()
self.layout.addWidget(self.savePath, 6, 0, 1, 4)
self.saveButton = QPushButton('保存路径')
self.saveButton.setFixedWidth(115)
self.saveButton.clicked.connect(self.setSavePath)
self.layout.addWidget(self.saveButton, 6, 4, 1, 1)
self.processInfo = QLabel()
self.layout.addWidget(self.processInfo, 6, 5, 1, 2)
self.progress = QProgressBar()
self.layout.addWidget(self.progress, 7, 0, 1, 7)
self.startButton = QPushButton('开始下载')
self.startButton.setFixedWidth(140)
self.startButton.setFixedHeight(120)
self.startButton.setEnabled(False)
self.startButton.clicked.connect(self.dnldStart)
self.layout.addWidget(self.startButton, 5, 7, 3, 1)
self.timer = QTimer()
self.timer.setInterval(500)
self.timer.start()
self.timer.timeout.connect(self.dnldProgress)
def jaCheckClick(self):
self.jaCheckStatus = not self.jaCheckStatus
if self.jaCheckStatus:
self.jaCheck.setStyleSheet('background-color:#3daee9')
else:
self.jaCheck.setStyleSheet('background-color:#31363b')
def zhCheckClick(self):
self.zhCheckStatus = not self.zhCheckStatus
if self.zhCheckStatus:
self.zhCheck.setStyleSheet('background-color:#3daee9')
else:
self.zhCheck.setStyleSheet('background-color:#31363b')
def thumbnailCheckClick(self):
self.thumbnailCheckStatus = not self.thumbnailCheckStatus
if self.thumbnailCheckStatus:
self.thumbnailCheck.setStyleSheet('background-color:#3daee9')
else:
self.thumbnailCheck.setStyleSheet('background-color:#31363b')
def checkURL(self):
self.url = self.urlInput.text()
if self.url:
if '&' in self.url:
self.url = self.url.split('&')[0]
self.videoInfo.clearContents()
self.dnldCheck = dnldCheck(self.url)
self.dnldCheck.searchCnt.connect(self.refreshSearchButton)
self.dnldCheck.checkStatus.connect(self.setCheckStatus)
self.dnldCheck.videoTitle.connect(self.setTitle)
self.dnldCheck.videoResults.connect(self.setVideoInfo)
self.dnldCheck.start()
def refreshSearchButton(self, cnt):
if cnt:
self.searchButton.setText('搜索中' + '.' * cnt)
else:
self.searchButton.setText('查询')
def setCheckStatus(self, checkStatus):
if not checkStatus:
self.searchToken = False
self.videoInfo.setItem(0, 5, QTableWidgetItem('解析错误 请检查视频链接和网络(梯子)是否正确'))
else:
self.searchToken = True
def setTitle(self, title):
self.title = title
self.urlInput.setText(title)
def setVideoInfo(self, results):
self.videoInfo.setRowCount(len(results) - 4)
for y, l in enumerate(results[1:-3]):
l = l.split(' ')
while '' in l:
l.remove('')
if ',' in l:
l.remove(',')
if 'tiny' in l:
l.remove('tiny')
lineData = l[:2]
if l[2] == 'audio':
lineData.append('无')
else:
lineData.append('%s %s' % tuple(l[2:4]))
lineData.append(l[4])
tip = ''
for i in l[4:]:
tip += i + ' '
if l[2] == 'audio':
lineData.append('audio only')
elif 'video only' in tip:
lineData.append('video only')
else:
lineData.append('video + audio')
lineData.append(tip[:-1])
for x, data in enumerate(lineData):
self.videoInfo.setItem(y, x, QTableWidgetItem(data))
def setSavePath(self):
savePath = QFileDialog.getExistingDirectory(self, '选择视频保存文件夹')
if savePath:
self.savePath.setText(savePath)
def dnldProgress(self):
if self.searchToken and self.dnldInput.text() and self.savePath.text():
self.startButton.setEnabled(True)
else:
self.startButton.setEnabled(False)
def dnldStart(self):
if not self.downloadToken:
self.startButton.setText('暂停')
self.startButton.setStyleSheet('background-color:#3daee9')
self.processInfo.setText('下载速度:')
dnldNum = self.dnldInput.text().split(' ')
videoType = []
resolution = []
for num in dnldNum:
for y in range(self.videoInfo.rowCount()):
if self.videoInfo.item(y, 0).text() == num:
videoType.append(self.videoInfo.item(y, 1).text())
resolution.append(self.videoInfo.item(y, 2).text())
break
savePath = self.savePath.text()
ja = self.jaCheckStatus
zh = self.zhCheckStatus
if ja and zh:
args = ['--write-auto-sub', '--sub-lang', 'ja,zh-Hans']
elif ja and not zh:
args = ['--write-auto-sub', '--sub-lang', 'ja']
elif zh and not ja:
args = ['--write-auto-sub', '--sub-lang', 'zh-Hans']
else:
args = []
if self.thumbnailCheckStatus:
args.append('--write-thumbnail')
self.dnldThread = dnldThread(dnldNum, videoType, resolution, savePath, self.title, args, self.url)
# self.dnldThread.downloading.connect(self.dnldName)
self.dnldThread.percent.connect(self.dnldPercent)
self.dnldThread.done.connect(self.dnldFinish)
self.dnldThread.start()
else:
self.oldDownloadPercent = 0
self.processInfo.setText('下载速度:0KiB/s')
self.startButton.setText('开始下载')
self.startButton.setStyleSheet('background-color:#31363b')
self.dnldThread.terminate()
self.dnldThread.quit()
self.dnldThread.wait()
self.downloadToken = not self.downloadToken
# def dnldName(self, name):
# print(name)
# self.savePath.setText(name)
def dnldPercent(self, percent):
if r'%' in percent:
self.downloadPercent = percent.split(r'%')[0].split(' ')[-1]
if 'B/s' in percent:
self.downloadSpeed = percent.split('B/s')[0].split(' ')[-1] + 'B/s'
if '.' in self.downloadSpeed:
self.processInfo.setText('下载速度:%s' % self.downloadSpeed)
if self.downloadPercent:
percent = float(self.downloadPercent)
if percent > self.oldDownloadPercent:
self.progress.setValue(percent)
self.oldDownloadPercent = percent
def dnldFinish(self, done):
self.processInfo.setText(done)
if done == '下载完成':
self.progress.setValue(0)
self.oldDownloadPercent = 0
self.startButton.setText('开始下载')
self.startButton.setStyleSheet('background-color:#31363b')
self.dnldThread.terminate()
self.dnldThread.quit()
self.dnldThread.wait()
self.downloadToken = not self.downloadToken
elif done == '单项完成':
self.progress.setValue(0)
self.oldDownloadPercent = 0
================================================
FILE: 感谢石油王.csv
================================================
**尘,50 RMB
*聪,20 RMB
*杰,12 RMB
*凉,1 RMB
l*g,50 RMB
**萍,2 RMB
*人,6.66 RMB
*牍,10 RMB
H*a,5 RMB
**轩,3 RMB
A*),2 RMB
*本,50 RMB
**汉,100 RMB
**京,1.11 RMB
*滚,50 RMB
*幻,22 RMB
*舒,10 RMB
*鹏,20 RMB
*健,66 RMB
**泽,6.66 RMB
**伟,50 RMB
*杰,10 RMB
**鹏,5 RMB
**宇,98 RMB
*超,6.6 RMB
**栋,6.66 RMB
*博,66 RMB
**明,10 RMB
**正,5 RMB
**辉,10 RMB
**铭,6.66 RMB
**金,66 RMB
**杰,10 RMB
**毅,20 RMB
***锐,6.66 RMB
**聪,100 RMB
**宇,39 RMB
**炫,10 RMB
**陈,10 RMB
**旻,6.66 RMB
**辉,50 RMB
*尚,6 RMB
**标,4.99 RMB
**天,15 RMB
**峰,19 RMB
**一,5 RMB
**胤,10 RMB
**滨,13 RMB
**亮,10 RMB
**强,2.94 RMB
*雄,50 RMB
**彬,20 RMB
**涵,6.66 RMB
**文,20 RMB
**杰,50 RMB
**盼,4 RMB
**祥,2.33 RMB
*扬,10 RMB
**阳,6.66 RMB
**鹏,2 RMB
**宇,5 RMB
**祥,50 RMB
**星,77 RMB
**乐,8.88 RMB
**印,6.6 RMB
**哲,5 RMB
*伟,6.66 RMB
**明,6.66 RMB
**扬,1 RMB
**荃,77 RMB
*波,118 RMB
**璐,6 RMB
**华,30 RMB
**兴,5 RMB
**亮,6.66 RMB
**硕,5 RMB
**康,5.2 RMB
**宇,10 RMB
**宇,10 RMB
**浩,5 RMB
**建,6.66 RMB
*杰,30 RMB
**壮,9 RMB
**华,1 RMB
**怡,6.66 RMB
*祥,5 RMB
**远,30 RMB
*俊,30 RMB
**健,3.29 RMB
*磊,10 RMB
*崎,6.66 RMB
**铭,0.01 RMB
**轩,10 RMB
世界第一喵酱,15 RMB
ZINE,6.66 RMB
**胜,18 RMB
*斌,5 RMB
**生,10 RMB
粗心殿,30 RMB
*钰,1 RMB
**康,3 RMB
**东,1 RMB
**濠,1 RMB
**达,19.9 RMB
*杰,15 RMB
**炜,5 RMB
憨么子,6 RMB
**豪,5 RMB
幻雨之秋,3 RMB
**鸣,10 RMB
*庸,10 RMB
**鸿,100 RMB
**曙,10 RMB
**逸,100 RMB
*岩,50 RMB
*犇,20 RMB
**恺,20 RMB
姬雨寒,5 RMB
**旭,10 RMB
**四,0.88 RMB
**宇,20 RMB
*霖,3 RMB
**壮,6.66 RMB
**凡,6.66 RMB
**嘉,1 RMB
咸鱼,10 RMB
**晗,1 RMB
**勋,2.33 RMB
**晨,20 RMB
*胜,1 RMB
*聃,16.8 RMB
**策,5 RMB
xing_hai_L,19 RMB
*森,20 RMB
**华,7 RMB
**青,2 RMB
**开,1.66 RMB
**千,8.88 RMB
**来,6.66 RMB
**奕,10 RMB
**力,5 RMB
**瑜,6.66 RMB
**清,15 RMB
Yokaoff,30 RMB
**硕,5 RMB
**阳,6.66 RMB
**霖,6.66 RMB
寐魔狂三,4.88 RMB
*云Item,1 RMB
**健,10 RMB
**翔,1 RMB
紫焰,10 RMB
**宇,6 RMB
**峰,10 RMB
陈叔叔,6.66 RMB
**智,5 RMB
*博,10 RMB
*威,30 RMB
**义,5 RMB
**浩,20 RMB
**杰,10 RMB
*凯,30 RMB
CatLemon,10 RMB
某DD,6.66 RMB
**辉,8.88 RMB
**成,50 RMB
**博,1 RMB
*律,69 RMB
**宇,3 RMB
**韬,66 RMB
**锐,10 RMB
**翔,100 RMB
**钿,20 RMB
**凡,5 RMB
Senn,6.66 RMB
**龙,2 RMB
**航,1 RMB
**洪,5 RMB
**琰,51.4 RMB
**鸣,13 RMB
*晓,10 RMB
*淼,10 RMB
**宇,5 RMB
*英,1 RMB
**阳,6.66 RMB
**永,10 RMB
**毅,50 RMB
**泽,50 RMB
**杰,5 RMB
*帅,10 RMB
**远,100 RMB
dd,17 RMB
羽烷,5 RMB
**东,6.66 RMB
**卓,2.2 RMB
**君,5 RMB
C语言的saber,10 RMB
*飞,30 RMB
**鹤,1 RMB
**彬,18 RMB
**杰,25 RMB
**敏,10 RMB
**俊,10 RMB
**璇,5 RMB
HAKU,10 RMB
乄丶残雪,6.66 RMB
**萌,10 RMB
**博,6.66 RMB
*林,20 RMB
*翔,5 RMB
**海,10 RMB
**远,10 RMB
一心只爱疾风璃昂,10 RMB
**泽,100 RMB
**钊,2 RMB
**永,5 RMB
**馨,5 RMB
**祺,5 RMB
*涛,6.66 RMB
*潘,5 RMB
**昊,1 RMB
**铭,5 RMB
**晴,5 RMB
*城,6.66 RMB
*沛,10 RMB
**韫,5 RMB
**涛,2 RMB
*昊,8.99 RMB
**隆,1 RMB
*磊,66 RMB
**帆,13.88 RMB
**璞,3 RMB
*蓉,3 RMB
**昊,10 RMB
**渤,6.66 RMB
*勇,10 RMB
**汉,5 RMB
*帆,50 RMB
**宇,8.88 RMB
**勇,50 RMB
**豪,11.11 RMB
**坤,6 RMB
**阳,30 RMB
**铭,5 RMB
**龙Item,3 RMB
**易,10 RMB
**霖,66.6 RMB
**程,10 RMB
**升,18.88 RMB
*浩,30 RMB
*挺,30 RMB
**文,5.2 RMB
**华,10 RMB
**雄,2.33 RMB